blob: 993716fbf392de8e2305c053495b15c29e0832f3 [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
Heiko Schocher0195a7b2015-10-22 06:19:21 +020021 * full information about the volume and protected by a CRC checksum. Note,
22 * nowadays we use the atomic LEB change operation when updating the volume
23 * table, so we do not really need 2 LEBs anymore, but we preserve the older
24 * design for the backward compatibility reasons.
Kyungmin Parkc91a7192008-11-19 16:28:06 +010025 *
Heiko Schocher0195a7b2015-10-22 06:19:21 +020026 * When the volume table is changed, it is first changed in RAM. Then LEB 0 is
Kyungmin Parkc91a7192008-11-19 16:28:06 +010027 * erased, and the updated volume table is written back to LEB 0. Then same for
28 * LEB 1. This scheme guarantees recoverability from unclean reboots.
29 *
30 * In this UBI implementation the on-flash volume table does not contain any
Heiko Schocherff94bc42014-06-24 10:10:04 +020031 * information about how much data static volumes contain.
Kyungmin Parkc91a7192008-11-19 16:28:06 +010032 *
33 * But it would still be beneficial to store this information in the volume
34 * table. For example, suppose we have a static volume X, and all its physical
35 * eraseblocks became bad for some reasons. Suppose we are attaching the
Heiko Schocherff94bc42014-06-24 10:10:04 +020036 * corresponding MTD device, for some reason we find no logical eraseblocks
Kyungmin Parkc91a7192008-11-19 16:28:06 +010037 * corresponding to the volume X. According to the volume table volume X does
38 * exist. So we don't know whether it is just empty or all its physical
Heiko Schocherff94bc42014-06-24 10:10:04 +020039 * eraseblocks went bad. So we cannot alarm the user properly.
Kyungmin Parkc91a7192008-11-19 16:28:06 +010040 *
41 * The volume table also stores so-called "update marker", which is used for
42 * volume updates. Before updating the volume, the update marker is set, and
43 * after the update operation is finished, the update marker is cleared. So if
44 * the update operation was interrupted (e.g. by an unclean reboot) - the
45 * update marker is still there and we know that the volume's contents is
46 * damaged.
47 */
48
Heiko Schocherff94bc42014-06-24 10:10:04 +020049#ifndef __UBOOT__
Kyungmin Parkc91a7192008-11-19 16:28:06 +010050#include <linux/crc32.h>
51#include <linux/err.h>
Heiko Schocherff94bc42014-06-24 10:10:04 +020052#include <linux/slab.h>
Kyungmin Parkc91a7192008-11-19 16:28:06 +010053#include <asm/div64.h>
Heiko Schocherff94bc42014-06-24 10:10:04 +020054#else
55#include <ubi_uboot.h>
Kyungmin Parkc91a7192008-11-19 16:28:06 +010056#endif
57
Heiko Schocherff94bc42014-06-24 10:10:04 +020058#include <linux/err.h>
Kyungmin Parkc91a7192008-11-19 16:28:06 +010059#include "ubi.h"
60
Heiko Schocherff94bc42014-06-24 10:10:04 +020061static void self_vtbl_check(const struct ubi_device *ubi);
Kyungmin Parkc91a7192008-11-19 16:28:06 +010062
63/* Empty volume table record */
64static struct ubi_vtbl_record empty_vtbl_record;
65
66/**
Heiko Schocher0195a7b2015-10-22 06:19:21 +020067 * ubi_update_layout_vol - helper for updatting layout volumes on flash
68 * @ubi: UBI device description object
69 */
70static int ubi_update_layout_vol(struct ubi_device *ubi)
71{
72 struct ubi_volume *layout_vol;
73 int i, err;
74
75 layout_vol = ubi->volumes[vol_id2idx(ubi, UBI_LAYOUT_VOLUME_ID)];
76 for (i = 0; i < UBI_LAYOUT_VOLUME_EBS; i++) {
77 err = ubi_eba_atomic_leb_change(ubi, layout_vol, i, ubi->vtbl,
78 ubi->vtbl_size);
79 if (err)
80 return err;
81 }
82
83 return 0;
84}
85
86/**
Kyungmin Parkc91a7192008-11-19 16:28:06 +010087 * ubi_change_vtbl_record - change volume table record.
88 * @ubi: UBI device description object
89 * @idx: table index to change
90 * @vtbl_rec: new volume table record
91 *
92 * This function changes volume table record @idx. If @vtbl_rec is %NULL, empty
93 * volume table record is written. The caller does not have to calculate CRC of
94 * the record as it is done by this function. Returns zero in case of success
95 * and a negative error code in case of failure.
96 */
97int ubi_change_vtbl_record(struct ubi_device *ubi, int idx,
98 struct ubi_vtbl_record *vtbl_rec)
99{
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200100 int err;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100101 uint32_t crc;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100102
103 ubi_assert(idx >= 0 && idx < ubi->vtbl_slots);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100104
105 if (!vtbl_rec)
106 vtbl_rec = &empty_vtbl_record;
107 else {
108 crc = crc32(UBI_CRC32_INIT, vtbl_rec, UBI_VTBL_RECORD_SIZE_CRC);
109 vtbl_rec->crc = cpu_to_be32(crc);
110 }
111
112 memcpy(&ubi->vtbl[idx], vtbl_rec, sizeof(struct ubi_vtbl_record));
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200113 err = ubi_update_layout_vol(ubi);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100114
Heiko Schocherff94bc42014-06-24 10:10:04 +0200115 self_vtbl_check(ubi);
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200116 return err ? err : 0;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100117}
118
119/**
Heiko Schocherff94bc42014-06-24 10:10:04 +0200120 * ubi_vtbl_rename_volumes - rename UBI volumes in the volume table.
121 * @ubi: UBI device description object
122 * @rename_list: list of &struct ubi_rename_entry objects
123 *
124 * This function re-names multiple volumes specified in @req in the volume
125 * table. Returns zero in case of success and a negative error code in case of
126 * failure.
127 */
128int ubi_vtbl_rename_volumes(struct ubi_device *ubi,
129 struct list_head *rename_list)
130{
Heiko Schocherff94bc42014-06-24 10:10:04 +0200131 struct ubi_rename_entry *re;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200132
133 list_for_each_entry(re, rename_list, list) {
134 uint32_t crc;
135 struct ubi_volume *vol = re->desc->vol;
136 struct ubi_vtbl_record *vtbl_rec = &ubi->vtbl[vol->vol_id];
137
138 if (re->remove) {
139 memcpy(vtbl_rec, &empty_vtbl_record,
140 sizeof(struct ubi_vtbl_record));
141 continue;
142 }
143
144 vtbl_rec->name_len = cpu_to_be16(re->new_name_len);
145 memcpy(vtbl_rec->name, re->new_name, re->new_name_len);
146 memset(vtbl_rec->name + re->new_name_len, 0,
147 UBI_VOL_NAME_MAX + 1 - re->new_name_len);
148 crc = crc32(UBI_CRC32_INIT, vtbl_rec,
149 UBI_VTBL_RECORD_SIZE_CRC);
150 vtbl_rec->crc = cpu_to_be32(crc);
151 }
152
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200153 return ubi_update_layout_vol(ubi);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200154}
155
156/**
157 * vtbl_check - check if volume table is not corrupted and sensible.
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100158 * @ubi: UBI device description object
159 * @vtbl: volume table
160 *
161 * This function returns zero if @vtbl is all right, %1 if CRC is incorrect,
162 * and %-EINVAL if it contains inconsistent data.
163 */
164static int vtbl_check(const struct ubi_device *ubi,
165 const struct ubi_vtbl_record *vtbl)
166{
167 int i, n, reserved_pebs, alignment, data_pad, vol_type, name_len;
168 int upd_marker, err;
169 uint32_t crc;
170 const char *name;
171
172 for (i = 0; i < ubi->vtbl_slots; i++) {
173 cond_resched();
174
175 reserved_pebs = be32_to_cpu(vtbl[i].reserved_pebs);
176 alignment = be32_to_cpu(vtbl[i].alignment);
177 data_pad = be32_to_cpu(vtbl[i].data_pad);
178 upd_marker = vtbl[i].upd_marker;
179 vol_type = vtbl[i].vol_type;
180 name_len = be16_to_cpu(vtbl[i].name_len);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200181 name = &vtbl[i].name[0];
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100182
183 crc = crc32(UBI_CRC32_INIT, &vtbl[i], UBI_VTBL_RECORD_SIZE_CRC);
184 if (be32_to_cpu(vtbl[i].crc) != crc) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200185 ubi_err(ubi, "bad CRC at record %u: %#08x, not %#08x",
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100186 i, crc, be32_to_cpu(vtbl[i].crc));
Heiko Schocherff94bc42014-06-24 10:10:04 +0200187 ubi_dump_vtbl_record(&vtbl[i], i);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100188 return 1;
189 }
190
191 if (reserved_pebs == 0) {
192 if (memcmp(&vtbl[i], &empty_vtbl_record,
193 UBI_VTBL_RECORD_SIZE)) {
194 err = 2;
195 goto bad;
196 }
197 continue;
198 }
199
200 if (reserved_pebs < 0 || alignment < 0 || data_pad < 0 ||
201 name_len < 0) {
202 err = 3;
203 goto bad;
204 }
205
206 if (alignment > ubi->leb_size || alignment == 0) {
207 err = 4;
208 goto bad;
209 }
210
211 n = alignment & (ubi->min_io_size - 1);
212 if (alignment != 1 && n) {
213 err = 5;
214 goto bad;
215 }
216
217 n = ubi->leb_size % alignment;
218 if (data_pad != n) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200219 ubi_err(ubi, "bad data_pad, has to be %d", n);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100220 err = 6;
221 goto bad;
222 }
223
224 if (vol_type != UBI_VID_DYNAMIC && vol_type != UBI_VID_STATIC) {
225 err = 7;
226 goto bad;
227 }
228
229 if (upd_marker != 0 && upd_marker != 1) {
230 err = 8;
231 goto bad;
232 }
233
234 if (reserved_pebs > ubi->good_peb_count) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200235 ubi_err(ubi, "too large reserved_pebs %d, good PEBs %d",
Heiko Schocherff94bc42014-06-24 10:10:04 +0200236 reserved_pebs, ubi->good_peb_count);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100237 err = 9;
238 goto bad;
239 }
240
241 if (name_len > UBI_VOL_NAME_MAX) {
242 err = 10;
243 goto bad;
244 }
245
246 if (name[0] == '\0') {
247 err = 11;
248 goto bad;
249 }
250
251 if (name_len != strnlen(name, name_len + 1)) {
252 err = 12;
253 goto bad;
254 }
255 }
256
257 /* Checks that all names are unique */
258 for (i = 0; i < ubi->vtbl_slots - 1; i++) {
259 for (n = i + 1; n < ubi->vtbl_slots; n++) {
260 int len1 = be16_to_cpu(vtbl[i].name_len);
261 int len2 = be16_to_cpu(vtbl[n].name_len);
262
263 if (len1 > 0 && len1 == len2 &&
Heiko Schocherff94bc42014-06-24 10:10:04 +0200264#ifndef __UBOOT__
265 !strncmp(vtbl[i].name, vtbl[n].name, len1)) {
266#else
267 !strncmp((char *)vtbl[i].name, vtbl[n].name, len1)) {
268#endif
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200269 ubi_err(ubi, "volumes %d and %d have the same name \"%s\"",
Heiko Schocherff94bc42014-06-24 10:10:04 +0200270 i, n, vtbl[i].name);
271 ubi_dump_vtbl_record(&vtbl[i], i);
272 ubi_dump_vtbl_record(&vtbl[n], n);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100273 return -EINVAL;
274 }
275 }
276 }
277
278 return 0;
279
280bad:
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200281 ubi_err(ubi, "volume table check failed: record %d, error %d", i, err);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200282 ubi_dump_vtbl_record(&vtbl[i], i);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100283 return -EINVAL;
284}
285
286/**
287 * create_vtbl - create a copy of volume table.
288 * @ubi: UBI device description object
Heiko Schocherff94bc42014-06-24 10:10:04 +0200289 * @ai: attaching information
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100290 * @copy: number of the volume table copy
291 * @vtbl: contents of the volume table
292 *
293 * This function returns zero in case of success and a negative error code in
294 * case of failure.
295 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200296static int create_vtbl(struct ubi_device *ubi, struct ubi_attach_info *ai,
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100297 int copy, void *vtbl)
298{
299 int err, tries = 0;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200300 struct ubi_vid_hdr *vid_hdr;
301 struct ubi_ainf_peb *new_aeb;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100302
Heiko Schocherff94bc42014-06-24 10:10:04 +0200303 dbg_gen("create volume table (copy #%d)", copy + 1);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100304
305 vid_hdr = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL);
306 if (!vid_hdr)
307 return -ENOMEM;
308
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100309retry:
Heiko Schocherff94bc42014-06-24 10:10:04 +0200310 new_aeb = ubi_early_get_peb(ubi, ai);
311 if (IS_ERR(new_aeb)) {
312 err = PTR_ERR(new_aeb);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100313 goto out_free;
314 }
315
Heiko Schocherff94bc42014-06-24 10:10:04 +0200316 vid_hdr->vol_type = UBI_LAYOUT_VOLUME_TYPE;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100317 vid_hdr->vol_id = cpu_to_be32(UBI_LAYOUT_VOLUME_ID);
318 vid_hdr->compat = UBI_LAYOUT_VOLUME_COMPAT;
319 vid_hdr->data_size = vid_hdr->used_ebs =
320 vid_hdr->data_pad = cpu_to_be32(0);
321 vid_hdr->lnum = cpu_to_be32(copy);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200322 vid_hdr->sqnum = cpu_to_be64(++ai->max_sqnum);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100323
324 /* The EC header is already there, write the VID header */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200325 err = ubi_io_write_vid_hdr(ubi, new_aeb->pnum, vid_hdr);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100326 if (err)
327 goto write_error;
328
329 /* Write the layout volume contents */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200330 err = ubi_io_write_data(ubi, vtbl, new_aeb->pnum, 0, ubi->vtbl_size);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100331 if (err)
332 goto write_error;
333
334 /*
Heiko Schocherff94bc42014-06-24 10:10:04 +0200335 * And add it to the attaching information. Don't delete the old version
336 * of this LEB as it will be deleted and freed in 'ubi_add_to_av()'.
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100337 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200338 err = ubi_add_to_av(ubi, ai, new_aeb->pnum, new_aeb->ec, vid_hdr, 0);
339 kmem_cache_free(ai->aeb_slab_cache, new_aeb);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100340 ubi_free_vid_hdr(ubi, vid_hdr);
341 return err;
342
343write_error:
344 if (err == -EIO && ++tries <= 5) {
345 /*
346 * Probably this physical eraseblock went bad, try to pick
347 * another one.
348 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200349 list_add(&new_aeb->u.list, &ai->erase);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100350 goto retry;
351 }
Heiko Schocherff94bc42014-06-24 10:10:04 +0200352 kmem_cache_free(ai->aeb_slab_cache, new_aeb);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100353out_free:
354 ubi_free_vid_hdr(ubi, vid_hdr);
355 return err;
356
357}
358
359/**
360 * process_lvol - process the layout volume.
361 * @ubi: UBI device description object
Heiko Schocherff94bc42014-06-24 10:10:04 +0200362 * @ai: attaching information
363 * @av: layout volume attaching information
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100364 *
365 * This function is responsible for reading the layout volume, ensuring it is
366 * not corrupted, and recovering from corruptions if needed. Returns volume
367 * table in case of success and a negative error code in case of failure.
368 */
369static struct ubi_vtbl_record *process_lvol(struct ubi_device *ubi,
Heiko Schocherff94bc42014-06-24 10:10:04 +0200370 struct ubi_attach_info *ai,
371 struct ubi_ainf_volume *av)
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100372{
373 int err;
374 struct rb_node *rb;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200375 struct ubi_ainf_peb *aeb;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100376 struct ubi_vtbl_record *leb[UBI_LAYOUT_VOLUME_EBS] = { NULL, NULL };
377 int leb_corrupted[UBI_LAYOUT_VOLUME_EBS] = {1, 1};
378
379 /*
380 * UBI goes through the following steps when it changes the layout
381 * volume:
382 * a. erase LEB 0;
383 * b. write new data to LEB 0;
384 * c. erase LEB 1;
385 * d. write new data to LEB 1.
386 *
387 * Before the change, both LEBs contain the same data.
388 *
389 * Due to unclean reboots, the contents of LEB 0 may be lost, but there
390 * should LEB 1. So it is OK if LEB 0 is corrupted while LEB 1 is not.
391 * Similarly, LEB 1 may be lost, but there should be LEB 0. And
392 * finally, unclean reboots may result in a situation when neither LEB
393 * 0 nor LEB 1 are corrupted, but they are different. In this case, LEB
394 * 0 contains more recent information.
395 *
396 * So the plan is to first check LEB 0. Then
Heiko Schocherff94bc42014-06-24 10:10:04 +0200397 * a. if LEB 0 is OK, it must be containing the most recent data; then
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100398 * we compare it with LEB 1, and if they are different, we copy LEB
399 * 0 to LEB 1;
400 * b. if LEB 0 is corrupted, but LEB 1 has to be OK, and we copy LEB 1
401 * to LEB 0.
402 */
403
Heiko Schocherff94bc42014-06-24 10:10:04 +0200404 dbg_gen("check layout volume");
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100405
406 /* Read both LEB 0 and LEB 1 into memory */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200407 ubi_rb_for_each_entry(rb, aeb, &av->root, u.rb) {
408 leb[aeb->lnum] = vzalloc(ubi->vtbl_size);
409 if (!leb[aeb->lnum]) {
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100410 err = -ENOMEM;
411 goto out_free;
412 }
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100413
Heiko Schocherff94bc42014-06-24 10:10:04 +0200414 err = ubi_io_read_data(ubi, leb[aeb->lnum], aeb->pnum, 0,
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100415 ubi->vtbl_size);
Sergey Lapindfe64e22013-01-14 03:46:50 +0000416 if (err == UBI_IO_BITFLIPS || mtd_is_eccerr(err))
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100417 /*
418 * Scrub the PEB later. Note, -EBADMSG indicates an
419 * uncorrectable ECC error, but we have our own CRC and
420 * the data will be checked later. If the data is OK,
421 * the PEB will be scrubbed (because we set
Heiko Schocherff94bc42014-06-24 10:10:04 +0200422 * aeb->scrub). If the data is not OK, the contents of
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100423 * the PEB will be recovered from the second copy, and
Heiko Schocherff94bc42014-06-24 10:10:04 +0200424 * aeb->scrub will be cleared in
425 * 'ubi_add_to_av()'.
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100426 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200427 aeb->scrub = 1;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100428 else if (err)
429 goto out_free;
430 }
431
432 err = -EINVAL;
433 if (leb[0]) {
434 leb_corrupted[0] = vtbl_check(ubi, leb[0]);
435 if (leb_corrupted[0] < 0)
436 goto out_free;
437 }
438
439 if (!leb_corrupted[0]) {
440 /* LEB 0 is OK */
441 if (leb[1])
Heiko Schocherff94bc42014-06-24 10:10:04 +0200442 leb_corrupted[1] = memcmp(leb[0], leb[1],
443 ubi->vtbl_size);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100444 if (leb_corrupted[1]) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200445 ubi_warn(ubi, "volume table copy #2 is corrupted");
Heiko Schocherff94bc42014-06-24 10:10:04 +0200446 err = create_vtbl(ubi, ai, 1, leb[0]);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100447 if (err)
448 goto out_free;
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200449 ubi_msg(ubi, "volume table was restored");
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100450 }
451
452 /* Both LEB 1 and LEB 2 are OK and consistent */
453 vfree(leb[1]);
454 return leb[0];
455 } else {
456 /* LEB 0 is corrupted or does not exist */
457 if (leb[1]) {
458 leb_corrupted[1] = vtbl_check(ubi, leb[1]);
459 if (leb_corrupted[1] < 0)
460 goto out_free;
461 }
462 if (leb_corrupted[1]) {
463 /* Both LEB 0 and LEB 1 are corrupted */
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200464 ubi_err(ubi, "both volume tables are corrupted");
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100465 goto out_free;
466 }
467
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200468 ubi_warn(ubi, "volume table copy #1 is corrupted");
Heiko Schocherff94bc42014-06-24 10:10:04 +0200469 err = create_vtbl(ubi, ai, 0, leb[1]);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100470 if (err)
471 goto out_free;
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200472 ubi_msg(ubi, "volume table was restored");
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100473
474 vfree(leb[0]);
475 return leb[1];
476 }
477
478out_free:
479 vfree(leb[0]);
480 vfree(leb[1]);
481 return ERR_PTR(err);
482}
483
484/**
485 * create_empty_lvol - create empty layout volume.
486 * @ubi: UBI device description object
Heiko Schocherff94bc42014-06-24 10:10:04 +0200487 * @ai: attaching information
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100488 *
489 * This function returns volume table contents in case of success and a
490 * negative error code in case of failure.
491 */
492static struct ubi_vtbl_record *create_empty_lvol(struct ubi_device *ubi,
Heiko Schocherff94bc42014-06-24 10:10:04 +0200493 struct ubi_attach_info *ai)
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100494{
495 int i;
496 struct ubi_vtbl_record *vtbl;
497
Heiko Schocherff94bc42014-06-24 10:10:04 +0200498 vtbl = vzalloc(ubi->vtbl_size);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100499 if (!vtbl)
500 return ERR_PTR(-ENOMEM);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100501
502 for (i = 0; i < ubi->vtbl_slots; i++)
503 memcpy(&vtbl[i], &empty_vtbl_record, UBI_VTBL_RECORD_SIZE);
504
505 for (i = 0; i < UBI_LAYOUT_VOLUME_EBS; i++) {
506 int err;
507
Heiko Schocherff94bc42014-06-24 10:10:04 +0200508 err = create_vtbl(ubi, ai, i, vtbl);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100509 if (err) {
510 vfree(vtbl);
511 return ERR_PTR(err);
512 }
513 }
514
515 return vtbl;
516}
517
518/**
519 * init_volumes - initialize volume information for existing volumes.
520 * @ubi: UBI device description object
Heiko Schocherff94bc42014-06-24 10:10:04 +0200521 * @ai: scanning information
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100522 * @vtbl: volume table
523 *
524 * This function allocates volume description objects for existing volumes.
525 * Returns zero in case of success and a negative error code in case of
526 * failure.
527 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200528static int init_volumes(struct ubi_device *ubi,
529 const struct ubi_attach_info *ai,
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100530 const struct ubi_vtbl_record *vtbl)
531{
532 int i, reserved_pebs = 0;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200533 struct ubi_ainf_volume *av;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100534 struct ubi_volume *vol;
535
536 for (i = 0; i < ubi->vtbl_slots; i++) {
537 cond_resched();
538
539 if (be32_to_cpu(vtbl[i].reserved_pebs) == 0)
540 continue; /* Empty record */
541
542 vol = kzalloc(sizeof(struct ubi_volume), GFP_KERNEL);
543 if (!vol)
544 return -ENOMEM;
545
546 vol->reserved_pebs = be32_to_cpu(vtbl[i].reserved_pebs);
547 vol->alignment = be32_to_cpu(vtbl[i].alignment);
548 vol->data_pad = be32_to_cpu(vtbl[i].data_pad);
Peter Hortonceeba002010-06-12 10:11:56 +0900549 vol->upd_marker = vtbl[i].upd_marker;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100550 vol->vol_type = vtbl[i].vol_type == UBI_VID_DYNAMIC ?
551 UBI_DYNAMIC_VOLUME : UBI_STATIC_VOLUME;
552 vol->name_len = be16_to_cpu(vtbl[i].name_len);
553 vol->usable_leb_size = ubi->leb_size - vol->data_pad;
554 memcpy(vol->name, vtbl[i].name, vol->name_len);
555 vol->name[vol->name_len] = '\0';
556 vol->vol_id = i;
557
558 if (vtbl[i].flags & UBI_VTBL_AUTORESIZE_FLG) {
559 /* Auto re-size flag may be set only for one volume */
560 if (ubi->autoresize_vol_id != -1) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200561 ubi_err(ubi, "more than one auto-resize volume (%d and %d)",
Heiko Schocherff94bc42014-06-24 10:10:04 +0200562 ubi->autoresize_vol_id, i);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100563 kfree(vol);
564 return -EINVAL;
565 }
566
567 ubi->autoresize_vol_id = i;
568 }
569
570 ubi_assert(!ubi->volumes[i]);
571 ubi->volumes[i] = vol;
572 ubi->vol_count += 1;
573 vol->ubi = ubi;
574 reserved_pebs += vol->reserved_pebs;
575
576 /*
577 * In case of dynamic volume UBI knows nothing about how many
578 * data is stored there. So assume the whole volume is used.
579 */
580 if (vol->vol_type == UBI_DYNAMIC_VOLUME) {
581 vol->used_ebs = vol->reserved_pebs;
582 vol->last_eb_bytes = vol->usable_leb_size;
583 vol->used_bytes =
584 (long long)vol->used_ebs * vol->usable_leb_size;
585 continue;
586 }
587
588 /* Static volumes only */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200589 av = ubi_find_av(ai, i);
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200590 if (!av || !av->leb_count) {
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100591 /*
592 * No eraseblocks belonging to this volume found. We
593 * don't actually know whether this static volume is
594 * completely corrupted or just contains no data. And
595 * we cannot know this as long as data size is not
596 * stored on flash. So we just assume the volume is
597 * empty. FIXME: this should be handled.
598 */
599 continue;
600 }
601
Heiko Schocherff94bc42014-06-24 10:10:04 +0200602 if (av->leb_count != av->used_ebs) {
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100603 /*
604 * We found a static volume which misses several
605 * eraseblocks. Treat it as corrupted.
606 */
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200607 ubi_warn(ubi, "static volume %d misses %d LEBs - corrupted",
Heiko Schocherff94bc42014-06-24 10:10:04 +0200608 av->vol_id, av->used_ebs - av->leb_count);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100609 vol->corrupted = 1;
610 continue;
611 }
612
Heiko Schocherff94bc42014-06-24 10:10:04 +0200613 vol->used_ebs = av->used_ebs;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100614 vol->used_bytes =
615 (long long)(vol->used_ebs - 1) * vol->usable_leb_size;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200616 vol->used_bytes += av->last_data_size;
617 vol->last_eb_bytes = av->last_data_size;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100618 }
619
620 /* And add the layout volume */
621 vol = kzalloc(sizeof(struct ubi_volume), GFP_KERNEL);
622 if (!vol)
623 return -ENOMEM;
624
625 vol->reserved_pebs = UBI_LAYOUT_VOLUME_EBS;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200626 vol->alignment = UBI_LAYOUT_VOLUME_ALIGN;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100627 vol->vol_type = UBI_DYNAMIC_VOLUME;
628 vol->name_len = sizeof(UBI_LAYOUT_VOLUME_NAME) - 1;
629 memcpy(vol->name, UBI_LAYOUT_VOLUME_NAME, vol->name_len + 1);
630 vol->usable_leb_size = ubi->leb_size;
631 vol->used_ebs = vol->reserved_pebs;
632 vol->last_eb_bytes = vol->reserved_pebs;
633 vol->used_bytes =
634 (long long)vol->used_ebs * (ubi->leb_size - vol->data_pad);
635 vol->vol_id = UBI_LAYOUT_VOLUME_ID;
636 vol->ref_count = 1;
637
638 ubi_assert(!ubi->volumes[i]);
639 ubi->volumes[vol_id2idx(ubi, vol->vol_id)] = vol;
640 reserved_pebs += vol->reserved_pebs;
641 ubi->vol_count += 1;
642 vol->ubi = ubi;
643
Heiko Schocherff94bc42014-06-24 10:10:04 +0200644 if (reserved_pebs > ubi->avail_pebs) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200645 ubi_err(ubi, "not enough PEBs, required %d, available %d",
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100646 reserved_pebs, ubi->avail_pebs);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200647 if (ubi->corr_peb_count)
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200648 ubi_err(ubi, "%d PEBs are corrupted and not used",
Heiko Schocherff94bc42014-06-24 10:10:04 +0200649 ubi->corr_peb_count);
650 }
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100651 ubi->rsvd_pebs += reserved_pebs;
652 ubi->avail_pebs -= reserved_pebs;
653
654 return 0;
655}
656
657/**
Heiko Schocherff94bc42014-06-24 10:10:04 +0200658 * check_av - check volume attaching information.
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100659 * @vol: UBI volume description object
Heiko Schocherff94bc42014-06-24 10:10:04 +0200660 * @av: volume attaching information
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100661 *
Heiko Schocherff94bc42014-06-24 10:10:04 +0200662 * This function returns zero if the volume attaching information is consistent
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100663 * to the data read from the volume tabla, and %-EINVAL if not.
664 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200665static int check_av(const struct ubi_volume *vol,
666 const struct ubi_ainf_volume *av)
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100667{
668 int err;
669
Heiko Schocherff94bc42014-06-24 10:10:04 +0200670 if (av->highest_lnum >= vol->reserved_pebs) {
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100671 err = 1;
672 goto bad;
673 }
Heiko Schocherff94bc42014-06-24 10:10:04 +0200674 if (av->leb_count > vol->reserved_pebs) {
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100675 err = 2;
676 goto bad;
677 }
Heiko Schocherff94bc42014-06-24 10:10:04 +0200678 if (av->vol_type != vol->vol_type) {
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100679 err = 3;
680 goto bad;
681 }
Heiko Schocherff94bc42014-06-24 10:10:04 +0200682 if (av->used_ebs > vol->reserved_pebs) {
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100683 err = 4;
684 goto bad;
685 }
Heiko Schocherff94bc42014-06-24 10:10:04 +0200686 if (av->data_pad != vol->data_pad) {
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100687 err = 5;
688 goto bad;
689 }
690 return 0;
691
692bad:
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200693 ubi_err(vol->ubi, "bad attaching information, error %d", err);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200694 ubi_dump_av(av);
695 ubi_dump_vol_info(vol);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100696 return -EINVAL;
697}
698
699/**
Heiko Schocherff94bc42014-06-24 10:10:04 +0200700 * check_attaching_info - check that attaching information.
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100701 * @ubi: UBI device description object
Heiko Schocherff94bc42014-06-24 10:10:04 +0200702 * @ai: attaching information
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100703 *
704 * Even though we protect on-flash data by CRC checksums, we still don't trust
Heiko Schocherff94bc42014-06-24 10:10:04 +0200705 * the media. This function ensures that attaching information is consistent to
706 * the information read from the volume table. Returns zero if the attaching
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100707 * information is OK and %-EINVAL if it is not.
708 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200709static int check_attaching_info(const struct ubi_device *ubi,
710 struct ubi_attach_info *ai)
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100711{
712 int err, i;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200713 struct ubi_ainf_volume *av;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100714 struct ubi_volume *vol;
715
Heiko Schocherff94bc42014-06-24 10:10:04 +0200716 if (ai->vols_found > UBI_INT_VOL_COUNT + ubi->vtbl_slots) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200717 ubi_err(ubi, "found %d volumes while attaching, maximum is %d + %d",
Heiko Schocherff94bc42014-06-24 10:10:04 +0200718 ai->vols_found, UBI_INT_VOL_COUNT, ubi->vtbl_slots);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100719 return -EINVAL;
720 }
721
Heiko Schocherff94bc42014-06-24 10:10:04 +0200722 if (ai->highest_vol_id >= ubi->vtbl_slots + UBI_INT_VOL_COUNT &&
723 ai->highest_vol_id < UBI_INTERNAL_VOL_START) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200724 ubi_err(ubi, "too large volume ID %d found",
725 ai->highest_vol_id);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100726 return -EINVAL;
727 }
728
729 for (i = 0; i < ubi->vtbl_slots + UBI_INT_VOL_COUNT; i++) {
730 cond_resched();
731
Heiko Schocherff94bc42014-06-24 10:10:04 +0200732 av = ubi_find_av(ai, i);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100733 vol = ubi->volumes[i];
734 if (!vol) {
Heiko Schocherff94bc42014-06-24 10:10:04 +0200735 if (av)
736 ubi_remove_av(ai, av);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100737 continue;
738 }
739
740 if (vol->reserved_pebs == 0) {
741 ubi_assert(i < ubi->vtbl_slots);
742
Heiko Schocherff94bc42014-06-24 10:10:04 +0200743 if (!av)
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100744 continue;
745
746 /*
Heiko Schocherff94bc42014-06-24 10:10:04 +0200747 * During attaching we found a volume which does not
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100748 * exist according to the information in the volume
749 * table. This must have happened due to an unclean
750 * reboot while the volume was being removed. Discard
751 * these eraseblocks.
752 */
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200753 ubi_msg(ubi, "finish volume %d removal", av->vol_id);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200754 ubi_remove_av(ai, av);
755 } else if (av) {
756 err = check_av(vol, av);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100757 if (err)
758 return err;
759 }
760 }
761
762 return 0;
763}
764
765/**
Heiko Schocherff94bc42014-06-24 10:10:04 +0200766 * ubi_read_volume_table - read the volume table.
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100767 * @ubi: UBI device description object
Heiko Schocherff94bc42014-06-24 10:10:04 +0200768 * @ai: attaching information
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100769 *
770 * This function reads volume table, checks it, recover from errors if needed,
771 * or creates it if needed. Returns zero in case of success and a negative
772 * error code in case of failure.
773 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200774int ubi_read_volume_table(struct ubi_device *ubi, struct ubi_attach_info *ai)
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100775{
776 int i, err;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200777 struct ubi_ainf_volume *av;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100778
779 empty_vtbl_record.crc = cpu_to_be32(0xf116c36b);
780
781 /*
782 * The number of supported volumes is limited by the eraseblock size
783 * and by the UBI_MAX_VOLUMES constant.
784 */
785 ubi->vtbl_slots = ubi->leb_size / UBI_VTBL_RECORD_SIZE;
786 if (ubi->vtbl_slots > UBI_MAX_VOLUMES)
787 ubi->vtbl_slots = UBI_MAX_VOLUMES;
788
789 ubi->vtbl_size = ubi->vtbl_slots * UBI_VTBL_RECORD_SIZE;
790 ubi->vtbl_size = ALIGN(ubi->vtbl_size, ubi->min_io_size);
791
Heiko Schocherff94bc42014-06-24 10:10:04 +0200792 av = ubi_find_av(ai, UBI_LAYOUT_VOLUME_ID);
793 if (!av) {
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100794 /*
795 * No logical eraseblocks belonging to the layout volume were
796 * found. This could mean that the flash is just empty. In
797 * this case we create empty layout volume.
798 *
799 * But if flash is not empty this must be a corruption or the
800 * MTD device just contains garbage.
801 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200802 if (ai->is_empty) {
803 ubi->vtbl = create_empty_lvol(ubi, ai);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100804 if (IS_ERR(ubi->vtbl))
805 return PTR_ERR(ubi->vtbl);
806 } else {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200807 ubi_err(ubi, "the layout volume was not found");
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100808 return -EINVAL;
809 }
810 } else {
Heiko Schocherff94bc42014-06-24 10:10:04 +0200811 if (av->leb_count > UBI_LAYOUT_VOLUME_EBS) {
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100812 /* This must not happen with proper UBI images */
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200813 ubi_err(ubi, "too many LEBs (%d) in layout volume",
Heiko Schocherff94bc42014-06-24 10:10:04 +0200814 av->leb_count);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100815 return -EINVAL;
816 }
817
Heiko Schocherff94bc42014-06-24 10:10:04 +0200818 ubi->vtbl = process_lvol(ubi, ai, av);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100819 if (IS_ERR(ubi->vtbl))
820 return PTR_ERR(ubi->vtbl);
821 }
822
Heiko Schocherff94bc42014-06-24 10:10:04 +0200823 ubi->avail_pebs = ubi->good_peb_count - ubi->corr_peb_count;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100824
825 /*
826 * The layout volume is OK, initialize the corresponding in-RAM data
827 * structures.
828 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200829 err = init_volumes(ubi, ai, ubi->vtbl);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100830 if (err)
831 goto out_free;
832
833 /*
Heiko Schocherff94bc42014-06-24 10:10:04 +0200834 * Make sure that the attaching information is consistent to the
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100835 * information stored in the volume table.
836 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200837 err = check_attaching_info(ubi, ai);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100838 if (err)
839 goto out_free;
840
841 return 0;
842
843out_free:
844 vfree(ubi->vtbl);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200845 for (i = 0; i < ubi->vtbl_slots + UBI_INT_VOL_COUNT; i++) {
846 kfree(ubi->volumes[i]);
847 ubi->volumes[i] = NULL;
848 }
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100849 return err;
850}
851
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100852/**
Heiko Schocherff94bc42014-06-24 10:10:04 +0200853 * self_vtbl_check - check volume table.
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100854 * @ubi: UBI device description object
855 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200856static void self_vtbl_check(const struct ubi_device *ubi)
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100857{
Heiko Schocherff94bc42014-06-24 10:10:04 +0200858 if (!ubi_dbg_chk_gen(ubi))
859 return;
860
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100861 if (vtbl_check(ubi, ubi->vtbl)) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200862 ubi_err(ubi, "self-check failed");
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100863 BUG();
864 }
865}