blob: befe6f888d5750b1af3481dd368371331df0f334 [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) {
228 dbg_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) {
Deepak Saxena762a9f22008-10-08 12:56:24 -0700244 dbg_err("too large reserved_pebs %d, good PEBs %d",
245 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
294 * @si: scanning information
295 * @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 Bityutskiye88d6e102007-08-29 14:51:52 +0300301static int create_vtbl(struct ubi_device *ubi, struct ubi_scan_info *si,
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 Bityutskiy4788b602011-06-03 19:41:00 +0300306 struct ubi_scan_leb *new_seb;
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:
315 new_seb = ubi_scan_get_free_peb(ubi, si);
316 if (IS_ERR(new_seb)) {
317 err = PTR_ERR(new_seb);
318 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);
327 vid_hdr->sqnum = cpu_to_be64(++si->max_sqnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400328
329 /* The EC header is already there, write the VID header */
330 err = ubi_io_write_vid_hdr(ubi, new_seb->pnum, vid_hdr);
331 if (err)
332 goto write_error;
333
334 /* Write the layout volume contents */
335 err = ubi_io_write_data(ubi, vtbl, new_seb->pnum, 0, ubi->vtbl_size);
336 if (err)
337 goto write_error;
338
339 /*
Artem Bityutskiy4788b602011-06-03 19:41:00 +0300340 * And add it to the scanning information. Don't delete the old version
341 * of this LEB as it will be deleted and freed in 'ubi_scan_add_used()'.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400342 */
343 err = ubi_scan_add_used(ubi, si, new_seb->pnum, new_seb->ec,
344 vid_hdr, 0);
345 kfree(new_seb);
346 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 Bityutskiy0525dac2010-09-03 17:11:37 +0300355 list_add(&new_seb->u.list, &si->erase);
Florin Malitac4e90ec2007-05-03 11:49:57 -0400356 goto retry;
Artem Bityutskiy78d87c92007-05-05 11:24:02 +0300357 }
358 kfree(new_seb);
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
368 * @si: scanning information
369 * @sv: layout volume scanning information
370 *
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 B. Bityutskiy801c1352006-06-27 12:22:22 +0400376 struct ubi_scan_info *si,
377 struct ubi_scan_volume *sv)
378{
379 int err;
380 struct rb_node *rb;
381 struct ubi_scan_leb *seb;
382 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 */
413 ubi_rb_for_each_entry(rb, seb, &sv->root, u.rb) {
Joe Perches309b5e42010-11-04 20:07:40 -0700414 leb[seb->lnum] = vzalloc(ubi->vtbl_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400415 if (!leb[seb->lnum]) {
416 err = -ENOMEM;
417 goto out_free;
418 }
419
420 err = ubi_io_read_data(ubi, leb[seb->lnum], seb->pnum, 0,
421 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
428 * seb->scrub). If the data is not OK, the contents of
429 * the PEB will be recovered from the second copy, and
430 * seb->scrub will be cleared in
431 * 'ubi_scan_add_used()'.
432 */
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400433 seb->scrub = 1;
434 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");
452 err = create_vtbl(ubi, si, 1, leb[0]);
453 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");
475 err = create_vtbl(ubi, si, 0, leb[1]);
476 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
493 * @si: scanning information
494 *
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 B. Bityutskiy801c1352006-06-27 12:22:22 +0400499 struct ubi_scan_info *si)
500{
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
514 err = create_vtbl(ubi, si, i, vtbl);
515 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
527 * @si: scanning information
528 * @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 */
534static int init_volumes(struct ubi_device *ubi, const struct ubi_scan_info *si,
535 const struct ubi_vtbl_record *vtbl)
536{
537 int i, reserved_pebs = 0;
538 struct ubi_scan_volume *sv;
539 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
Artem Bityutskiy4ccf8cf2008-01-16 15:44:24 +0200563 if (vtbl[i].flags & UBI_VTBL_AUTORESIZE_FLG) {
564 /* Auto re-size flag may be set only for one volume */
565 if (ubi->autoresize_vol_id != -1) {
Frederik Schwarzer025dfda2008-10-16 19:02:37 +0200566 ubi_err("more than one auto-resize volume (%d "
Artem Bityutskiy4ccf8cf2008-01-16 15:44:24 +0200567 "and %d)", ubi->autoresize_vol_id, i);
Adrian Bunkf7f028372008-03-03 20:07:52 +0200568 kfree(vol);
Artem Bityutskiy4ccf8cf2008-01-16 15:44:24 +0200569 return -EINVAL;
570 }
571
572 ubi->autoresize_vol_id = i;
573 }
574
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400575 ubi_assert(!ubi->volumes[i]);
576 ubi->volumes[i] = vol;
577 ubi->vol_count += 1;
578 vol->ubi = ubi;
579 reserved_pebs += vol->reserved_pebs;
580
581 /*
582 * In case of dynamic volume UBI knows nothing about how many
583 * data is stored there. So assume the whole volume is used.
584 */
585 if (vol->vol_type == UBI_DYNAMIC_VOLUME) {
586 vol->used_ebs = vol->reserved_pebs;
587 vol->last_eb_bytes = vol->usable_leb_size;
Vinit Agnihotrid08c3b72007-07-10 13:04:59 +0300588 vol->used_bytes =
589 (long long)vol->used_ebs * vol->usable_leb_size;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400590 continue;
591 }
592
593 /* Static volumes only */
594 sv = ubi_scan_find_sv(si, i);
595 if (!sv) {
596 /*
597 * No eraseblocks belonging to this volume found. We
598 * don't actually know whether this static volume is
599 * completely corrupted or just contains no data. And
600 * we cannot know this as long as data size is not
601 * stored on flash. So we just assume the volume is
602 * empty. FIXME: this should be handled.
603 */
604 continue;
605 }
606
607 if (sv->leb_count != sv->used_ebs) {
608 /*
609 * We found a static volume which misses several
610 * eraseblocks. Treat it as corrupted.
611 */
612 ubi_warn("static volume %d misses %d LEBs - corrupted",
613 sv->vol_id, sv->used_ebs - sv->leb_count);
614 vol->corrupted = 1;
615 continue;
616 }
617
618 vol->used_ebs = sv->used_ebs;
Vinit Agnihotrid08c3b72007-07-10 13:04:59 +0300619 vol->used_bytes =
620 (long long)(vol->used_ebs - 1) * vol->usable_leb_size;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400621 vol->used_bytes += sv->last_data_size;
622 vol->last_eb_bytes = sv->last_data_size;
623 }
624
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200625 /* And add the layout volume */
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400626 vol = kzalloc(sizeof(struct ubi_volume), GFP_KERNEL);
627 if (!vol)
628 return -ENOMEM;
629
630 vol->reserved_pebs = UBI_LAYOUT_VOLUME_EBS;
Richard Weinberger1f4f4342012-01-10 17:57:03 +0100631 vol->alignment = UBI_LAYOUT_VOLUME_ALIGN;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400632 vol->vol_type = UBI_DYNAMIC_VOLUME;
633 vol->name_len = sizeof(UBI_LAYOUT_VOLUME_NAME) - 1;
634 memcpy(vol->name, UBI_LAYOUT_VOLUME_NAME, vol->name_len + 1);
635 vol->usable_leb_size = ubi->leb_size;
636 vol->used_ebs = vol->reserved_pebs;
637 vol->last_eb_bytes = vol->reserved_pebs;
Vinit Agnihotrid08c3b72007-07-10 13:04:59 +0300638 vol->used_bytes =
639 (long long)vol->used_ebs * (ubi->leb_size - vol->data_pad);
Artem Bityutskiy91f2d532008-01-24 11:23:23 +0200640 vol->vol_id = UBI_LAYOUT_VOLUME_ID;
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200641 vol->ref_count = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400642
643 ubi_assert(!ubi->volumes[i]);
644 ubi->volumes[vol_id2idx(ubi, vol->vol_id)] = vol;
645 reserved_pebs += vol->reserved_pebs;
646 ubi->vol_count += 1;
647 vol->ubi = ubi;
648
Artem Bityutskiy5fc01ab2010-09-03 23:08:15 +0300649 if (reserved_pebs > ubi->avail_pebs) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400650 ubi_err("not enough PEBs, required %d, available %d",
651 reserved_pebs, ubi->avail_pebs);
Artem Bityutskiy5fc01ab2010-09-03 23:08:15 +0300652 if (ubi->corr_peb_count)
653 ubi_err("%d PEBs are corrupted and not used",
654 ubi->corr_peb_count);
655 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400656 ubi->rsvd_pebs += reserved_pebs;
657 ubi->avail_pebs -= reserved_pebs;
658
659 return 0;
660}
661
662/**
663 * check_sv - check volume scanning information.
664 * @vol: UBI volume description object
665 * @sv: volume scanning information
666 *
667 * This function returns zero if the volume scanning information is consistent
668 * to the data read from the volume tabla, and %-EINVAL if not.
669 */
670static int check_sv(const struct ubi_volume *vol,
671 const struct ubi_scan_volume *sv)
672{
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300673 int err;
674
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400675 if (sv->highest_lnum >= vol->reserved_pebs) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300676 err = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400677 goto bad;
678 }
679 if (sv->leb_count > vol->reserved_pebs) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300680 err = 2;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400681 goto bad;
682 }
683 if (sv->vol_type != vol->vol_type) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300684 err = 3;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400685 goto bad;
686 }
687 if (sv->used_ebs > vol->reserved_pebs) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300688 err = 4;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400689 goto bad;
690 }
691 if (sv->data_pad != vol->data_pad) {
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300692 err = 5;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400693 goto bad;
694 }
695 return 0;
696
697bad:
Artem Bityutskiy979c9292008-05-14 16:10:33 +0300698 ubi_err("bad scanning information, error %d", err);
Artem Bityutskiy614c74a752012-05-16 17:59:36 +0300699 ubi_dump_sv(sv);
Artem Bityutskiy766381f2012-05-16 17:53:17 +0300700 ubi_dump_vol_info(vol);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400701 return -EINVAL;
702}
703
704/**
705 * check_scanning_info - check that scanning information.
706 * @ubi: UBI device description object
707 * @si: scanning information
708 *
709 * Even though we protect on-flash data by CRC checksums, we still don't trust
710 * the media. This function ensures that scanning information is consistent to
711 * the information read from the volume table. Returns zero if the scanning
712 * information is OK and %-EINVAL if it is not.
713 */
714static int check_scanning_info(const struct ubi_device *ubi,
715 struct ubi_scan_info *si)
716{
717 int err, i;
718 struct ubi_scan_volume *sv;
719 struct ubi_volume *vol;
720
721 if (si->vols_found > UBI_INT_VOL_COUNT + ubi->vtbl_slots) {
722 ubi_err("scanning found %d volumes, maximum is %d + %d",
723 si->vols_found, UBI_INT_VOL_COUNT, ubi->vtbl_slots);
724 return -EINVAL;
725 }
726
Kyungmin Parkcadb40c2008-05-22 10:32:18 +0900727 if (si->highest_vol_id >= ubi->vtbl_slots + UBI_INT_VOL_COUNT &&
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400728 si->highest_vol_id < UBI_INTERNAL_VOL_START) {
729 ubi_err("too large volume ID %d found by scanning",
730 si->highest_vol_id);
731 return -EINVAL;
732 }
733
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400734 for (i = 0; i < ubi->vtbl_slots + UBI_INT_VOL_COUNT; i++) {
735 cond_resched();
736
737 sv = ubi_scan_find_sv(si, i);
738 vol = ubi->volumes[i];
739 if (!vol) {
740 if (sv)
741 ubi_scan_rm_volume(si, sv);
742 continue;
743 }
744
745 if (vol->reserved_pebs == 0) {
746 ubi_assert(i < ubi->vtbl_slots);
747
748 if (!sv)
749 continue;
750
751 /*
752 * During scanning we found a volume which does not
753 * exist according to the information in the volume
754 * table. This must have happened due to an unclean
755 * reboot while the volume was being removed. Discard
756 * these eraseblocks.
757 */
758 ubi_msg("finish volume %d removal", sv->vol_id);
759 ubi_scan_rm_volume(si, sv);
760 } else if (sv) {
761 err = check_sv(vol, sv);
762 if (err)
763 return err;
764 }
765 }
766
767 return 0;
768}
769
770/**
Artem Bityutskiyebaaf1a2008-07-18 13:34:32 +0300771 * ubi_read_volume_table - read the volume table.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400772 * @ubi: UBI device description object
773 * @si: scanning information
774 *
775 * This function reads volume table, checks it, recover from errors if needed,
776 * or creates it if needed. Returns zero in case of success and a negative
777 * error code in case of failure.
778 */
779int ubi_read_volume_table(struct ubi_device *ubi, struct ubi_scan_info *si)
780{
781 int i, err;
782 struct ubi_scan_volume *sv;
783
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300784 empty_vtbl_record.crc = cpu_to_be32(0xf116c36b);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400785
786 /*
787 * The number of supported volumes is limited by the eraseblock size
788 * and by the UBI_MAX_VOLUMES constant.
789 */
790 ubi->vtbl_slots = ubi->leb_size / UBI_VTBL_RECORD_SIZE;
791 if (ubi->vtbl_slots > UBI_MAX_VOLUMES)
792 ubi->vtbl_slots = UBI_MAX_VOLUMES;
793
794 ubi->vtbl_size = ubi->vtbl_slots * UBI_VTBL_RECORD_SIZE;
795 ubi->vtbl_size = ALIGN(ubi->vtbl_size, ubi->min_io_size);
796
Artem Bityutskiy91f2d532008-01-24 11:23:23 +0200797 sv = ubi_scan_find_sv(si, UBI_LAYOUT_VOLUME_ID);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400798 if (!sv) {
799 /*
800 * No logical eraseblocks belonging to the layout volume were
801 * found. This could mean that the flash is just empty. In
802 * this case we create empty layout volume.
803 *
804 * But if flash is not empty this must be a corruption or the
805 * MTD device just contains garbage.
806 */
807 if (si->is_empty) {
808 ubi->vtbl = create_empty_lvol(ubi, si);
809 if (IS_ERR(ubi->vtbl))
810 return PTR_ERR(ubi->vtbl);
811 } else {
812 ubi_err("the layout volume was not found");
813 return -EINVAL;
814 }
815 } else {
816 if (sv->leb_count > UBI_LAYOUT_VOLUME_EBS) {
817 /* This must not happen with proper UBI images */
818 dbg_err("too many LEBs (%d) in layout volume",
819 sv->leb_count);
820 return -EINVAL;
821 }
822
823 ubi->vtbl = process_lvol(ubi, si, sv);
824 if (IS_ERR(ubi->vtbl))
825 return PTR_ERR(ubi->vtbl);
826 }
827
Artem Bityutskiy5fc01ab2010-09-03 23:08:15 +0300828 ubi->avail_pebs = ubi->good_peb_count - ubi->corr_peb_count;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400829
830 /*
831 * The layout volume is OK, initialize the corresponding in-RAM data
832 * structures.
833 */
834 err = init_volumes(ubi, si, ubi->vtbl);
835 if (err)
836 goto out_free;
837
838 /*
Shinya Kuribayashibe436f62010-05-06 19:22:09 +0900839 * Make sure that the scanning information is consistent to the
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400840 * information stored in the volume table.
841 */
842 err = check_scanning_info(ubi, si);
843 if (err)
844 goto out_free;
845
846 return 0;
847
848out_free:
Artem Bityutskiy92ad8f32007-05-06 16:12:54 +0300849 vfree(ubi->vtbl);
Artem Bityutskiy9c9ec142008-07-18 13:19:52 +0300850 for (i = 0; i < ubi->vtbl_slots + UBI_INT_VOL_COUNT; i++) {
851 kfree(ubi->volumes[i]);
852 ubi->volumes[i] = NULL;
853 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400854 return err;
855}
856
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400857/**
Artem Bityutskiy7bf523a2012-05-16 18:29:54 +0300858 * self_vtbl_check - check volume table.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400859 * @ubi: UBI device description object
860 */
Artem Bityutskiy7bf523a2012-05-16 18:29:54 +0300861static void self_vtbl_check(const struct ubi_device *ubi)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400862{
Artem Bityutskiy2a734bb2011-05-18 14:53:05 +0300863 if (!ubi->dbg->chk_gen)
Artem Bityutskiy92d124f2011-03-14 18:17:40 +0200864 return;
865
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400866 if (vtbl_check(ubi, ubi->vtbl)) {
Artem Bityutskiy7bf523a2012-05-16 18:29:54 +0300867 ubi_err("self-check failed");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400868 BUG();
869 }
870}