blob: a37dc7a213b1a536461350e022de60cc24c819ae [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>
61#include <asm/div64.h>
62#include "ubi.h"
63
64#ifdef CONFIG_MTD_UBI_DEBUG_PARANOID
65static void paranoid_vtbl_check(const struct ubi_device *ubi);
66#else
67#define paranoid_vtbl_check(ubi)
68#endif
69
70/* Empty volume table record */
71static struct ubi_vtbl_record empty_vtbl_record;
72
73/**
74 * ubi_change_vtbl_record - change volume table record.
75 * @ubi: UBI device description object
76 * @idx: table index to change
77 * @vtbl_rec: new volume table record
78 *
79 * This function changes volume table record @idx. If @vtbl_rec is %NULL, empty
80 * volume table record is written. The caller does not have to calculate CRC of
81 * the record as it is done by this function. Returns zero in case of success
82 * and a negative error code in case of failure.
83 */
84int ubi_change_vtbl_record(struct ubi_device *ubi, int idx,
85 struct ubi_vtbl_record *vtbl_rec)
86{
87 int i, err;
88 uint32_t crc;
Artem Bityutskiy89b96b62007-12-16 20:00:38 +020089 struct ubi_volume *layout_vol;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040090
91 ubi_assert(idx >= 0 && idx < ubi->vtbl_slots);
Artem Bityutskiycae0a772007-12-17 12:46:48 +020092 layout_vol = ubi->volumes[vol_id2idx(ubi, UBI_LAYOUT_VOL_ID)];
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040093
94 if (!vtbl_rec)
95 vtbl_rec = &empty_vtbl_record;
96 else {
97 crc = crc32(UBI_CRC32_INIT, vtbl_rec, UBI_VTBL_RECORD_SIZE_CRC);
Christoph Hellwig3261ebd2007-05-21 17:41:46 +030098 vtbl_rec->crc = cpu_to_be32(crc);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040099 }
100
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400101 memcpy(&ubi->vtbl[idx], vtbl_rec, sizeof(struct ubi_vtbl_record));
102 for (i = 0; i < UBI_LAYOUT_VOLUME_EBS; i++) {
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200103 err = ubi_eba_unmap_leb(ubi, layout_vol, i);
Artem Bityutskiycae0a772007-12-17 12:46:48 +0200104 if (err)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400105 return err;
Artem Bityutskiycae0a772007-12-17 12:46:48 +0200106
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200107 err = ubi_eba_write_leb(ubi, layout_vol, i, ubi->vtbl, 0,
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400108 ubi->vtbl_size, UBI_LONGTERM);
Artem Bityutskiycae0a772007-12-17 12:46:48 +0200109 if (err)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400110 return err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400111 }
112
113 paranoid_vtbl_check(ubi);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400114 return ubi_wl_flush(ubi);
115}
116
117/**
118 * vol_til_check - check if volume table is not corrupted and contains sensible
119 * data.
120 *
121 * @ubi: UBI device description object
122 * @vtbl: volume table
123 *
124 * This function returns zero if @vtbl is all right, %1 if CRC is incorrect,
125 * and %-EINVAL if it contains inconsistent data.
126 */
127static int vtbl_check(const struct ubi_device *ubi,
128 const struct ubi_vtbl_record *vtbl)
129{
130 int i, n, reserved_pebs, alignment, data_pad, vol_type, name_len;
131 int upd_marker;
132 uint32_t crc;
133 const char *name;
134
135 for (i = 0; i < ubi->vtbl_slots; i++) {
136 cond_resched();
137
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300138 reserved_pebs = be32_to_cpu(vtbl[i].reserved_pebs);
139 alignment = be32_to_cpu(vtbl[i].alignment);
140 data_pad = be32_to_cpu(vtbl[i].data_pad);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400141 upd_marker = vtbl[i].upd_marker;
142 vol_type = vtbl[i].vol_type;
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300143 name_len = be16_to_cpu(vtbl[i].name_len);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400144 name = &vtbl[i].name[0];
145
146 crc = crc32(UBI_CRC32_INIT, &vtbl[i], UBI_VTBL_RECORD_SIZE_CRC);
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300147 if (be32_to_cpu(vtbl[i].crc) != crc) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400148 ubi_err("bad CRC at record %u: %#08x, not %#08x",
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300149 i, crc, be32_to_cpu(vtbl[i].crc));
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400150 ubi_dbg_dump_vtbl_record(&vtbl[i], i);
151 return 1;
152 }
153
154 if (reserved_pebs == 0) {
155 if (memcmp(&vtbl[i], &empty_vtbl_record,
156 UBI_VTBL_RECORD_SIZE)) {
157 dbg_err("bad empty record");
158 goto bad;
159 }
160 continue;
161 }
162
163 if (reserved_pebs < 0 || alignment < 0 || data_pad < 0 ||
164 name_len < 0) {
165 dbg_err("negative values");
166 goto bad;
167 }
168
169 if (alignment > ubi->leb_size || alignment == 0) {
170 dbg_err("bad alignment");
171 goto bad;
172 }
173
174 n = alignment % ubi->min_io_size;
175 if (alignment != 1 && n) {
176 dbg_err("alignment is not multiple of min I/O unit");
177 goto bad;
178 }
179
180 n = ubi->leb_size % alignment;
181 if (data_pad != n) {
182 dbg_err("bad data_pad, has to be %d", n);
183 goto bad;
184 }
185
186 if (vol_type != UBI_VID_DYNAMIC && vol_type != UBI_VID_STATIC) {
187 dbg_err("bad vol_type");
188 goto bad;
189 }
190
191 if (upd_marker != 0 && upd_marker != 1) {
192 dbg_err("bad upd_marker");
193 goto bad;
194 }
195
196 if (reserved_pebs > ubi->good_peb_count) {
197 dbg_err("too large reserved_pebs, good PEBs %d",
198 ubi->good_peb_count);
199 goto bad;
200 }
201
202 if (name_len > UBI_VOL_NAME_MAX) {
203 dbg_err("too long volume name, max %d",
204 UBI_VOL_NAME_MAX);
205 goto bad;
206 }
207
208 if (name[0] == '\0') {
209 dbg_err("NULL volume name");
210 goto bad;
211 }
212
213 if (name_len != strnlen(name, name_len + 1)) {
214 dbg_err("bad name_len");
215 goto bad;
216 }
217 }
218
219 /* Checks that all names are unique */
220 for (i = 0; i < ubi->vtbl_slots - 1; i++) {
221 for (n = i + 1; n < ubi->vtbl_slots; n++) {
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300222 int len1 = be16_to_cpu(vtbl[i].name_len);
223 int len2 = be16_to_cpu(vtbl[n].name_len);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400224
225 if (len1 > 0 && len1 == len2 &&
226 !strncmp(vtbl[i].name, vtbl[n].name, len1)) {
227 ubi_err("volumes %d and %d have the same name"
228 " \"%s\"", i, n, vtbl[i].name);
229 ubi_dbg_dump_vtbl_record(&vtbl[i], i);
230 ubi_dbg_dump_vtbl_record(&vtbl[n], n);
231 return -EINVAL;
232 }
233 }
234 }
235
236 return 0;
237
238bad:
239 ubi_err("volume table check failed, record %d", i);
240 ubi_dbg_dump_vtbl_record(&vtbl[i], i);
241 return -EINVAL;
242}
243
244/**
245 * create_vtbl - create a copy of volume table.
246 * @ubi: UBI device description object
247 * @si: scanning information
248 * @copy: number of the volume table copy
249 * @vtbl: contents of the volume table
250 *
251 * This function returns zero in case of success and a negative error code in
252 * case of failure.
253 */
Artem Bityutskiye88d6e102007-08-29 14:51:52 +0300254static int create_vtbl(struct ubi_device *ubi, struct ubi_scan_info *si,
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400255 int copy, void *vtbl)
256{
257 int err, tries = 0;
258 static struct ubi_vid_hdr *vid_hdr;
259 struct ubi_scan_volume *sv;
260 struct ubi_scan_leb *new_seb, *old_seb = NULL;
261
262 ubi_msg("create volume table (copy #%d)", copy + 1);
263
Artem Bityutskiy33818bb2007-08-28 21:29:32 +0300264 vid_hdr = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400265 if (!vid_hdr)
266 return -ENOMEM;
267
268 /*
269 * Check if there is a logical eraseblock which would have to contain
270 * this volume table copy was found during scanning. It has to be wiped
271 * out.
272 */
273 sv = ubi_scan_find_sv(si, UBI_LAYOUT_VOL_ID);
274 if (sv)
275 old_seb = ubi_scan_find_seb(sv, copy);
276
277retry:
278 new_seb = ubi_scan_get_free_peb(ubi, si);
279 if (IS_ERR(new_seb)) {
280 err = PTR_ERR(new_seb);
281 goto out_free;
282 }
283
284 vid_hdr->vol_type = UBI_VID_DYNAMIC;
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300285 vid_hdr->vol_id = cpu_to_be32(UBI_LAYOUT_VOL_ID);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400286 vid_hdr->compat = UBI_LAYOUT_VOLUME_COMPAT;
287 vid_hdr->data_size = vid_hdr->used_ebs =
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300288 vid_hdr->data_pad = cpu_to_be32(0);
289 vid_hdr->lnum = cpu_to_be32(copy);
290 vid_hdr->sqnum = cpu_to_be64(++si->max_sqnum);
291 vid_hdr->leb_ver = cpu_to_be32(old_seb ? old_seb->leb_ver + 1: 0);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400292
293 /* The EC header is already there, write the VID header */
294 err = ubi_io_write_vid_hdr(ubi, new_seb->pnum, vid_hdr);
295 if (err)
296 goto write_error;
297
298 /* Write the layout volume contents */
299 err = ubi_io_write_data(ubi, vtbl, new_seb->pnum, 0, ubi->vtbl_size);
300 if (err)
301 goto write_error;
302
303 /*
304 * And add it to the scanning information. Don't delete the old
305 * @old_seb as it will be deleted and freed in 'ubi_scan_add_used()'.
306 */
307 err = ubi_scan_add_used(ubi, si, new_seb->pnum, new_seb->ec,
308 vid_hdr, 0);
309 kfree(new_seb);
310 ubi_free_vid_hdr(ubi, vid_hdr);
311 return err;
312
313write_error:
Artem Bityutskiy78d87c92007-05-05 11:24:02 +0300314 if (err == -EIO && ++tries <= 5) {
315 /*
316 * Probably this physical eraseblock went bad, try to pick
317 * another one.
318 */
319 list_add_tail(&new_seb->u.list, &si->corr);
Florin Malitac4e90ec2007-05-03 11:49:57 -0400320 goto retry;
Artem Bityutskiy78d87c92007-05-05 11:24:02 +0300321 }
322 kfree(new_seb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400323out_free:
324 ubi_free_vid_hdr(ubi, vid_hdr);
325 return err;
326
327}
328
329/**
330 * process_lvol - process the layout volume.
331 * @ubi: UBI device description object
332 * @si: scanning information
333 * @sv: layout volume scanning information
334 *
335 * This function is responsible for reading the layout volume, ensuring it is
336 * not corrupted, and recovering from corruptions if needed. Returns volume
337 * table in case of success and a negative error code in case of failure.
338 */
Artem Bityutskiye88d6e102007-08-29 14:51:52 +0300339static struct ubi_vtbl_record *process_lvol(struct ubi_device *ubi,
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400340 struct ubi_scan_info *si,
341 struct ubi_scan_volume *sv)
342{
343 int err;
344 struct rb_node *rb;
345 struct ubi_scan_leb *seb;
346 struct ubi_vtbl_record *leb[UBI_LAYOUT_VOLUME_EBS] = { NULL, NULL };
347 int leb_corrupted[UBI_LAYOUT_VOLUME_EBS] = {1, 1};
348
349 /*
350 * UBI goes through the following steps when it changes the layout
351 * volume:
352 * a. erase LEB 0;
353 * b. write new data to LEB 0;
354 * c. erase LEB 1;
355 * d. write new data to LEB 1.
356 *
357 * Before the change, both LEBs contain the same data.
358 *
359 * Due to unclean reboots, the contents of LEB 0 may be lost, but there
360 * should LEB 1. So it is OK if LEB 0 is corrupted while LEB 1 is not.
361 * Similarly, LEB 1 may be lost, but there should be LEB 0. And
362 * finally, unclean reboots may result in a situation when neither LEB
363 * 0 nor LEB 1 are corrupted, but they are different. In this case, LEB
364 * 0 contains more recent information.
365 *
366 * So the plan is to first check LEB 0. Then
367 * a. if LEB 0 is OK, it must be containing the most resent data; then
368 * we compare it with LEB 1, and if they are different, we copy LEB
369 * 0 to LEB 1;
370 * b. if LEB 0 is corrupted, but LEB 1 has to be OK, and we copy LEB 1
371 * to LEB 0.
372 */
373
374 dbg_msg("check layout volume");
375
376 /* Read both LEB 0 and LEB 1 into memory */
377 ubi_rb_for_each_entry(rb, seb, &sv->root, u.rb) {
Artem Bityutskiy92ad8f32007-05-06 16:12:54 +0300378 leb[seb->lnum] = vmalloc(ubi->vtbl_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400379 if (!leb[seb->lnum]) {
380 err = -ENOMEM;
381 goto out_free;
382 }
Artem Bityutskiy92ad8f32007-05-06 16:12:54 +0300383 memset(leb[seb->lnum], 0, ubi->vtbl_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400384
385 err = ubi_io_read_data(ubi, leb[seb->lnum], seb->pnum, 0,
386 ubi->vtbl_size);
387 if (err == UBI_IO_BITFLIPS || err == -EBADMSG)
388 /* Scrub the PEB later */
389 seb->scrub = 1;
390 else if (err)
391 goto out_free;
392 }
393
394 err = -EINVAL;
395 if (leb[0]) {
396 leb_corrupted[0] = vtbl_check(ubi, leb[0]);
397 if (leb_corrupted[0] < 0)
398 goto out_free;
399 }
400
401 if (!leb_corrupted[0]) {
402 /* LEB 0 is OK */
403 if (leb[1])
404 leb_corrupted[1] = memcmp(leb[0], leb[1], ubi->vtbl_size);
405 if (leb_corrupted[1]) {
406 ubi_warn("volume table copy #2 is corrupted");
407 err = create_vtbl(ubi, si, 1, leb[0]);
408 if (err)
409 goto out_free;
410 ubi_msg("volume table was restored");
411 }
412
413 /* Both LEB 1 and LEB 2 are OK and consistent */
Artem Bityutskiy92ad8f32007-05-06 16:12:54 +0300414 vfree(leb[1]);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400415 return leb[0];
416 } else {
417 /* LEB 0 is corrupted or does not exist */
418 if (leb[1]) {
419 leb_corrupted[1] = vtbl_check(ubi, leb[1]);
420 if (leb_corrupted[1] < 0)
421 goto out_free;
422 }
423 if (leb_corrupted[1]) {
424 /* Both LEB 0 and LEB 1 are corrupted */
425 ubi_err("both volume tables are corrupted");
426 goto out_free;
427 }
428
429 ubi_warn("volume table copy #1 is corrupted");
430 err = create_vtbl(ubi, si, 0, leb[1]);
431 if (err)
432 goto out_free;
433 ubi_msg("volume table was restored");
434
Artem Bityutskiy92ad8f32007-05-06 16:12:54 +0300435 vfree(leb[0]);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400436 return leb[1];
437 }
438
439out_free:
Artem Bityutskiy92ad8f32007-05-06 16:12:54 +0300440 vfree(leb[0]);
441 vfree(leb[1]);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400442 return ERR_PTR(err);
443}
444
445/**
446 * create_empty_lvol - create empty layout volume.
447 * @ubi: UBI device description object
448 * @si: scanning information
449 *
450 * This function returns volume table contents in case of success and a
451 * negative error code in case of failure.
452 */
Artem Bityutskiye88d6e102007-08-29 14:51:52 +0300453static struct ubi_vtbl_record *create_empty_lvol(struct ubi_device *ubi,
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400454 struct ubi_scan_info *si)
455{
456 int i;
457 struct ubi_vtbl_record *vtbl;
458
Artem Bityutskiy92ad8f32007-05-06 16:12:54 +0300459 vtbl = vmalloc(ubi->vtbl_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400460 if (!vtbl)
461 return ERR_PTR(-ENOMEM);
Artem Bityutskiy92ad8f32007-05-06 16:12:54 +0300462 memset(vtbl, 0, ubi->vtbl_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400463
464 for (i = 0; i < ubi->vtbl_slots; i++)
465 memcpy(&vtbl[i], &empty_vtbl_record, UBI_VTBL_RECORD_SIZE);
466
467 for (i = 0; i < UBI_LAYOUT_VOLUME_EBS; i++) {
468 int err;
469
470 err = create_vtbl(ubi, si, i, vtbl);
471 if (err) {
Artem Bityutskiy92ad8f32007-05-06 16:12:54 +0300472 vfree(vtbl);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400473 return ERR_PTR(err);
474 }
475 }
476
477 return vtbl;
478}
479
480/**
481 * init_volumes - initialize volume information for existing volumes.
482 * @ubi: UBI device description object
483 * @si: scanning information
484 * @vtbl: volume table
485 *
486 * This function allocates volume description objects for existing volumes.
487 * Returns zero in case of success and a negative error code in case of
488 * failure.
489 */
490static int init_volumes(struct ubi_device *ubi, const struct ubi_scan_info *si,
491 const struct ubi_vtbl_record *vtbl)
492{
493 int i, reserved_pebs = 0;
494 struct ubi_scan_volume *sv;
495 struct ubi_volume *vol;
496
497 for (i = 0; i < ubi->vtbl_slots; i++) {
498 cond_resched();
499
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300500 if (be32_to_cpu(vtbl[i].reserved_pebs) == 0)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400501 continue; /* Empty record */
502
503 vol = kzalloc(sizeof(struct ubi_volume), GFP_KERNEL);
504 if (!vol)
505 return -ENOMEM;
506
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300507 vol->reserved_pebs = be32_to_cpu(vtbl[i].reserved_pebs);
508 vol->alignment = be32_to_cpu(vtbl[i].alignment);
509 vol->data_pad = be32_to_cpu(vtbl[i].data_pad);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400510 vol->vol_type = vtbl[i].vol_type == UBI_VID_DYNAMIC ?
511 UBI_DYNAMIC_VOLUME : UBI_STATIC_VOLUME;
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300512 vol->name_len = be16_to_cpu(vtbl[i].name_len);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400513 vol->usable_leb_size = ubi->leb_size - vol->data_pad;
514 memcpy(vol->name, vtbl[i].name, vol->name_len);
515 vol->name[vol->name_len] = '\0';
516 vol->vol_id = i;
517
518 ubi_assert(!ubi->volumes[i]);
519 ubi->volumes[i] = vol;
520 ubi->vol_count += 1;
521 vol->ubi = ubi;
522 reserved_pebs += vol->reserved_pebs;
523
524 /*
525 * In case of dynamic volume UBI knows nothing about how many
526 * data is stored there. So assume the whole volume is used.
527 */
528 if (vol->vol_type == UBI_DYNAMIC_VOLUME) {
529 vol->used_ebs = vol->reserved_pebs;
530 vol->last_eb_bytes = vol->usable_leb_size;
Vinit Agnihotrid08c3b72007-07-10 13:04:59 +0300531 vol->used_bytes =
532 (long long)vol->used_ebs * vol->usable_leb_size;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400533 continue;
534 }
535
536 /* Static volumes only */
537 sv = ubi_scan_find_sv(si, i);
538 if (!sv) {
539 /*
540 * No eraseblocks belonging to this volume found. We
541 * don't actually know whether this static volume is
542 * completely corrupted or just contains no data. And
543 * we cannot know this as long as data size is not
544 * stored on flash. So we just assume the volume is
545 * empty. FIXME: this should be handled.
546 */
547 continue;
548 }
549
550 if (sv->leb_count != sv->used_ebs) {
551 /*
552 * We found a static volume which misses several
553 * eraseblocks. Treat it as corrupted.
554 */
555 ubi_warn("static volume %d misses %d LEBs - corrupted",
556 sv->vol_id, sv->used_ebs - sv->leb_count);
557 vol->corrupted = 1;
558 continue;
559 }
560
561 vol->used_ebs = sv->used_ebs;
Vinit Agnihotrid08c3b72007-07-10 13:04:59 +0300562 vol->used_bytes =
563 (long long)(vol->used_ebs - 1) * vol->usable_leb_size;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400564 vol->used_bytes += sv->last_data_size;
565 vol->last_eb_bytes = sv->last_data_size;
566 }
567
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200568 /* And add the layout volume */
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400569 vol = kzalloc(sizeof(struct ubi_volume), GFP_KERNEL);
570 if (!vol)
571 return -ENOMEM;
572
573 vol->reserved_pebs = UBI_LAYOUT_VOLUME_EBS;
574 vol->alignment = 1;
575 vol->vol_type = UBI_DYNAMIC_VOLUME;
576 vol->name_len = sizeof(UBI_LAYOUT_VOLUME_NAME) - 1;
577 memcpy(vol->name, UBI_LAYOUT_VOLUME_NAME, vol->name_len + 1);
578 vol->usable_leb_size = ubi->leb_size;
579 vol->used_ebs = vol->reserved_pebs;
580 vol->last_eb_bytes = vol->reserved_pebs;
Vinit Agnihotrid08c3b72007-07-10 13:04:59 +0300581 vol->used_bytes =
582 (long long)vol->used_ebs * (ubi->leb_size - vol->data_pad);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400583 vol->vol_id = UBI_LAYOUT_VOL_ID;
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200584 vol->ref_count = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400585
586 ubi_assert(!ubi->volumes[i]);
587 ubi->volumes[vol_id2idx(ubi, vol->vol_id)] = vol;
588 reserved_pebs += vol->reserved_pebs;
589 ubi->vol_count += 1;
590 vol->ubi = ubi;
591
592 if (reserved_pebs > ubi->avail_pebs)
593 ubi_err("not enough PEBs, required %d, available %d",
594 reserved_pebs, ubi->avail_pebs);
595 ubi->rsvd_pebs += reserved_pebs;
596 ubi->avail_pebs -= reserved_pebs;
597
598 return 0;
599}
600
601/**
602 * check_sv - check volume scanning information.
603 * @vol: UBI volume description object
604 * @sv: volume scanning information
605 *
606 * This function returns zero if the volume scanning information is consistent
607 * to the data read from the volume tabla, and %-EINVAL if not.
608 */
609static int check_sv(const struct ubi_volume *vol,
610 const struct ubi_scan_volume *sv)
611{
612 if (sv->highest_lnum >= vol->reserved_pebs) {
613 dbg_err("bad highest_lnum");
614 goto bad;
615 }
616 if (sv->leb_count > vol->reserved_pebs) {
617 dbg_err("bad leb_count");
618 goto bad;
619 }
620 if (sv->vol_type != vol->vol_type) {
621 dbg_err("bad vol_type");
622 goto bad;
623 }
624 if (sv->used_ebs > vol->reserved_pebs) {
625 dbg_err("bad used_ebs");
626 goto bad;
627 }
628 if (sv->data_pad != vol->data_pad) {
629 dbg_err("bad data_pad");
630 goto bad;
631 }
632 return 0;
633
634bad:
635 ubi_err("bad scanning information");
636 ubi_dbg_dump_sv(sv);
637 ubi_dbg_dump_vol_info(vol);
638 return -EINVAL;
639}
640
641/**
642 * check_scanning_info - check that scanning information.
643 * @ubi: UBI device description object
644 * @si: scanning information
645 *
646 * Even though we protect on-flash data by CRC checksums, we still don't trust
647 * the media. This function ensures that scanning information is consistent to
648 * the information read from the volume table. Returns zero if the scanning
649 * information is OK and %-EINVAL if it is not.
650 */
651static int check_scanning_info(const struct ubi_device *ubi,
652 struct ubi_scan_info *si)
653{
654 int err, i;
655 struct ubi_scan_volume *sv;
656 struct ubi_volume *vol;
657
658 if (si->vols_found > UBI_INT_VOL_COUNT + ubi->vtbl_slots) {
659 ubi_err("scanning found %d volumes, maximum is %d + %d",
660 si->vols_found, UBI_INT_VOL_COUNT, ubi->vtbl_slots);
661 return -EINVAL;
662 }
663
664 if (si->highest_vol_id >= ubi->vtbl_slots + UBI_INT_VOL_COUNT&&
665 si->highest_vol_id < UBI_INTERNAL_VOL_START) {
666 ubi_err("too large volume ID %d found by scanning",
667 si->highest_vol_id);
668 return -EINVAL;
669 }
670
671
672 for (i = 0; i < ubi->vtbl_slots + UBI_INT_VOL_COUNT; i++) {
673 cond_resched();
674
675 sv = ubi_scan_find_sv(si, i);
676 vol = ubi->volumes[i];
677 if (!vol) {
678 if (sv)
679 ubi_scan_rm_volume(si, sv);
680 continue;
681 }
682
683 if (vol->reserved_pebs == 0) {
684 ubi_assert(i < ubi->vtbl_slots);
685
686 if (!sv)
687 continue;
688
689 /*
690 * During scanning we found a volume which does not
691 * exist according to the information in the volume
692 * table. This must have happened due to an unclean
693 * reboot while the volume was being removed. Discard
694 * these eraseblocks.
695 */
696 ubi_msg("finish volume %d removal", sv->vol_id);
697 ubi_scan_rm_volume(si, sv);
698 } else if (sv) {
699 err = check_sv(vol, sv);
700 if (err)
701 return err;
702 }
703 }
704
705 return 0;
706}
707
708/**
709 * ubi_read_volume_table - read volume table.
710 * information.
711 * @ubi: UBI device description object
712 * @si: scanning information
713 *
714 * This function reads volume table, checks it, recover from errors if needed,
715 * or creates it if needed. Returns zero in case of success and a negative
716 * error code in case of failure.
717 */
718int ubi_read_volume_table(struct ubi_device *ubi, struct ubi_scan_info *si)
719{
720 int i, err;
721 struct ubi_scan_volume *sv;
722
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300723 empty_vtbl_record.crc = cpu_to_be32(0xf116c36b);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400724
725 /*
726 * The number of supported volumes is limited by the eraseblock size
727 * and by the UBI_MAX_VOLUMES constant.
728 */
729 ubi->vtbl_slots = ubi->leb_size / UBI_VTBL_RECORD_SIZE;
730 if (ubi->vtbl_slots > UBI_MAX_VOLUMES)
731 ubi->vtbl_slots = UBI_MAX_VOLUMES;
732
733 ubi->vtbl_size = ubi->vtbl_slots * UBI_VTBL_RECORD_SIZE;
734 ubi->vtbl_size = ALIGN(ubi->vtbl_size, ubi->min_io_size);
735
736 sv = ubi_scan_find_sv(si, UBI_LAYOUT_VOL_ID);
737 if (!sv) {
738 /*
739 * No logical eraseblocks belonging to the layout volume were
740 * found. This could mean that the flash is just empty. In
741 * this case we create empty layout volume.
742 *
743 * But if flash is not empty this must be a corruption or the
744 * MTD device just contains garbage.
745 */
746 if (si->is_empty) {
747 ubi->vtbl = create_empty_lvol(ubi, si);
748 if (IS_ERR(ubi->vtbl))
749 return PTR_ERR(ubi->vtbl);
750 } else {
751 ubi_err("the layout volume was not found");
752 return -EINVAL;
753 }
754 } else {
755 if (sv->leb_count > UBI_LAYOUT_VOLUME_EBS) {
756 /* This must not happen with proper UBI images */
757 dbg_err("too many LEBs (%d) in layout volume",
758 sv->leb_count);
759 return -EINVAL;
760 }
761
762 ubi->vtbl = process_lvol(ubi, si, sv);
763 if (IS_ERR(ubi->vtbl))
764 return PTR_ERR(ubi->vtbl);
765 }
766
767 ubi->avail_pebs = ubi->good_peb_count;
768
769 /*
770 * The layout volume is OK, initialize the corresponding in-RAM data
771 * structures.
772 */
773 err = init_volumes(ubi, si, ubi->vtbl);
774 if (err)
775 goto out_free;
776
777 /*
778 * Get sure that the scanning information is consistent to the
779 * information stored in the volume table.
780 */
781 err = check_scanning_info(ubi, si);
782 if (err)
783 goto out_free;
784
785 return 0;
786
787out_free:
Artem Bityutskiy92ad8f32007-05-06 16:12:54 +0300788 vfree(ubi->vtbl);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400789 for (i = 0; i < ubi->vtbl_slots + UBI_INT_VOL_COUNT; i++)
790 if (ubi->volumes[i]) {
791 kfree(ubi->volumes[i]);
792 ubi->volumes[i] = NULL;
793 }
794 return err;
795}
796
797#ifdef CONFIG_MTD_UBI_DEBUG_PARANOID
798
799/**
800 * paranoid_vtbl_check - check volume table.
801 * @ubi: UBI device description object
802 */
803static void paranoid_vtbl_check(const struct ubi_device *ubi)
804{
805 if (vtbl_check(ubi, ubi->vtbl)) {
806 ubi_err("paranoid check failed");
807 BUG();
808 }
809}
810
811#endif /* CONFIG_MTD_UBI_DEBUG_PARANOID */