blob: f8fc3081bbb4110a4737822ee33e33b9c10ca6eb [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/**
73 * ubi_change_vtbl_record - change volume table record.
74 * @ubi: UBI device description object
75 * @idx: table index to change
76 * @vtbl_rec: new volume table record
77 *
78 * This function changes volume table record @idx. If @vtbl_rec is %NULL, empty
79 * volume table record is written. The caller does not have to calculate CRC of
80 * the record as it is done by this function. Returns zero in case of success
81 * and a negative error code in case of failure.
82 */
83int ubi_change_vtbl_record(struct ubi_device *ubi, int idx,
84 struct ubi_vtbl_record *vtbl_rec)
85{
86 int i, err;
87 uint32_t crc;
Artem Bityutskiy89b96b62007-12-16 20:00:38 +020088 struct ubi_volume *layout_vol;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040089
90 ubi_assert(idx >= 0 && idx < ubi->vtbl_slots);
Artem Bityutskiy91f2d532008-01-24 11:23:23 +020091 layout_vol = ubi->volumes[vol_id2idx(ubi, UBI_LAYOUT_VOLUME_ID)];
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040092
93 if (!vtbl_rec)
94 vtbl_rec = &empty_vtbl_record;
95 else {
96 crc = crc32(UBI_CRC32_INIT, vtbl_rec, UBI_VTBL_RECORD_SIZE_CRC);
Christoph Hellwig3261ebd2007-05-21 17:41:46 +030097 vtbl_rec->crc = cpu_to_be32(crc);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040098 }
99
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400100 memcpy(&ubi->vtbl[idx], vtbl_rec, sizeof(struct ubi_vtbl_record));
101 for (i = 0; i < UBI_LAYOUT_VOLUME_EBS; i++) {
Richard Weinbergerb81000b2014-10-25 19:43:41 +0200102 err = ubi_eba_atomic_leb_change(ubi, layout_vol, i, ubi->vtbl,
103 ubi->vtbl_size);
Artem Bityutskiycae0a772007-12-17 12:46:48 +0200104 if (err)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400105 return err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400106 }
107
Artem Bityutskiy7bf523a2012-05-16 18:29:54 +0300108 self_vtbl_check(ubi);
Artem Bityutskiy6dc4a872008-02-01 13:48:49 +0200109 return 0;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400110}
111
112/**
Artem Bityutskiyf40ac9c2008-07-13 21:47:47 +0300113 * ubi_vtbl_rename_volumes - rename UBI volumes in the volume table.
114 * @ubi: UBI device description object
Artem Bityutskiyebaaf1a2008-07-18 13:34:32 +0300115 * @rename_list: list of &struct ubi_rename_entry objects
Artem Bityutskiyf40ac9c2008-07-13 21:47:47 +0300116 *
117 * This function re-names multiple volumes specified in @req in the volume
118 * table. Returns zero in case of success and a negative error code in case of
119 * failure.
120 */
121int ubi_vtbl_rename_volumes(struct ubi_device *ubi,
122 struct list_head *rename_list)
123{
124 int i, err;
125 struct ubi_rename_entry *re;
126 struct ubi_volume *layout_vol;
127
128 list_for_each_entry(re, rename_list, list) {
129 uint32_t crc;
130 struct ubi_volume *vol = re->desc->vol;
131 struct ubi_vtbl_record *vtbl_rec = &ubi->vtbl[vol->vol_id];
132
133 if (re->remove) {
134 memcpy(vtbl_rec, &empty_vtbl_record,
135 sizeof(struct ubi_vtbl_record));
136 continue;
137 }
138
139 vtbl_rec->name_len = cpu_to_be16(re->new_name_len);
140 memcpy(vtbl_rec->name, re->new_name, re->new_name_len);
141 memset(vtbl_rec->name + re->new_name_len, 0,
142 UBI_VOL_NAME_MAX + 1 - re->new_name_len);
143 crc = crc32(UBI_CRC32_INIT, vtbl_rec,
144 UBI_VTBL_RECORD_SIZE_CRC);
145 vtbl_rec->crc = cpu_to_be32(crc);
146 }
147
148 layout_vol = ubi->volumes[vol_id2idx(ubi, UBI_LAYOUT_VOLUME_ID)];
149 for (i = 0; i < UBI_LAYOUT_VOLUME_EBS; i++) {
Richard Weinbergerb81000b2014-10-25 19:43:41 +0200150 err = ubi_eba_atomic_leb_change(ubi, layout_vol, i, ubi->vtbl,
151 ubi->vtbl_size);
Artem Bityutskiyf40ac9c2008-07-13 21:47:47 +0300152 if (err)
153 return err;
154 }
155
156 return 0;
157}
158
159/**
Artem Bityutskiyebaaf1a2008-07-18 13:34:32 +0300160 * vtbl_check - check if volume table is not corrupted and sensible.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400161 * @ubi: UBI device description object
162 * @vtbl: volume table
163 *
164 * This function returns zero if @vtbl is all right, %1 if CRC is incorrect,
165 * and %-EINVAL if it contains inconsistent data.
166 */
167static int vtbl_check(const struct ubi_device *ubi,
168 const struct ubi_vtbl_record *vtbl)
169{
170 int i, n, reserved_pebs, alignment, data_pad, vol_type, name_len;
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300171 int upd_marker, err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400172 uint32_t crc;
173 const char *name;
174
175 for (i = 0; i < ubi->vtbl_slots; i++) {
176 cond_resched();
177
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300178 reserved_pebs = be32_to_cpu(vtbl[i].reserved_pebs);
179 alignment = be32_to_cpu(vtbl[i].alignment);
180 data_pad = be32_to_cpu(vtbl[i].data_pad);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400181 upd_marker = vtbl[i].upd_marker;
182 vol_type = vtbl[i].vol_type;
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300183 name_len = be16_to_cpu(vtbl[i].name_len);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400184 name = &vtbl[i].name[0];
185
186 crc = crc32(UBI_CRC32_INIT, &vtbl[i], UBI_VTBL_RECORD_SIZE_CRC);
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300187 if (be32_to_cpu(vtbl[i].crc) != crc) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300188 ubi_err(ubi, "bad CRC at record %u: %#08x, not %#08x",
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300189 i, crc, be32_to_cpu(vtbl[i].crc));
Artem Bityutskiy1f021e1d2012-05-16 17:56:50 +0300190 ubi_dump_vtbl_record(&vtbl[i], i);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400191 return 1;
192 }
193
194 if (reserved_pebs == 0) {
195 if (memcmp(&vtbl[i], &empty_vtbl_record,
196 UBI_VTBL_RECORD_SIZE)) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300197 err = 2;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400198 goto bad;
199 }
200 continue;
201 }
202
203 if (reserved_pebs < 0 || alignment < 0 || data_pad < 0 ||
204 name_len < 0) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300205 err = 3;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400206 goto bad;
207 }
208
209 if (alignment > ubi->leb_size || alignment == 0) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300210 err = 4;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400211 goto bad;
212 }
213
Kyungmin Parkcadb40c2008-05-22 10:32:18 +0900214 n = alignment & (ubi->min_io_size - 1);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400215 if (alignment != 1 && n) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300216 err = 5;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400217 goto bad;
218 }
219
220 n = ubi->leb_size % alignment;
221 if (data_pad != n) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300222 ubi_err(ubi, "bad data_pad, has to be %d", n);
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300223 err = 6;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400224 goto bad;
225 }
226
227 if (vol_type != UBI_VID_DYNAMIC && vol_type != UBI_VID_STATIC) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300228 err = 7;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400229 goto bad;
230 }
231
232 if (upd_marker != 0 && upd_marker != 1) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300233 err = 8;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400234 goto bad;
235 }
236
237 if (reserved_pebs > ubi->good_peb_count) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300238 ubi_err(ubi, "too large reserved_pebs %d, good PEBs %d",
Deepak Saxena762a9f22008-10-08 12:56:24 -0700239 reserved_pebs, ubi->good_peb_count);
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300240 err = 9;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400241 goto bad;
242 }
243
244 if (name_len > UBI_VOL_NAME_MAX) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300245 err = 10;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400246 goto bad;
247 }
248
249 if (name[0] == '\0') {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300250 err = 11;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400251 goto bad;
252 }
253
254 if (name_len != strnlen(name, name_len + 1)) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300255 err = 12;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400256 goto bad;
257 }
258 }
259
260 /* Checks that all names are unique */
261 for (i = 0; i < ubi->vtbl_slots - 1; i++) {
262 for (n = i + 1; n < ubi->vtbl_slots; n++) {
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300263 int len1 = be16_to_cpu(vtbl[i].name_len);
264 int len2 = be16_to_cpu(vtbl[n].name_len);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400265
266 if (len1 > 0 && len1 == len2 &&
267 !strncmp(vtbl[i].name, vtbl[n].name, len1)) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300268 ubi_err(ubi, "volumes %d and %d have the same name \"%s\"",
Artem Bityutskiy049333c2012-08-27 14:43:54 +0300269 i, n, vtbl[i].name);
Artem Bityutskiy1f021e1d2012-05-16 17:56:50 +0300270 ubi_dump_vtbl_record(&vtbl[i], i);
271 ubi_dump_vtbl_record(&vtbl[n], n);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400272 return -EINVAL;
273 }
274 }
275 }
276
277 return 0;
278
279bad:
Tanya Brokhman326087032014-10-20 19:57:00 +0300280 ubi_err(ubi, "volume table check failed: record %d, error %d", i, err);
Artem Bityutskiy1f021e1d2012-05-16 17:56:50 +0300281 ubi_dump_vtbl_record(&vtbl[i], i);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400282 return -EINVAL;
283}
284
285/**
286 * create_vtbl - create a copy of volume table.
287 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300288 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400289 * @copy: number of the volume table copy
290 * @vtbl: contents of the volume table
291 *
292 * This function returns zero in case of success and a negative error code in
293 * case of failure.
294 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300295static int create_vtbl(struct ubi_device *ubi, struct ubi_attach_info *ai,
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400296 int copy, void *vtbl)
297{
298 int err, tries = 0;
Richard Weinberger6bdccff2011-12-22 16:12:57 +0100299 struct ubi_vid_hdr *vid_hdr;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300300 struct ubi_ainf_peb *new_aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400301
Artem Bityutskiy719bb842012-08-27 17:14:58 +0300302 dbg_gen("create volume table (copy #%d)", copy + 1);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400303
Artem Bityutskiy33818bb2007-08-28 21:29:32 +0300304 vid_hdr = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400305 if (!vid_hdr)
306 return -ENOMEM;
307
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400308retry:
Artem Bityutskiyc87fbd72012-05-17 15:38:56 +0300309 new_aeb = ubi_early_get_peb(ubi, ai);
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300310 if (IS_ERR(new_aeb)) {
311 err = PTR_ERR(new_aeb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400312 goto out_free;
313 }
314
Richard Weinberger1f4f4342012-01-10 17:57:03 +0100315 vid_hdr->vol_type = UBI_LAYOUT_VOLUME_TYPE;
Artem Bityutskiy91f2d532008-01-24 11:23:23 +0200316 vid_hdr->vol_id = cpu_to_be32(UBI_LAYOUT_VOLUME_ID);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400317 vid_hdr->compat = UBI_LAYOUT_VOLUME_COMPAT;
318 vid_hdr->data_size = vid_hdr->used_ebs =
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300319 vid_hdr->data_pad = cpu_to_be32(0);
320 vid_hdr->lnum = cpu_to_be32(copy);
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300321 vid_hdr->sqnum = cpu_to_be64(++ai->max_sqnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400322
323 /* The EC header is already there, write the VID header */
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300324 err = ubi_io_write_vid_hdr(ubi, new_aeb->pnum, vid_hdr);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400325 if (err)
326 goto write_error;
327
328 /* Write the layout volume contents */
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300329 err = ubi_io_write_data(ubi, vtbl, new_aeb->pnum, 0, ubi->vtbl_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400330 if (err)
331 goto write_error;
332
333 /*
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300334 * And add it to the attaching information. Don't delete the old version
Artem Bityutskiy35611882012-05-17 15:31:31 +0300335 * of this LEB as it will be deleted and freed in 'ubi_add_to_av()'.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400336 */
Artem Bityutskiy35611882012-05-17 15:31:31 +0300337 err = ubi_add_to_av(ubi, ai, new_aeb->pnum, new_aeb->ec, vid_hdr, 0);
Artem Bityutskiy78b495c2012-09-03 17:12:29 +0300338 kmem_cache_free(ai->aeb_slab_cache, new_aeb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400339 ubi_free_vid_hdr(ubi, vid_hdr);
340 return err;
341
342write_error:
Artem Bityutskiy78d87c92007-05-05 11:24:02 +0300343 if (err == -EIO && ++tries <= 5) {
344 /*
345 * Probably this physical eraseblock went bad, try to pick
346 * another one.
347 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300348 list_add(&new_aeb->u.list, &ai->erase);
Florin Malitac4e90ec2007-05-03 11:49:57 -0400349 goto retry;
Artem Bityutskiy78d87c92007-05-05 11:24:02 +0300350 }
Artem Bityutskiy78b495c2012-09-03 17:12:29 +0300351 kmem_cache_free(ai->aeb_slab_cache, new_aeb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400352out_free:
353 ubi_free_vid_hdr(ubi, vid_hdr);
354 return err;
355
356}
357
358/**
359 * process_lvol - process the layout volume.
360 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300361 * @ai: attaching information
Artem Bityutskiy517af482012-05-17 14:38:34 +0300362 * @av: layout volume attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400363 *
364 * This function is responsible for reading the layout volume, ensuring it is
365 * not corrupted, and recovering from corruptions if needed. Returns volume
366 * table in case of success and a negative error code in case of failure.
367 */
Artem Bityutskiye88d6e102007-08-29 14:51:52 +0300368static struct ubi_vtbl_record *process_lvol(struct ubi_device *ubi,
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300369 struct ubi_attach_info *ai,
Artem Bityutskiy517af482012-05-17 14:38:34 +0300370 struct ubi_ainf_volume *av)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400371{
372 int err;
373 struct rb_node *rb;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300374 struct ubi_ainf_peb *aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400375 struct ubi_vtbl_record *leb[UBI_LAYOUT_VOLUME_EBS] = { NULL, NULL };
376 int leb_corrupted[UBI_LAYOUT_VOLUME_EBS] = {1, 1};
377
378 /*
379 * UBI goes through the following steps when it changes the layout
380 * volume:
381 * a. erase LEB 0;
382 * b. write new data to LEB 0;
383 * c. erase LEB 1;
384 * d. write new data to LEB 1.
385 *
386 * Before the change, both LEBs contain the same data.
387 *
388 * Due to unclean reboots, the contents of LEB 0 may be lost, but there
389 * should LEB 1. So it is OK if LEB 0 is corrupted while LEB 1 is not.
390 * Similarly, LEB 1 may be lost, but there should be LEB 0. And
391 * finally, unclean reboots may result in a situation when neither LEB
392 * 0 nor LEB 1 are corrupted, but they are different. In this case, LEB
393 * 0 contains more recent information.
394 *
395 * So the plan is to first check LEB 0. Then
Shinya Kuribayashibe436f62010-05-06 19:22:09 +0900396 * a. if LEB 0 is OK, it must be containing the most recent data; then
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400397 * we compare it with LEB 1, and if they are different, we copy LEB
398 * 0 to LEB 1;
399 * b. if LEB 0 is corrupted, but LEB 1 has to be OK, and we copy LEB 1
400 * to LEB 0.
401 */
402
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300403 dbg_gen("check layout volume");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400404
405 /* Read both LEB 0 and LEB 1 into memory */
Artem Bityutskiy517af482012-05-17 14:38:34 +0300406 ubi_rb_for_each_entry(rb, aeb, &av->root, u.rb) {
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300407 leb[aeb->lnum] = vzalloc(ubi->vtbl_size);
408 if (!leb[aeb->lnum]) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400409 err = -ENOMEM;
410 goto out_free;
411 }
412
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300413 err = ubi_io_read_data(ubi, leb[aeb->lnum], aeb->pnum, 0,
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400414 ubi->vtbl_size);
Brian Norrisd57f40542011-09-20 18:34:25 -0700415 if (err == UBI_IO_BITFLIPS || mtd_is_eccerr(err))
Artem Bityutskiybeeea632008-05-20 09:54:02 +0300416 /*
417 * Scrub the PEB later. Note, -EBADMSG indicates an
418 * uncorrectable ECC error, but we have our own CRC and
419 * the data will be checked later. If the data is OK,
420 * the PEB will be scrubbed (because we set
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300421 * aeb->scrub). If the data is not OK, the contents of
Artem Bityutskiybeeea632008-05-20 09:54:02 +0300422 * the PEB will be recovered from the second copy, and
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300423 * aeb->scrub will be cleared in
Artem Bityutskiy35611882012-05-17 15:31:31 +0300424 * 'ubi_add_to_av()'.
Artem Bityutskiybeeea632008-05-20 09:54:02 +0300425 */
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +0300426 aeb->scrub = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400427 else if (err)
428 goto out_free;
429 }
430
431 err = -EINVAL;
432 if (leb[0]) {
433 leb_corrupted[0] = vtbl_check(ubi, leb[0]);
434 if (leb_corrupted[0] < 0)
435 goto out_free;
436 }
437
438 if (!leb_corrupted[0]) {
439 /* LEB 0 is OK */
440 if (leb[1])
Artem Bityutskiy9c9ec142008-07-18 13:19:52 +0300441 leb_corrupted[1] = memcmp(leb[0], leb[1],
442 ubi->vtbl_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400443 if (leb_corrupted[1]) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300444 ubi_warn(ubi, "volume table copy #2 is corrupted");
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300445 err = create_vtbl(ubi, ai, 1, leb[0]);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400446 if (err)
447 goto out_free;
Tanya Brokhman326087032014-10-20 19:57:00 +0300448 ubi_msg(ubi, "volume table was restored");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400449 }
450
451 /* Both LEB 1 and LEB 2 are OK and consistent */
Artem Bityutskiy92ad8f32007-05-06 16:12:54 +0300452 vfree(leb[1]);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400453 return leb[0];
454 } else {
455 /* LEB 0 is corrupted or does not exist */
456 if (leb[1]) {
457 leb_corrupted[1] = vtbl_check(ubi, leb[1]);
458 if (leb_corrupted[1] < 0)
459 goto out_free;
460 }
461 if (leb_corrupted[1]) {
462 /* Both LEB 0 and LEB 1 are corrupted */
Tanya Brokhman326087032014-10-20 19:57:00 +0300463 ubi_err(ubi, "both volume tables are corrupted");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400464 goto out_free;
465 }
466
Tanya Brokhman326087032014-10-20 19:57:00 +0300467 ubi_warn(ubi, "volume table copy #1 is corrupted");
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300468 err = create_vtbl(ubi, ai, 0, leb[1]);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400469 if (err)
470 goto out_free;
Tanya Brokhman326087032014-10-20 19:57:00 +0300471 ubi_msg(ubi, "volume table was restored");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400472
Artem Bityutskiy92ad8f32007-05-06 16:12:54 +0300473 vfree(leb[0]);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400474 return leb[1];
475 }
476
477out_free:
Artem Bityutskiy92ad8f32007-05-06 16:12:54 +0300478 vfree(leb[0]);
479 vfree(leb[1]);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400480 return ERR_PTR(err);
481}
482
483/**
484 * create_empty_lvol - create empty layout volume.
485 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300486 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400487 *
488 * This function returns volume table contents in case of success and a
489 * negative error code in case of failure.
490 */
Artem Bityutskiye88d6e102007-08-29 14:51:52 +0300491static struct ubi_vtbl_record *create_empty_lvol(struct ubi_device *ubi,
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300492 struct ubi_attach_info *ai)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400493{
494 int i;
495 struct ubi_vtbl_record *vtbl;
496
Joe Perches309b5e42010-11-04 20:07:40 -0700497 vtbl = vzalloc(ubi->vtbl_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400498 if (!vtbl)
499 return ERR_PTR(-ENOMEM);
500
501 for (i = 0; i < ubi->vtbl_slots; i++)
502 memcpy(&vtbl[i], &empty_vtbl_record, UBI_VTBL_RECORD_SIZE);
503
504 for (i = 0; i < UBI_LAYOUT_VOLUME_EBS; i++) {
505 int err;
506
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300507 err = create_vtbl(ubi, ai, i, vtbl);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400508 if (err) {
Artem Bityutskiy92ad8f32007-05-06 16:12:54 +0300509 vfree(vtbl);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400510 return ERR_PTR(err);
511 }
512 }
513
514 return vtbl;
515}
516
517/**
518 * init_volumes - initialize volume information for existing volumes.
519 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300520 * @ai: scanning information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400521 * @vtbl: volume table
522 *
523 * This function allocates volume description objects for existing volumes.
524 * Returns zero in case of success and a negative error code in case of
525 * failure.
526 */
Artem Bityutskiyafc15a82012-05-17 07:46:17 +0300527static int init_volumes(struct ubi_device *ubi,
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300528 const struct ubi_attach_info *ai,
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400529 const struct ubi_vtbl_record *vtbl)
530{
531 int i, reserved_pebs = 0;
Artem Bityutskiy517af482012-05-17 14:38:34 +0300532 struct ubi_ainf_volume *av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400533 struct ubi_volume *vol;
534
535 for (i = 0; i < ubi->vtbl_slots; i++) {
536 cond_resched();
537
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300538 if (be32_to_cpu(vtbl[i].reserved_pebs) == 0)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400539 continue; /* Empty record */
540
541 vol = kzalloc(sizeof(struct ubi_volume), GFP_KERNEL);
542 if (!vol)
543 return -ENOMEM;
544
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300545 vol->reserved_pebs = be32_to_cpu(vtbl[i].reserved_pebs);
546 vol->alignment = be32_to_cpu(vtbl[i].alignment);
547 vol->data_pad = be32_to_cpu(vtbl[i].data_pad);
Peter Hortonff998792010-01-05 11:14:36 +0000548 vol->upd_marker = vtbl[i].upd_marker;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400549 vol->vol_type = vtbl[i].vol_type == UBI_VID_DYNAMIC ?
550 UBI_DYNAMIC_VOLUME : UBI_STATIC_VOLUME;
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300551 vol->name_len = be16_to_cpu(vtbl[i].name_len);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400552 vol->usable_leb_size = ubi->leb_size - vol->data_pad;
553 memcpy(vol->name, vtbl[i].name, vol->name_len);
554 vol->name[vol->name_len] = '\0';
555 vol->vol_id = i;
556
Artem Bityutskiy4ccf8cf2008-01-16 15:44:24 +0200557 if (vtbl[i].flags & UBI_VTBL_AUTORESIZE_FLG) {
558 /* Auto re-size flag may be set only for one volume */
559 if (ubi->autoresize_vol_id != -1) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300560 ubi_err(ubi, "more than one auto-resize volume (%d and %d)",
Artem Bityutskiy049333c2012-08-27 14:43:54 +0300561 ubi->autoresize_vol_id, i);
Adrian Bunkf7f028372008-03-03 20:07:52 +0200562 kfree(vol);
Artem Bityutskiy4ccf8cf2008-01-16 15:44:24 +0200563 return -EINVAL;
564 }
565
566 ubi->autoresize_vol_id = i;
567 }
568
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400569 ubi_assert(!ubi->volumes[i]);
570 ubi->volumes[i] = vol;
571 ubi->vol_count += 1;
572 vol->ubi = ubi;
573 reserved_pebs += vol->reserved_pebs;
574
575 /*
576 * In case of dynamic volume UBI knows nothing about how many
577 * data is stored there. So assume the whole volume is used.
578 */
579 if (vol->vol_type == UBI_DYNAMIC_VOLUME) {
580 vol->used_ebs = vol->reserved_pebs;
581 vol->last_eb_bytes = vol->usable_leb_size;
Vinit Agnihotrid08c3b72007-07-10 13:04:59 +0300582 vol->used_bytes =
583 (long long)vol->used_ebs * vol->usable_leb_size;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400584 continue;
585 }
586
587 /* Static volumes only */
Artem Bityutskiydcd85fd2012-05-17 15:33:20 +0300588 av = ubi_find_av(ai, i);
Richard Weinbergere8c235b2014-07-08 16:04:44 +0200589 if (!av || !av->leb_count) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400590 /*
591 * No eraseblocks belonging to this volume found. We
592 * don't actually know whether this static volume is
593 * completely corrupted or just contains no data. And
594 * we cannot know this as long as data size is not
595 * stored on flash. So we just assume the volume is
596 * empty. FIXME: this should be handled.
597 */
598 continue;
599 }
600
Artem Bityutskiy517af482012-05-17 14:38:34 +0300601 if (av->leb_count != av->used_ebs) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400602 /*
603 * We found a static volume which misses several
604 * eraseblocks. Treat it as corrupted.
605 */
Tanya Brokhman326087032014-10-20 19:57:00 +0300606 ubi_warn(ubi, "static volume %d misses %d LEBs - corrupted",
Artem Bityutskiy517af482012-05-17 14:38:34 +0300607 av->vol_id, av->used_ebs - av->leb_count);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400608 vol->corrupted = 1;
609 continue;
610 }
611
Artem Bityutskiy517af482012-05-17 14:38:34 +0300612 vol->used_ebs = av->used_ebs;
Vinit Agnihotrid08c3b72007-07-10 13:04:59 +0300613 vol->used_bytes =
614 (long long)(vol->used_ebs - 1) * vol->usable_leb_size;
Artem Bityutskiy517af482012-05-17 14:38:34 +0300615 vol->used_bytes += av->last_data_size;
616 vol->last_eb_bytes = av->last_data_size;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400617 }
618
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200619 /* And add the layout volume */
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400620 vol = kzalloc(sizeof(struct ubi_volume), GFP_KERNEL);
621 if (!vol)
622 return -ENOMEM;
623
624 vol->reserved_pebs = UBI_LAYOUT_VOLUME_EBS;
Richard Weinberger1f4f4342012-01-10 17:57:03 +0100625 vol->alignment = UBI_LAYOUT_VOLUME_ALIGN;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400626 vol->vol_type = UBI_DYNAMIC_VOLUME;
627 vol->name_len = sizeof(UBI_LAYOUT_VOLUME_NAME) - 1;
628 memcpy(vol->name, UBI_LAYOUT_VOLUME_NAME, vol->name_len + 1);
629 vol->usable_leb_size = ubi->leb_size;
630 vol->used_ebs = vol->reserved_pebs;
631 vol->last_eb_bytes = vol->reserved_pebs;
Vinit Agnihotrid08c3b72007-07-10 13:04:59 +0300632 vol->used_bytes =
633 (long long)vol->used_ebs * (ubi->leb_size - vol->data_pad);
Artem Bityutskiy91f2d532008-01-24 11:23:23 +0200634 vol->vol_id = UBI_LAYOUT_VOLUME_ID;
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200635 vol->ref_count = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400636
637 ubi_assert(!ubi->volumes[i]);
638 ubi->volumes[vol_id2idx(ubi, vol->vol_id)] = vol;
639 reserved_pebs += vol->reserved_pebs;
640 ubi->vol_count += 1;
641 vol->ubi = ubi;
642
Artem Bityutskiy5fc01ab2010-09-03 23:08:15 +0300643 if (reserved_pebs > ubi->avail_pebs) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300644 ubi_err(ubi, "not enough PEBs, required %d, available %d",
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400645 reserved_pebs, ubi->avail_pebs);
Artem Bityutskiy5fc01ab2010-09-03 23:08:15 +0300646 if (ubi->corr_peb_count)
Tanya Brokhman326087032014-10-20 19:57:00 +0300647 ubi_err(ubi, "%d PEBs are corrupted and not used",
Artem Bityutskiy5fc01ab2010-09-03 23:08:15 +0300648 ubi->corr_peb_count);
649 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400650 ubi->rsvd_pebs += reserved_pebs;
651 ubi->avail_pebs -= reserved_pebs;
652
653 return 0;
654}
655
656/**
Artem Bityutskiy517af482012-05-17 14:38:34 +0300657 * check_av - check volume attaching information.
Tanya Brokhman326087032014-10-20 19:57:00 +0300658 * @ubi: UBI device description object
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400659 * @vol: UBI volume description object
Artem Bityutskiy517af482012-05-17 14:38:34 +0300660 * @av: volume attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400661 *
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300662 * This function returns zero if the volume attaching information is consistent
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400663 * to the data read from the volume tabla, and %-EINVAL if not.
664 */
Tanya Brokhman326087032014-10-20 19:57:00 +0300665static int check_av(const struct ubi_device *ubi, const struct ubi_volume *vol,
Artem Bityutskiy517af482012-05-17 14:38:34 +0300666 const struct ubi_ainf_volume *av)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400667{
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300668 int err;
669
Artem Bityutskiy517af482012-05-17 14:38:34 +0300670 if (av->highest_lnum >= vol->reserved_pebs) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300671 err = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400672 goto bad;
673 }
Artem Bityutskiy517af482012-05-17 14:38:34 +0300674 if (av->leb_count > vol->reserved_pebs) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300675 err = 2;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400676 goto bad;
677 }
Artem Bityutskiy517af482012-05-17 14:38:34 +0300678 if (av->vol_type != vol->vol_type) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300679 err = 3;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400680 goto bad;
681 }
Artem Bityutskiy517af482012-05-17 14:38:34 +0300682 if (av->used_ebs > vol->reserved_pebs) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300683 err = 4;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400684 goto bad;
685 }
Artem Bityutskiy517af482012-05-17 14:38:34 +0300686 if (av->data_pad != vol->data_pad) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300687 err = 5;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400688 goto bad;
689 }
690 return 0;
691
692bad:
Tanya Brokhman326087032014-10-20 19:57:00 +0300693 ubi_err(ubi, "bad attaching information, error %d", err);
Artem Bityutskiy517af482012-05-17 14:38:34 +0300694 ubi_dump_av(av);
Artem Bityutskiy766381f2012-05-16 17:53:17 +0300695 ubi_dump_vol_info(vol);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400696 return -EINVAL;
697}
698
699/**
Artem Bityutskiyfbd01072012-05-17 16:12:26 +0300700 * check_attaching_info - check that attaching information.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400701 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300702 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400703 *
704 * Even though we protect on-flash data by CRC checksums, we still don't trust
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300705 * the media. This function ensures that attaching information is consistent to
Artem Bityutskiyfbd01072012-05-17 16:12:26 +0300706 * the information read from the volume table. Returns zero if the attaching
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400707 * information is OK and %-EINVAL if it is not.
708 */
Artem Bityutskiyfbd01072012-05-17 16:12:26 +0300709static int check_attaching_info(const struct ubi_device *ubi,
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300710 struct ubi_attach_info *ai)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400711{
712 int err, i;
Artem Bityutskiy517af482012-05-17 14:38:34 +0300713 struct ubi_ainf_volume *av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400714 struct ubi_volume *vol;
715
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300716 if (ai->vols_found > UBI_INT_VOL_COUNT + ubi->vtbl_slots) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300717 ubi_err(ubi, "found %d volumes while attaching, maximum is %d + %d",
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300718 ai->vols_found, UBI_INT_VOL_COUNT, ubi->vtbl_slots);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400719 return -EINVAL;
720 }
721
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300722 if (ai->highest_vol_id >= ubi->vtbl_slots + UBI_INT_VOL_COUNT &&
723 ai->highest_vol_id < UBI_INTERNAL_VOL_START) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300724 ubi_err(ubi, "too large volume ID %d found",
725 ai->highest_vol_id);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400726 return -EINVAL;
727 }
728
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400729 for (i = 0; i < ubi->vtbl_slots + UBI_INT_VOL_COUNT; i++) {
730 cond_resched();
731
Artem Bityutskiydcd85fd2012-05-17 15:33:20 +0300732 av = ubi_find_av(ai, i);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400733 vol = ubi->volumes[i];
734 if (!vol) {
Artem Bityutskiy517af482012-05-17 14:38:34 +0300735 if (av)
Artem Bityutskiyd717dc22012-05-17 15:36:39 +0300736 ubi_remove_av(ai, av);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400737 continue;
738 }
739
740 if (vol->reserved_pebs == 0) {
741 ubi_assert(i < ubi->vtbl_slots);
742
Artem Bityutskiy517af482012-05-17 14:38:34 +0300743 if (!av)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400744 continue;
745
746 /*
Artem Bityutskiyfbd01072012-05-17 16:12:26 +0300747 * During attaching we found a volume which does not
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400748 * exist according to the information in the volume
749 * table. This must have happened due to an unclean
750 * reboot while the volume was being removed. Discard
751 * these eraseblocks.
752 */
Tanya Brokhman326087032014-10-20 19:57:00 +0300753 ubi_msg(ubi, "finish volume %d removal", av->vol_id);
Artem Bityutskiyd717dc22012-05-17 15:36:39 +0300754 ubi_remove_av(ai, av);
Artem Bityutskiy517af482012-05-17 14:38:34 +0300755 } else if (av) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300756 err = check_av(ubi, vol, av);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400757 if (err)
758 return err;
759 }
760 }
761
762 return 0;
763}
764
765/**
Artem Bityutskiyebaaf1a2008-07-18 13:34:32 +0300766 * ubi_read_volume_table - read the volume table.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400767 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300768 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400769 *
770 * This function reads volume table, checks it, recover from errors if needed,
771 * or creates it if needed. Returns zero in case of success and a negative
772 * error code in case of failure.
773 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300774int ubi_read_volume_table(struct ubi_device *ubi, struct ubi_attach_info *ai)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400775{
776 int i, err;
Artem Bityutskiy517af482012-05-17 14:38:34 +0300777 struct ubi_ainf_volume *av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400778
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300779 empty_vtbl_record.crc = cpu_to_be32(0xf116c36b);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400780
781 /*
782 * The number of supported volumes is limited by the eraseblock size
783 * and by the UBI_MAX_VOLUMES constant.
784 */
785 ubi->vtbl_slots = ubi->leb_size / UBI_VTBL_RECORD_SIZE;
786 if (ubi->vtbl_slots > UBI_MAX_VOLUMES)
787 ubi->vtbl_slots = UBI_MAX_VOLUMES;
788
789 ubi->vtbl_size = ubi->vtbl_slots * UBI_VTBL_RECORD_SIZE;
790 ubi->vtbl_size = ALIGN(ubi->vtbl_size, ubi->min_io_size);
791
Artem Bityutskiydcd85fd2012-05-17 15:33:20 +0300792 av = ubi_find_av(ai, UBI_LAYOUT_VOLUME_ID);
Artem Bityutskiy517af482012-05-17 14:38:34 +0300793 if (!av) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400794 /*
795 * No logical eraseblocks belonging to the layout volume were
796 * found. This could mean that the flash is just empty. In
797 * this case we create empty layout volume.
798 *
799 * But if flash is not empty this must be a corruption or the
800 * MTD device just contains garbage.
801 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300802 if (ai->is_empty) {
803 ubi->vtbl = create_empty_lvol(ubi, ai);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400804 if (IS_ERR(ubi->vtbl))
805 return PTR_ERR(ubi->vtbl);
806 } else {
Tanya Brokhman326087032014-10-20 19:57:00 +0300807 ubi_err(ubi, "the layout volume was not found");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400808 return -EINVAL;
809 }
810 } else {
Artem Bityutskiy517af482012-05-17 14:38:34 +0300811 if (av->leb_count > UBI_LAYOUT_VOLUME_EBS) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400812 /* This must not happen with proper UBI images */
Tanya Brokhman326087032014-10-20 19:57:00 +0300813 ubi_err(ubi, "too many LEBs (%d) in layout volume",
Artem Bityutskiy517af482012-05-17 14:38:34 +0300814 av->leb_count);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400815 return -EINVAL;
816 }
817
Artem Bityutskiy517af482012-05-17 14:38:34 +0300818 ubi->vtbl = process_lvol(ubi, ai, av);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400819 if (IS_ERR(ubi->vtbl))
820 return PTR_ERR(ubi->vtbl);
821 }
822
Artem Bityutskiy5fc01ab2010-09-03 23:08:15 +0300823 ubi->avail_pebs = ubi->good_peb_count - ubi->corr_peb_count;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400824
825 /*
826 * The layout volume is OK, initialize the corresponding in-RAM data
827 * structures.
828 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300829 err = init_volumes(ubi, ai, ubi->vtbl);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400830 if (err)
831 goto out_free;
832
833 /*
Artem Bityutskiya4e60422012-05-17 13:09:08 +0300834 * Make sure that the attaching information is consistent to the
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400835 * information stored in the volume table.
836 */
Artem Bityutskiyfbd01072012-05-17 16:12:26 +0300837 err = check_attaching_info(ubi, ai);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400838 if (err)
839 goto out_free;
840
841 return 0;
842
843out_free:
Artem Bityutskiy92ad8f32007-05-06 16:12:54 +0300844 vfree(ubi->vtbl);
Artem Bityutskiy9c9ec142008-07-18 13:19:52 +0300845 for (i = 0; i < ubi->vtbl_slots + UBI_INT_VOL_COUNT; i++) {
846 kfree(ubi->volumes[i]);
847 ubi->volumes[i] = NULL;
848 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400849 return err;
850}
851
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400852/**
Artem Bityutskiy7bf523a2012-05-16 18:29:54 +0300853 * self_vtbl_check - check volume table.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400854 * @ubi: UBI device description object
855 */
Artem Bityutskiy7bf523a2012-05-16 18:29:54 +0300856static void self_vtbl_check(const struct ubi_device *ubi)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400857{
Ezequiel Garcia64575572012-11-28 09:18:29 -0300858 if (!ubi_dbg_chk_gen(ubi))
Artem Bityutskiy92d124f2011-03-14 18:17:40 +0200859 return;
860
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400861 if (vtbl_check(ubi, ubi->vtbl)) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300862 ubi_err(ubi, "self-check failed");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400863 BUG();
864 }
865}