blob: ae8ea38c625ee7b8041b683e0817e12c0d16eba1 [file] [log] [blame]
Kyungmin Parkc91a7192008-11-19 16:28:06 +01001/*
2 * Copyright (c) International Business Machines Corp., 2006
3 * Copyright (c) Nokia Corporation, 2006, 2007
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Kyungmin Parkc91a7192008-11-19 16:28:06 +01006 *
7 * Author: Artem Bityutskiy (Битюцкий Артём)
8 */
9
10/*
11 * This file includes volume table manipulation code. The volume table is an
12 * on-flash table containing volume meta-data like name, number of reserved
13 * physical eraseblocks, type, etc. The volume table is stored in the so-called
14 * "layout volume".
15 *
16 * The layout volume is an internal volume which is organized as follows. It
17 * consists of two logical eraseblocks - LEB 0 and LEB 1. Each logical
18 * eraseblock stores one volume table copy, i.e. LEB 0 and LEB 1 duplicate each
19 * other. This redundancy guarantees robustness to unclean reboots. The volume
20 * table is basically an array of volume table records. Each record contains
21 * full information about the volume and protected by a CRC checksum.
22 *
23 * The volume table is changed, it is first changed in RAM. Then LEB 0 is
24 * erased, and the updated volume table is written back to LEB 0. Then same for
25 * LEB 1. This scheme guarantees recoverability from unclean reboots.
26 *
27 * In this UBI implementation the on-flash volume table does not contain any
Heiko Schocherff94bc42014-06-24 10:10:04 +020028 * information about how much data static volumes contain.
Kyungmin Parkc91a7192008-11-19 16:28:06 +010029 *
30 * But it would still be beneficial to store this information in the volume
31 * table. For example, suppose we have a static volume X, and all its physical
32 * eraseblocks became bad for some reasons. Suppose we are attaching the
Heiko Schocherff94bc42014-06-24 10:10:04 +020033 * corresponding MTD device, for some reason we find no logical eraseblocks
Kyungmin Parkc91a7192008-11-19 16:28:06 +010034 * corresponding to the volume X. According to the volume table volume X does
35 * exist. So we don't know whether it is just empty or all its physical
Heiko Schocherff94bc42014-06-24 10:10:04 +020036 * eraseblocks went bad. So we cannot alarm the user properly.
Kyungmin Parkc91a7192008-11-19 16:28:06 +010037 *
38 * The volume table also stores so-called "update marker", which is used for
39 * volume updates. Before updating the volume, the update marker is set, and
40 * after the update operation is finished, the update marker is cleared. So if
41 * the update operation was interrupted (e.g. by an unclean reboot) - the
42 * update marker is still there and we know that the volume's contents is
43 * damaged.
44 */
45
Heiko Schocherff94bc42014-06-24 10:10:04 +020046#ifndef __UBOOT__
Kyungmin Parkc91a7192008-11-19 16:28:06 +010047#include <linux/crc32.h>
48#include <linux/err.h>
Heiko Schocherff94bc42014-06-24 10:10:04 +020049#include <linux/slab.h>
Kyungmin Parkc91a7192008-11-19 16:28:06 +010050#include <asm/div64.h>
Heiko Schocherff94bc42014-06-24 10:10:04 +020051#else
52#include <ubi_uboot.h>
Kyungmin Parkc91a7192008-11-19 16:28:06 +010053#endif
54
Heiko Schocherff94bc42014-06-24 10:10:04 +020055#include <linux/err.h>
Kyungmin Parkc91a7192008-11-19 16:28:06 +010056#include "ubi.h"
57
Heiko Schocherff94bc42014-06-24 10:10:04 +020058static void self_vtbl_check(const struct ubi_device *ubi);
Kyungmin Parkc91a7192008-11-19 16:28:06 +010059
60/* Empty volume table record */
61static struct ubi_vtbl_record empty_vtbl_record;
62
63/**
64 * ubi_change_vtbl_record - change volume table record.
65 * @ubi: UBI device description object
66 * @idx: table index to change
67 * @vtbl_rec: new volume table record
68 *
69 * This function changes volume table record @idx. If @vtbl_rec is %NULL, empty
70 * volume table record is written. The caller does not have to calculate CRC of
71 * the record as it is done by this function. Returns zero in case of success
72 * and a negative error code in case of failure.
73 */
74int ubi_change_vtbl_record(struct ubi_device *ubi, int idx,
75 struct ubi_vtbl_record *vtbl_rec)
76{
77 int i, err;
78 uint32_t crc;
79 struct ubi_volume *layout_vol;
80
81 ubi_assert(idx >= 0 && idx < ubi->vtbl_slots);
82 layout_vol = ubi->volumes[vol_id2idx(ubi, UBI_LAYOUT_VOLUME_ID)];
83
84 if (!vtbl_rec)
85 vtbl_rec = &empty_vtbl_record;
86 else {
87 crc = crc32(UBI_CRC32_INIT, vtbl_rec, UBI_VTBL_RECORD_SIZE_CRC);
88 vtbl_rec->crc = cpu_to_be32(crc);
89 }
90
91 memcpy(&ubi->vtbl[idx], vtbl_rec, sizeof(struct ubi_vtbl_record));
92 for (i = 0; i < UBI_LAYOUT_VOLUME_EBS; i++) {
93 err = ubi_eba_unmap_leb(ubi, layout_vol, i);
94 if (err)
95 return err;
96
97 err = ubi_eba_write_leb(ubi, layout_vol, i, ubi->vtbl, 0,
Heiko Schocherff94bc42014-06-24 10:10:04 +020098 ubi->vtbl_size);
Kyungmin Parkc91a7192008-11-19 16:28:06 +010099 if (err)
100 return err;
101 }
102
Heiko Schocherff94bc42014-06-24 10:10:04 +0200103 self_vtbl_check(ubi);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100104 return 0;
105}
106
107/**
Heiko Schocherff94bc42014-06-24 10:10:04 +0200108 * ubi_vtbl_rename_volumes - rename UBI volumes in the volume table.
109 * @ubi: UBI device description object
110 * @rename_list: list of &struct ubi_rename_entry objects
111 *
112 * This function re-names multiple volumes specified in @req in the volume
113 * table. Returns zero in case of success and a negative error code in case of
114 * failure.
115 */
116int ubi_vtbl_rename_volumes(struct ubi_device *ubi,
117 struct list_head *rename_list)
118{
119 int i, err;
120 struct ubi_rename_entry *re;
121 struct ubi_volume *layout_vol;
122
123 list_for_each_entry(re, rename_list, list) {
124 uint32_t crc;
125 struct ubi_volume *vol = re->desc->vol;
126 struct ubi_vtbl_record *vtbl_rec = &ubi->vtbl[vol->vol_id];
127
128 if (re->remove) {
129 memcpy(vtbl_rec, &empty_vtbl_record,
130 sizeof(struct ubi_vtbl_record));
131 continue;
132 }
133
134 vtbl_rec->name_len = cpu_to_be16(re->new_name_len);
135 memcpy(vtbl_rec->name, re->new_name, re->new_name_len);
136 memset(vtbl_rec->name + re->new_name_len, 0,
137 UBI_VOL_NAME_MAX + 1 - re->new_name_len);
138 crc = crc32(UBI_CRC32_INIT, vtbl_rec,
139 UBI_VTBL_RECORD_SIZE_CRC);
140 vtbl_rec->crc = cpu_to_be32(crc);
141 }
142
143 layout_vol = ubi->volumes[vol_id2idx(ubi, UBI_LAYOUT_VOLUME_ID)];
144 for (i = 0; i < UBI_LAYOUT_VOLUME_EBS; i++) {
145 err = ubi_eba_unmap_leb(ubi, layout_vol, i);
146 if (err)
147 return err;
148
149 err = ubi_eba_write_leb(ubi, layout_vol, i, ubi->vtbl, 0,
150 ubi->vtbl_size);
151 if (err)
152 return err;
153 }
154
155 return 0;
156}
157
158/**
159 * vtbl_check - check if volume table is not corrupted and sensible.
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100160 * @ubi: UBI device description object
161 * @vtbl: volume table
162 *
163 * This function returns zero if @vtbl is all right, %1 if CRC is incorrect,
164 * and %-EINVAL if it contains inconsistent data.
165 */
166static int vtbl_check(const struct ubi_device *ubi,
167 const struct ubi_vtbl_record *vtbl)
168{
169 int i, n, reserved_pebs, alignment, data_pad, vol_type, name_len;
170 int upd_marker, err;
171 uint32_t crc;
172 const char *name;
173
174 for (i = 0; i < ubi->vtbl_slots; i++) {
175 cond_resched();
176
177 reserved_pebs = be32_to_cpu(vtbl[i].reserved_pebs);
178 alignment = be32_to_cpu(vtbl[i].alignment);
179 data_pad = be32_to_cpu(vtbl[i].data_pad);
180 upd_marker = vtbl[i].upd_marker;
181 vol_type = vtbl[i].vol_type;
182 name_len = be16_to_cpu(vtbl[i].name_len);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200183 name = &vtbl[i].name[0];
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100184
185 crc = crc32(UBI_CRC32_INIT, &vtbl[i], UBI_VTBL_RECORD_SIZE_CRC);
186 if (be32_to_cpu(vtbl[i].crc) != crc) {
187 ubi_err("bad CRC at record %u: %#08x, not %#08x",
188 i, crc, be32_to_cpu(vtbl[i].crc));
Heiko Schocherff94bc42014-06-24 10:10:04 +0200189 ubi_dump_vtbl_record(&vtbl[i], i);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100190 return 1;
191 }
192
193 if (reserved_pebs == 0) {
194 if (memcmp(&vtbl[i], &empty_vtbl_record,
195 UBI_VTBL_RECORD_SIZE)) {
196 err = 2;
197 goto bad;
198 }
199 continue;
200 }
201
202 if (reserved_pebs < 0 || alignment < 0 || data_pad < 0 ||
203 name_len < 0) {
204 err = 3;
205 goto bad;
206 }
207
208 if (alignment > ubi->leb_size || alignment == 0) {
209 err = 4;
210 goto bad;
211 }
212
213 n = alignment & (ubi->min_io_size - 1);
214 if (alignment != 1 && n) {
215 err = 5;
216 goto bad;
217 }
218
219 n = ubi->leb_size % alignment;
220 if (data_pad != n) {
Heiko Schocherff94bc42014-06-24 10:10:04 +0200221 ubi_err("bad data_pad, has to be %d", n);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100222 err = 6;
223 goto bad;
224 }
225
226 if (vol_type != UBI_VID_DYNAMIC && vol_type != UBI_VID_STATIC) {
227 err = 7;
228 goto bad;
229 }
230
231 if (upd_marker != 0 && upd_marker != 1) {
232 err = 8;
233 goto bad;
234 }
235
236 if (reserved_pebs > ubi->good_peb_count) {
Heiko Schocherff94bc42014-06-24 10:10:04 +0200237 ubi_err("too large reserved_pebs %d, good PEBs %d",
238 reserved_pebs, ubi->good_peb_count);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100239 err = 9;
240 goto bad;
241 }
242
243 if (name_len > UBI_VOL_NAME_MAX) {
244 err = 10;
245 goto bad;
246 }
247
248 if (name[0] == '\0') {
249 err = 11;
250 goto bad;
251 }
252
253 if (name_len != strnlen(name, name_len + 1)) {
254 err = 12;
255 goto bad;
256 }
257 }
258
259 /* Checks that all names are unique */
260 for (i = 0; i < ubi->vtbl_slots - 1; i++) {
261 for (n = i + 1; n < ubi->vtbl_slots; n++) {
262 int len1 = be16_to_cpu(vtbl[i].name_len);
263 int len2 = be16_to_cpu(vtbl[n].name_len);
264
265 if (len1 > 0 && len1 == len2 &&
Heiko Schocherff94bc42014-06-24 10:10:04 +0200266#ifndef __UBOOT__
267 !strncmp(vtbl[i].name, vtbl[n].name, len1)) {
268#else
269 !strncmp((char *)vtbl[i].name, vtbl[n].name, len1)) {
270#endif
271 ubi_err("volumes %d and %d have the same name \"%s\"",
272 i, n, vtbl[i].name);
273 ubi_dump_vtbl_record(&vtbl[i], i);
274 ubi_dump_vtbl_record(&vtbl[n], n);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100275 return -EINVAL;
276 }
277 }
278 }
279
280 return 0;
281
282bad:
283 ubi_err("volume table check failed: record %d, error %d", i, err);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200284 ubi_dump_vtbl_record(&vtbl[i], i);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100285 return -EINVAL;
286}
287
288/**
289 * create_vtbl - create a copy of volume table.
290 * @ubi: UBI device description object
Heiko Schocherff94bc42014-06-24 10:10:04 +0200291 * @ai: attaching information
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100292 * @copy: number of the volume table copy
293 * @vtbl: contents of the volume table
294 *
295 * This function returns zero in case of success and a negative error code in
296 * case of failure.
297 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200298static int create_vtbl(struct ubi_device *ubi, struct ubi_attach_info *ai,
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100299 int copy, void *vtbl)
300{
301 int err, tries = 0;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200302 struct ubi_vid_hdr *vid_hdr;
303 struct ubi_ainf_peb *new_aeb;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100304
Heiko Schocherff94bc42014-06-24 10:10:04 +0200305 dbg_gen("create volume table (copy #%d)", copy + 1);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100306
307 vid_hdr = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL);
308 if (!vid_hdr)
309 return -ENOMEM;
310
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100311retry:
Heiko Schocherff94bc42014-06-24 10:10:04 +0200312 new_aeb = ubi_early_get_peb(ubi, ai);
313 if (IS_ERR(new_aeb)) {
314 err = PTR_ERR(new_aeb);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100315 goto out_free;
316 }
317
Heiko Schocherff94bc42014-06-24 10:10:04 +0200318 vid_hdr->vol_type = UBI_LAYOUT_VOLUME_TYPE;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100319 vid_hdr->vol_id = cpu_to_be32(UBI_LAYOUT_VOLUME_ID);
320 vid_hdr->compat = UBI_LAYOUT_VOLUME_COMPAT;
321 vid_hdr->data_size = vid_hdr->used_ebs =
322 vid_hdr->data_pad = cpu_to_be32(0);
323 vid_hdr->lnum = cpu_to_be32(copy);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200324 vid_hdr->sqnum = cpu_to_be64(++ai->max_sqnum);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100325
326 /* The EC header is already there, write the VID header */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200327 err = ubi_io_write_vid_hdr(ubi, new_aeb->pnum, vid_hdr);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100328 if (err)
329 goto write_error;
330
331 /* Write the layout volume contents */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200332 err = ubi_io_write_data(ubi, vtbl, new_aeb->pnum, 0, ubi->vtbl_size);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100333 if (err)
334 goto write_error;
335
336 /*
Heiko Schocherff94bc42014-06-24 10:10:04 +0200337 * And add it to the attaching information. Don't delete the old version
338 * of this LEB as it will be deleted and freed in 'ubi_add_to_av()'.
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100339 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200340 err = ubi_add_to_av(ubi, ai, new_aeb->pnum, new_aeb->ec, vid_hdr, 0);
341 kmem_cache_free(ai->aeb_slab_cache, new_aeb);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100342 ubi_free_vid_hdr(ubi, vid_hdr);
343 return err;
344
345write_error:
346 if (err == -EIO && ++tries <= 5) {
347 /*
348 * Probably this physical eraseblock went bad, try to pick
349 * another one.
350 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200351 list_add(&new_aeb->u.list, &ai->erase);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100352 goto retry;
353 }
Heiko Schocherff94bc42014-06-24 10:10:04 +0200354 kmem_cache_free(ai->aeb_slab_cache, new_aeb);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100355out_free:
356 ubi_free_vid_hdr(ubi, vid_hdr);
357 return err;
358
359}
360
361/**
362 * process_lvol - process the layout volume.
363 * @ubi: UBI device description object
Heiko Schocherff94bc42014-06-24 10:10:04 +0200364 * @ai: attaching information
365 * @av: layout volume attaching information
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100366 *
367 * This function is responsible for reading the layout volume, ensuring it is
368 * not corrupted, and recovering from corruptions if needed. Returns volume
369 * table in case of success and a negative error code in case of failure.
370 */
371static struct ubi_vtbl_record *process_lvol(struct ubi_device *ubi,
Heiko Schocherff94bc42014-06-24 10:10:04 +0200372 struct ubi_attach_info *ai,
373 struct ubi_ainf_volume *av)
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100374{
375 int err;
376 struct rb_node *rb;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200377 struct ubi_ainf_peb *aeb;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100378 struct ubi_vtbl_record *leb[UBI_LAYOUT_VOLUME_EBS] = { NULL, NULL };
379 int leb_corrupted[UBI_LAYOUT_VOLUME_EBS] = {1, 1};
380
381 /*
382 * UBI goes through the following steps when it changes the layout
383 * volume:
384 * a. erase LEB 0;
385 * b. write new data to LEB 0;
386 * c. erase LEB 1;
387 * d. write new data to LEB 1.
388 *
389 * Before the change, both LEBs contain the same data.
390 *
391 * Due to unclean reboots, the contents of LEB 0 may be lost, but there
392 * should LEB 1. So it is OK if LEB 0 is corrupted while LEB 1 is not.
393 * Similarly, LEB 1 may be lost, but there should be LEB 0. And
394 * finally, unclean reboots may result in a situation when neither LEB
395 * 0 nor LEB 1 are corrupted, but they are different. In this case, LEB
396 * 0 contains more recent information.
397 *
398 * So the plan is to first check LEB 0. Then
Heiko Schocherff94bc42014-06-24 10:10:04 +0200399 * a. if LEB 0 is OK, it must be containing the most recent data; then
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100400 * we compare it with LEB 1, and if they are different, we copy LEB
401 * 0 to LEB 1;
402 * b. if LEB 0 is corrupted, but LEB 1 has to be OK, and we copy LEB 1
403 * to LEB 0.
404 */
405
Heiko Schocherff94bc42014-06-24 10:10:04 +0200406 dbg_gen("check layout volume");
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100407
408 /* Read both LEB 0 and LEB 1 into memory */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200409 ubi_rb_for_each_entry(rb, aeb, &av->root, u.rb) {
410 leb[aeb->lnum] = vzalloc(ubi->vtbl_size);
411 if (!leb[aeb->lnum]) {
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100412 err = -ENOMEM;
413 goto out_free;
414 }
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100415
Heiko Schocherff94bc42014-06-24 10:10:04 +0200416 err = ubi_io_read_data(ubi, leb[aeb->lnum], aeb->pnum, 0,
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100417 ubi->vtbl_size);
Sergey Lapindfe64e22013-01-14 03:46:50 +0000418 if (err == UBI_IO_BITFLIPS || mtd_is_eccerr(err))
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100419 /*
420 * Scrub the PEB later. Note, -EBADMSG indicates an
421 * uncorrectable ECC error, but we have our own CRC and
422 * the data will be checked later. If the data is OK,
423 * the PEB will be scrubbed (because we set
Heiko Schocherff94bc42014-06-24 10:10:04 +0200424 * aeb->scrub). If the data is not OK, the contents of
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100425 * the PEB will be recovered from the second copy, and
Heiko Schocherff94bc42014-06-24 10:10:04 +0200426 * aeb->scrub will be cleared in
427 * 'ubi_add_to_av()'.
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100428 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200429 aeb->scrub = 1;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100430 else if (err)
431 goto out_free;
432 }
433
434 err = -EINVAL;
435 if (leb[0]) {
436 leb_corrupted[0] = vtbl_check(ubi, leb[0]);
437 if (leb_corrupted[0] < 0)
438 goto out_free;
439 }
440
441 if (!leb_corrupted[0]) {
442 /* LEB 0 is OK */
443 if (leb[1])
Heiko Schocherff94bc42014-06-24 10:10:04 +0200444 leb_corrupted[1] = memcmp(leb[0], leb[1],
445 ubi->vtbl_size);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100446 if (leb_corrupted[1]) {
447 ubi_warn("volume table copy #2 is corrupted");
Heiko Schocherff94bc42014-06-24 10:10:04 +0200448 err = create_vtbl(ubi, ai, 1, leb[0]);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100449 if (err)
450 goto out_free;
451 ubi_msg("volume table was restored");
452 }
453
454 /* Both LEB 1 and LEB 2 are OK and consistent */
455 vfree(leb[1]);
456 return leb[0];
457 } else {
458 /* LEB 0 is corrupted or does not exist */
459 if (leb[1]) {
460 leb_corrupted[1] = vtbl_check(ubi, leb[1]);
461 if (leb_corrupted[1] < 0)
462 goto out_free;
463 }
464 if (leb_corrupted[1]) {
465 /* Both LEB 0 and LEB 1 are corrupted */
466 ubi_err("both volume tables are corrupted");
467 goto out_free;
468 }
469
470 ubi_warn("volume table copy #1 is corrupted");
Heiko Schocherff94bc42014-06-24 10:10:04 +0200471 err = create_vtbl(ubi, ai, 0, leb[1]);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100472 if (err)
473 goto out_free;
474 ubi_msg("volume table was restored");
475
476 vfree(leb[0]);
477 return leb[1];
478 }
479
480out_free:
481 vfree(leb[0]);
482 vfree(leb[1]);
483 return ERR_PTR(err);
484}
485
486/**
487 * create_empty_lvol - create empty layout volume.
488 * @ubi: UBI device description object
Heiko Schocherff94bc42014-06-24 10:10:04 +0200489 * @ai: attaching information
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100490 *
491 * This function returns volume table contents in case of success and a
492 * negative error code in case of failure.
493 */
494static struct ubi_vtbl_record *create_empty_lvol(struct ubi_device *ubi,
Heiko Schocherff94bc42014-06-24 10:10:04 +0200495 struct ubi_attach_info *ai)
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100496{
497 int i;
498 struct ubi_vtbl_record *vtbl;
499
Heiko Schocherff94bc42014-06-24 10:10:04 +0200500 vtbl = vzalloc(ubi->vtbl_size);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100501 if (!vtbl)
502 return ERR_PTR(-ENOMEM);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100503
504 for (i = 0; i < ubi->vtbl_slots; i++)
505 memcpy(&vtbl[i], &empty_vtbl_record, UBI_VTBL_RECORD_SIZE);
506
507 for (i = 0; i < UBI_LAYOUT_VOLUME_EBS; i++) {
508 int err;
509
Heiko Schocherff94bc42014-06-24 10:10:04 +0200510 err = create_vtbl(ubi, ai, i, vtbl);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100511 if (err) {
512 vfree(vtbl);
513 return ERR_PTR(err);
514 }
515 }
516
517 return vtbl;
518}
519
520/**
521 * init_volumes - initialize volume information for existing volumes.
522 * @ubi: UBI device description object
Heiko Schocherff94bc42014-06-24 10:10:04 +0200523 * @ai: scanning information
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100524 * @vtbl: volume table
525 *
526 * This function allocates volume description objects for existing volumes.
527 * Returns zero in case of success and a negative error code in case of
528 * failure.
529 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200530static int init_volumes(struct ubi_device *ubi,
531 const struct ubi_attach_info *ai,
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100532 const struct ubi_vtbl_record *vtbl)
533{
534 int i, reserved_pebs = 0;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200535 struct ubi_ainf_volume *av;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100536 struct ubi_volume *vol;
537
538 for (i = 0; i < ubi->vtbl_slots; i++) {
539 cond_resched();
540
541 if (be32_to_cpu(vtbl[i].reserved_pebs) == 0)
542 continue; /* Empty record */
543
544 vol = kzalloc(sizeof(struct ubi_volume), GFP_KERNEL);
545 if (!vol)
546 return -ENOMEM;
547
548 vol->reserved_pebs = be32_to_cpu(vtbl[i].reserved_pebs);
549 vol->alignment = be32_to_cpu(vtbl[i].alignment);
550 vol->data_pad = be32_to_cpu(vtbl[i].data_pad);
Peter Hortonceeba002010-06-12 10:11:56 +0900551 vol->upd_marker = vtbl[i].upd_marker;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100552 vol->vol_type = vtbl[i].vol_type == UBI_VID_DYNAMIC ?
553 UBI_DYNAMIC_VOLUME : UBI_STATIC_VOLUME;
554 vol->name_len = be16_to_cpu(vtbl[i].name_len);
555 vol->usable_leb_size = ubi->leb_size - vol->data_pad;
556 memcpy(vol->name, vtbl[i].name, vol->name_len);
557 vol->name[vol->name_len] = '\0';
558 vol->vol_id = i;
559
560 if (vtbl[i].flags & UBI_VTBL_AUTORESIZE_FLG) {
561 /* Auto re-size flag may be set only for one volume */
562 if (ubi->autoresize_vol_id != -1) {
Heiko Schocherff94bc42014-06-24 10:10:04 +0200563 ubi_err("more than one auto-resize volume (%d and %d)",
564 ubi->autoresize_vol_id, i);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100565 kfree(vol);
566 return -EINVAL;
567 }
568
569 ubi->autoresize_vol_id = i;
570 }
571
572 ubi_assert(!ubi->volumes[i]);
573 ubi->volumes[i] = vol;
574 ubi->vol_count += 1;
575 vol->ubi = ubi;
576 reserved_pebs += vol->reserved_pebs;
577
578 /*
579 * In case of dynamic volume UBI knows nothing about how many
580 * data is stored there. So assume the whole volume is used.
581 */
582 if (vol->vol_type == UBI_DYNAMIC_VOLUME) {
583 vol->used_ebs = vol->reserved_pebs;
584 vol->last_eb_bytes = vol->usable_leb_size;
585 vol->used_bytes =
586 (long long)vol->used_ebs * vol->usable_leb_size;
587 continue;
588 }
589
590 /* Static volumes only */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200591 av = ubi_find_av(ai, i);
592 if (!av) {
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100593 /*
594 * No eraseblocks belonging to this volume found. We
595 * don't actually know whether this static volume is
596 * completely corrupted or just contains no data. And
597 * we cannot know this as long as data size is not
598 * stored on flash. So we just assume the volume is
599 * empty. FIXME: this should be handled.
600 */
601 continue;
602 }
603
Heiko Schocherff94bc42014-06-24 10:10:04 +0200604 if (av->leb_count != av->used_ebs) {
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100605 /*
606 * We found a static volume which misses several
607 * eraseblocks. Treat it as corrupted.
608 */
609 ubi_warn("static volume %d misses %d LEBs - corrupted",
Heiko Schocherff94bc42014-06-24 10:10:04 +0200610 av->vol_id, av->used_ebs - av->leb_count);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100611 vol->corrupted = 1;
612 continue;
613 }
614
Heiko Schocherff94bc42014-06-24 10:10:04 +0200615 vol->used_ebs = av->used_ebs;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100616 vol->used_bytes =
617 (long long)(vol->used_ebs - 1) * vol->usable_leb_size;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200618 vol->used_bytes += av->last_data_size;
619 vol->last_eb_bytes = av->last_data_size;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100620 }
621
622 /* And add the layout volume */
623 vol = kzalloc(sizeof(struct ubi_volume), GFP_KERNEL);
624 if (!vol)
625 return -ENOMEM;
626
627 vol->reserved_pebs = UBI_LAYOUT_VOLUME_EBS;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200628 vol->alignment = UBI_LAYOUT_VOLUME_ALIGN;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100629 vol->vol_type = UBI_DYNAMIC_VOLUME;
630 vol->name_len = sizeof(UBI_LAYOUT_VOLUME_NAME) - 1;
631 memcpy(vol->name, UBI_LAYOUT_VOLUME_NAME, vol->name_len + 1);
632 vol->usable_leb_size = ubi->leb_size;
633 vol->used_ebs = vol->reserved_pebs;
634 vol->last_eb_bytes = vol->reserved_pebs;
635 vol->used_bytes =
636 (long long)vol->used_ebs * (ubi->leb_size - vol->data_pad);
637 vol->vol_id = UBI_LAYOUT_VOLUME_ID;
638 vol->ref_count = 1;
639
640 ubi_assert(!ubi->volumes[i]);
641 ubi->volumes[vol_id2idx(ubi, vol->vol_id)] = vol;
642 reserved_pebs += vol->reserved_pebs;
643 ubi->vol_count += 1;
644 vol->ubi = ubi;
645
Heiko Schocherff94bc42014-06-24 10:10:04 +0200646 if (reserved_pebs > ubi->avail_pebs) {
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100647 ubi_err("not enough PEBs, required %d, available %d",
648 reserved_pebs, ubi->avail_pebs);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200649 if (ubi->corr_peb_count)
650 ubi_err("%d PEBs are corrupted and not used",
651 ubi->corr_peb_count);
652 }
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100653 ubi->rsvd_pebs += reserved_pebs;
654 ubi->avail_pebs -= reserved_pebs;
655
656 return 0;
657}
658
659/**
Heiko Schocherff94bc42014-06-24 10:10:04 +0200660 * check_av - check volume attaching information.
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100661 * @vol: UBI volume description object
Heiko Schocherff94bc42014-06-24 10:10:04 +0200662 * @av: volume attaching information
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100663 *
Heiko Schocherff94bc42014-06-24 10:10:04 +0200664 * This function returns zero if the volume attaching information is consistent
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100665 * to the data read from the volume tabla, and %-EINVAL if not.
666 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200667static int check_av(const struct ubi_volume *vol,
668 const struct ubi_ainf_volume *av)
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100669{
670 int err;
671
Heiko Schocherff94bc42014-06-24 10:10:04 +0200672 if (av->highest_lnum >= vol->reserved_pebs) {
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100673 err = 1;
674 goto bad;
675 }
Heiko Schocherff94bc42014-06-24 10:10:04 +0200676 if (av->leb_count > vol->reserved_pebs) {
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100677 err = 2;
678 goto bad;
679 }
Heiko Schocherff94bc42014-06-24 10:10:04 +0200680 if (av->vol_type != vol->vol_type) {
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100681 err = 3;
682 goto bad;
683 }
Heiko Schocherff94bc42014-06-24 10:10:04 +0200684 if (av->used_ebs > vol->reserved_pebs) {
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100685 err = 4;
686 goto bad;
687 }
Heiko Schocherff94bc42014-06-24 10:10:04 +0200688 if (av->data_pad != vol->data_pad) {
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100689 err = 5;
690 goto bad;
691 }
692 return 0;
693
694bad:
Heiko Schocherff94bc42014-06-24 10:10:04 +0200695 ubi_err("bad attaching information, error %d", err);
696 ubi_dump_av(av);
697 ubi_dump_vol_info(vol);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100698 return -EINVAL;
699}
700
701/**
Heiko Schocherff94bc42014-06-24 10:10:04 +0200702 * check_attaching_info - check that attaching information.
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100703 * @ubi: UBI device description object
Heiko Schocherff94bc42014-06-24 10:10:04 +0200704 * @ai: attaching information
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100705 *
706 * Even though we protect on-flash data by CRC checksums, we still don't trust
Heiko Schocherff94bc42014-06-24 10:10:04 +0200707 * the media. This function ensures that attaching information is consistent to
708 * the information read from the volume table. Returns zero if the attaching
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100709 * information is OK and %-EINVAL if it is not.
710 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200711static int check_attaching_info(const struct ubi_device *ubi,
712 struct ubi_attach_info *ai)
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100713{
714 int err, i;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200715 struct ubi_ainf_volume *av;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100716 struct ubi_volume *vol;
717
Heiko Schocherff94bc42014-06-24 10:10:04 +0200718 if (ai->vols_found > UBI_INT_VOL_COUNT + ubi->vtbl_slots) {
719 ubi_err("found %d volumes while attaching, maximum is %d + %d",
720 ai->vols_found, UBI_INT_VOL_COUNT, ubi->vtbl_slots);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100721 return -EINVAL;
722 }
723
Heiko Schocherff94bc42014-06-24 10:10:04 +0200724 if (ai->highest_vol_id >= ubi->vtbl_slots + UBI_INT_VOL_COUNT &&
725 ai->highest_vol_id < UBI_INTERNAL_VOL_START) {
726 ubi_err("too large volume ID %d found", ai->highest_vol_id);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100727 return -EINVAL;
728 }
729
730 for (i = 0; i < ubi->vtbl_slots + UBI_INT_VOL_COUNT; i++) {
731 cond_resched();
732
Heiko Schocherff94bc42014-06-24 10:10:04 +0200733 av = ubi_find_av(ai, i);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100734 vol = ubi->volumes[i];
735 if (!vol) {
Heiko Schocherff94bc42014-06-24 10:10:04 +0200736 if (av)
737 ubi_remove_av(ai, av);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100738 continue;
739 }
740
741 if (vol->reserved_pebs == 0) {
742 ubi_assert(i < ubi->vtbl_slots);
743
Heiko Schocherff94bc42014-06-24 10:10:04 +0200744 if (!av)
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100745 continue;
746
747 /*
Heiko Schocherff94bc42014-06-24 10:10:04 +0200748 * During attaching we found a volume which does not
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100749 * exist according to the information in the volume
750 * table. This must have happened due to an unclean
751 * reboot while the volume was being removed. Discard
752 * these eraseblocks.
753 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200754 ubi_msg("finish volume %d removal", av->vol_id);
755 ubi_remove_av(ai, av);
756 } else if (av) {
757 err = check_av(vol, av);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100758 if (err)
759 return err;
760 }
761 }
762
763 return 0;
764}
765
766/**
Heiko Schocherff94bc42014-06-24 10:10:04 +0200767 * ubi_read_volume_table - read the volume table.
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100768 * @ubi: UBI device description object
Heiko Schocherff94bc42014-06-24 10:10:04 +0200769 * @ai: attaching information
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100770 *
771 * This function reads volume table, checks it, recover from errors if needed,
772 * or creates it if needed. Returns zero in case of success and a negative
773 * error code in case of failure.
774 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200775int ubi_read_volume_table(struct ubi_device *ubi, struct ubi_attach_info *ai)
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100776{
777 int i, err;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200778 struct ubi_ainf_volume *av;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100779
780 empty_vtbl_record.crc = cpu_to_be32(0xf116c36b);
781
782 /*
783 * The number of supported volumes is limited by the eraseblock size
784 * and by the UBI_MAX_VOLUMES constant.
785 */
786 ubi->vtbl_slots = ubi->leb_size / UBI_VTBL_RECORD_SIZE;
787 if (ubi->vtbl_slots > UBI_MAX_VOLUMES)
788 ubi->vtbl_slots = UBI_MAX_VOLUMES;
789
790 ubi->vtbl_size = ubi->vtbl_slots * UBI_VTBL_RECORD_SIZE;
791 ubi->vtbl_size = ALIGN(ubi->vtbl_size, ubi->min_io_size);
792
Heiko Schocherff94bc42014-06-24 10:10:04 +0200793 av = ubi_find_av(ai, UBI_LAYOUT_VOLUME_ID);
794 if (!av) {
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100795 /*
796 * No logical eraseblocks belonging to the layout volume were
797 * found. This could mean that the flash is just empty. In
798 * this case we create empty layout volume.
799 *
800 * But if flash is not empty this must be a corruption or the
801 * MTD device just contains garbage.
802 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200803 if (ai->is_empty) {
804 ubi->vtbl = create_empty_lvol(ubi, ai);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100805 if (IS_ERR(ubi->vtbl))
806 return PTR_ERR(ubi->vtbl);
807 } else {
808 ubi_err("the layout volume was not found");
809 return -EINVAL;
810 }
811 } else {
Heiko Schocherff94bc42014-06-24 10:10:04 +0200812 if (av->leb_count > UBI_LAYOUT_VOLUME_EBS) {
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100813 /* This must not happen with proper UBI images */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200814 ubi_err("too many LEBs (%d) in layout volume",
815 av->leb_count);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100816 return -EINVAL;
817 }
818
Heiko Schocherff94bc42014-06-24 10:10:04 +0200819 ubi->vtbl = process_lvol(ubi, ai, av);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100820 if (IS_ERR(ubi->vtbl))
821 return PTR_ERR(ubi->vtbl);
822 }
823
Heiko Schocherff94bc42014-06-24 10:10:04 +0200824 ubi->avail_pebs = ubi->good_peb_count - ubi->corr_peb_count;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100825
826 /*
827 * The layout volume is OK, initialize the corresponding in-RAM data
828 * structures.
829 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200830 err = init_volumes(ubi, ai, ubi->vtbl);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100831 if (err)
832 goto out_free;
833
834 /*
Heiko Schocherff94bc42014-06-24 10:10:04 +0200835 * Make sure that the attaching information is consistent to the
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100836 * information stored in the volume table.
837 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200838 err = check_attaching_info(ubi, ai);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100839 if (err)
840 goto out_free;
841
842 return 0;
843
844out_free:
845 vfree(ubi->vtbl);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200846 for (i = 0; i < ubi->vtbl_slots + UBI_INT_VOL_COUNT; i++) {
847 kfree(ubi->volumes[i]);
848 ubi->volumes[i] = NULL;
849 }
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100850 return err;
851}
852
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100853/**
Heiko Schocherff94bc42014-06-24 10:10:04 +0200854 * self_vtbl_check - check volume table.
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100855 * @ubi: UBI device description object
856 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200857static void self_vtbl_check(const struct ubi_device *ubi)
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100858{
Heiko Schocherff94bc42014-06-24 10:10:04 +0200859 if (!ubi_dbg_chk_gen(ubi))
860 return;
861
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100862 if (vtbl_check(ubi, ubi->vtbl)) {
Heiko Schocherff94bc42014-06-24 10:10:04 +0200863 ubi_err("self-check failed");
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100864 BUG();
865 }
866}