blob: fb535c1a878044bb10547bdeffbc611f3c5b5404 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Kyungmin Park7f88f002008-11-19 16:28:06 +01002/*
3 * Copyright (c) International Business Machines Corp., 2006
4 * Copyright (c) Nokia Corporation, 2006, 2007
5 *
Kyungmin Park7f88f002008-11-19 16:28:06 +01006 * Author: Artem Bityutskiy (Битюцкий Артём)
7 */
8
9/*
10 * This file includes volume table manipulation code. The volume table is an
11 * on-flash table containing volume meta-data like name, number of reserved
12 * physical eraseblocks, type, etc. The volume table is stored in the so-called
13 * "layout volume".
14 *
15 * The layout volume is an internal volume which is organized as follows. It
16 * consists of two logical eraseblocks - LEB 0 and LEB 1. Each logical
17 * eraseblock stores one volume table copy, i.e. LEB 0 and LEB 1 duplicate each
18 * other. This redundancy guarantees robustness to unclean reboots. The volume
19 * table is basically an array of volume table records. Each record contains
Heiko Schocher94b66de2015-10-22 06:19:21 +020020 * full information about the volume and protected by a CRC checksum. Note,
21 * nowadays we use the atomic LEB change operation when updating the volume
22 * table, so we do not really need 2 LEBs anymore, but we preserve the older
23 * design for the backward compatibility reasons.
Kyungmin Park7f88f002008-11-19 16:28:06 +010024 *
Heiko Schocher94b66de2015-10-22 06:19:21 +020025 * When the volume table is changed, it is first changed in RAM. Then LEB 0 is
Kyungmin Park7f88f002008-11-19 16:28:06 +010026 * erased, and the updated volume table is written back to LEB 0. Then same for
27 * LEB 1. This scheme guarantees recoverability from unclean reboots.
28 *
29 * In this UBI implementation the on-flash volume table does not contain any
Heiko Schocherf5895d12014-06-24 10:10:04 +020030 * information about how much data static volumes contain.
Kyungmin Park7f88f002008-11-19 16:28:06 +010031 *
32 * But it would still be beneficial to store this information in the volume
33 * table. For example, suppose we have a static volume X, and all its physical
34 * eraseblocks became bad for some reasons. Suppose we are attaching the
Heiko Schocherf5895d12014-06-24 10:10:04 +020035 * corresponding MTD device, for some reason we find no logical eraseblocks
Kyungmin Park7f88f002008-11-19 16:28:06 +010036 * corresponding to the volume X. According to the volume table volume X does
37 * exist. So we don't know whether it is just empty or all its physical
Heiko Schocherf5895d12014-06-24 10:10:04 +020038 * eraseblocks went bad. So we cannot alarm the user properly.
Kyungmin Park7f88f002008-11-19 16:28:06 +010039 *
40 * The volume table also stores so-called "update marker", which is used for
41 * volume updates. Before updating the volume, the update marker is set, and
42 * after the update operation is finished, the update marker is cleared. So if
43 * the update operation was interrupted (e.g. by an unclean reboot) - the
44 * update marker is still there and we know that the volume's contents is
45 * damaged.
46 */
47
Heiko Schocherf5895d12014-06-24 10:10:04 +020048#ifndef __UBOOT__
Kyungmin Park7f88f002008-11-19 16:28:06 +010049#include <linux/crc32.h>
50#include <linux/err.h>
Heiko Schocherf5895d12014-06-24 10:10:04 +020051#include <linux/slab.h>
Kyungmin Park7f88f002008-11-19 16:28:06 +010052#include <asm/div64.h>
Heiko Schocherf5895d12014-06-24 10:10:04 +020053#else
54#include <ubi_uboot.h>
Kyungmin Park7f88f002008-11-19 16:28:06 +010055#endif
56
Heiko Schocherf5895d12014-06-24 10:10:04 +020057#include <linux/err.h>
Kyungmin Park7f88f002008-11-19 16:28:06 +010058#include "ubi.h"
59
Heiko Schocherf5895d12014-06-24 10:10:04 +020060static void self_vtbl_check(const struct ubi_device *ubi);
Kyungmin Park7f88f002008-11-19 16:28:06 +010061
62/* Empty volume table record */
63static struct ubi_vtbl_record empty_vtbl_record;
64
65/**
Heiko Schocher94b66de2015-10-22 06:19:21 +020066 * ubi_update_layout_vol - helper for updatting layout volumes on flash
67 * @ubi: UBI device description object
68 */
69static int ubi_update_layout_vol(struct ubi_device *ubi)
70{
71 struct ubi_volume *layout_vol;
72 int i, err;
73
74 layout_vol = ubi->volumes[vol_id2idx(ubi, UBI_LAYOUT_VOLUME_ID)];
75 for (i = 0; i < UBI_LAYOUT_VOLUME_EBS; i++) {
76 err = ubi_eba_atomic_leb_change(ubi, layout_vol, i, ubi->vtbl,
77 ubi->vtbl_size);
78 if (err)
79 return err;
80 }
81
82 return 0;
83}
84
85/**
Kyungmin Park7f88f002008-11-19 16:28:06 +010086 * ubi_change_vtbl_record - change volume table record.
87 * @ubi: UBI device description object
88 * @idx: table index to change
89 * @vtbl_rec: new volume table record
90 *
91 * This function changes volume table record @idx. If @vtbl_rec is %NULL, empty
92 * volume table record is written. The caller does not have to calculate CRC of
93 * the record as it is done by this function. Returns zero in case of success
94 * and a negative error code in case of failure.
95 */
96int ubi_change_vtbl_record(struct ubi_device *ubi, int idx,
97 struct ubi_vtbl_record *vtbl_rec)
98{
Heiko Schocher94b66de2015-10-22 06:19:21 +020099 int err;
Kyungmin Park7f88f002008-11-19 16:28:06 +0100100 uint32_t crc;
Kyungmin Park7f88f002008-11-19 16:28:06 +0100101
102 ubi_assert(idx >= 0 && idx < ubi->vtbl_slots);
Kyungmin Park7f88f002008-11-19 16:28:06 +0100103
104 if (!vtbl_rec)
105 vtbl_rec = &empty_vtbl_record;
106 else {
107 crc = crc32(UBI_CRC32_INIT, vtbl_rec, UBI_VTBL_RECORD_SIZE_CRC);
108 vtbl_rec->crc = cpu_to_be32(crc);
109 }
110
111 memcpy(&ubi->vtbl[idx], vtbl_rec, sizeof(struct ubi_vtbl_record));
Heiko Schocher94b66de2015-10-22 06:19:21 +0200112 err = ubi_update_layout_vol(ubi);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200113
114 self_vtbl_check(ubi);
Heiko Schocher94b66de2015-10-22 06:19:21 +0200115 return err ? err : 0;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200116}
117
118/**
119 * ubi_vtbl_rename_volumes - rename UBI volumes in the volume table.
120 * @ubi: UBI device description object
121 * @rename_list: list of &struct ubi_rename_entry objects
122 *
123 * This function re-names multiple volumes specified in @req in the volume
124 * table. Returns zero in case of success and a negative error code in case of
125 * failure.
126 */
127int ubi_vtbl_rename_volumes(struct ubi_device *ubi,
128 struct list_head *rename_list)
129{
Heiko Schocherf5895d12014-06-24 10:10:04 +0200130 struct ubi_rename_entry *re;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200131
132 list_for_each_entry(re, rename_list, list) {
133 uint32_t crc;
134 struct ubi_volume *vol = re->desc->vol;
135 struct ubi_vtbl_record *vtbl_rec = &ubi->vtbl[vol->vol_id];
136
137 if (re->remove) {
138 memcpy(vtbl_rec, &empty_vtbl_record,
139 sizeof(struct ubi_vtbl_record));
140 continue;
141 }
142
143 vtbl_rec->name_len = cpu_to_be16(re->new_name_len);
144 memcpy(vtbl_rec->name, re->new_name, re->new_name_len);
145 memset(vtbl_rec->name + re->new_name_len, 0,
146 UBI_VOL_NAME_MAX + 1 - re->new_name_len);
147 crc = crc32(UBI_CRC32_INIT, vtbl_rec,
148 UBI_VTBL_RECORD_SIZE_CRC);
149 vtbl_rec->crc = cpu_to_be32(crc);
150 }
151
Heiko Schocher94b66de2015-10-22 06:19:21 +0200152 return ubi_update_layout_vol(ubi);
Kyungmin Park7f88f002008-11-19 16:28:06 +0100153}
154
155/**
Heiko Schocherf5895d12014-06-24 10:10:04 +0200156 * vtbl_check - check if volume table is not corrupted and sensible.
Kyungmin Park7f88f002008-11-19 16:28:06 +0100157 * @ubi: UBI device description object
158 * @vtbl: volume table
159 *
160 * This function returns zero if @vtbl is all right, %1 if CRC is incorrect,
161 * and %-EINVAL if it contains inconsistent data.
162 */
163static int vtbl_check(const struct ubi_device *ubi,
164 const struct ubi_vtbl_record *vtbl)
165{
166 int i, n, reserved_pebs, alignment, data_pad, vol_type, name_len;
167 int upd_marker, err;
168 uint32_t crc;
169 const char *name;
170
171 for (i = 0; i < ubi->vtbl_slots; i++) {
172 cond_resched();
173
174 reserved_pebs = be32_to_cpu(vtbl[i].reserved_pebs);
175 alignment = be32_to_cpu(vtbl[i].alignment);
176 data_pad = be32_to_cpu(vtbl[i].data_pad);
177 upd_marker = vtbl[i].upd_marker;
178 vol_type = vtbl[i].vol_type;
179 name_len = be16_to_cpu(vtbl[i].name_len);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200180 name = &vtbl[i].name[0];
Kyungmin Park7f88f002008-11-19 16:28:06 +0100181
182 crc = crc32(UBI_CRC32_INIT, &vtbl[i], UBI_VTBL_RECORD_SIZE_CRC);
183 if (be32_to_cpu(vtbl[i].crc) != crc) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200184 ubi_err(ubi, "bad CRC at record %u: %#08x, not %#08x",
Kyungmin Park7f88f002008-11-19 16:28:06 +0100185 i, crc, be32_to_cpu(vtbl[i].crc));
Heiko Schocherf5895d12014-06-24 10:10:04 +0200186 ubi_dump_vtbl_record(&vtbl[i], i);
Kyungmin Park7f88f002008-11-19 16:28:06 +0100187 return 1;
188 }
189
190 if (reserved_pebs == 0) {
191 if (memcmp(&vtbl[i], &empty_vtbl_record,
192 UBI_VTBL_RECORD_SIZE)) {
193 err = 2;
194 goto bad;
195 }
196 continue;
197 }
198
199 if (reserved_pebs < 0 || alignment < 0 || data_pad < 0 ||
200 name_len < 0) {
201 err = 3;
202 goto bad;
203 }
204
205 if (alignment > ubi->leb_size || alignment == 0) {
206 err = 4;
207 goto bad;
208 }
209
210 n = alignment & (ubi->min_io_size - 1);
211 if (alignment != 1 && n) {
212 err = 5;
213 goto bad;
214 }
215
216 n = ubi->leb_size % alignment;
217 if (data_pad != n) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200218 ubi_err(ubi, "bad data_pad, has to be %d", n);
Kyungmin Park7f88f002008-11-19 16:28:06 +0100219 err = 6;
220 goto bad;
221 }
222
223 if (vol_type != UBI_VID_DYNAMIC && vol_type != UBI_VID_STATIC) {
224 err = 7;
225 goto bad;
226 }
227
228 if (upd_marker != 0 && upd_marker != 1) {
229 err = 8;
230 goto bad;
231 }
232
233 if (reserved_pebs > ubi->good_peb_count) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200234 ubi_err(ubi, "too large reserved_pebs %d, good PEBs %d",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200235 reserved_pebs, ubi->good_peb_count);
Kyungmin Park7f88f002008-11-19 16:28:06 +0100236 err = 9;
237 goto bad;
238 }
239
240 if (name_len > UBI_VOL_NAME_MAX) {
241 err = 10;
242 goto bad;
243 }
244
245 if (name[0] == '\0') {
246 err = 11;
247 goto bad;
248 }
249
250 if (name_len != strnlen(name, name_len + 1)) {
251 err = 12;
252 goto bad;
253 }
254 }
255
256 /* Checks that all names are unique */
257 for (i = 0; i < ubi->vtbl_slots - 1; i++) {
258 for (n = i + 1; n < ubi->vtbl_slots; n++) {
259 int len1 = be16_to_cpu(vtbl[i].name_len);
260 int len2 = be16_to_cpu(vtbl[n].name_len);
261
262 if (len1 > 0 && len1 == len2 &&
Heiko Schocherf5895d12014-06-24 10:10:04 +0200263#ifndef __UBOOT__
264 !strncmp(vtbl[i].name, vtbl[n].name, len1)) {
265#else
266 !strncmp((char *)vtbl[i].name, vtbl[n].name, len1)) {
267#endif
Heiko Schocher94b66de2015-10-22 06:19:21 +0200268 ubi_err(ubi, "volumes %d and %d have the same name \"%s\"",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200269 i, n, vtbl[i].name);
270 ubi_dump_vtbl_record(&vtbl[i], i);
271 ubi_dump_vtbl_record(&vtbl[n], n);
Kyungmin Park7f88f002008-11-19 16:28:06 +0100272 return -EINVAL;
273 }
274 }
275 }
276
277 return 0;
278
279bad:
Heiko Schocher94b66de2015-10-22 06:19:21 +0200280 ubi_err(ubi, "volume table check failed: record %d, error %d", i, err);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200281 ubi_dump_vtbl_record(&vtbl[i], i);
Kyungmin Park7f88f002008-11-19 16:28:06 +0100282 return -EINVAL;
283}
284
285/**
286 * create_vtbl - create a copy of volume table.
287 * @ubi: UBI device description object
Heiko Schocherf5895d12014-06-24 10:10:04 +0200288 * @ai: attaching information
Kyungmin Park7f88f002008-11-19 16:28:06 +0100289 * @copy: number of the volume table copy
290 * @vtbl: contents of the volume table
291 *
292 * This function returns zero in case of success and a negative error code in
293 * case of failure.
294 */
Heiko Schocherf5895d12014-06-24 10:10:04 +0200295static int create_vtbl(struct ubi_device *ubi, struct ubi_attach_info *ai,
Kyungmin Park7f88f002008-11-19 16:28:06 +0100296 int copy, void *vtbl)
297{
298 int err, tries = 0;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200299 struct ubi_vid_hdr *vid_hdr;
300 struct ubi_ainf_peb *new_aeb;
Kyungmin Park7f88f002008-11-19 16:28:06 +0100301
Heiko Schocherf5895d12014-06-24 10:10:04 +0200302 dbg_gen("create volume table (copy #%d)", copy + 1);
Kyungmin Park7f88f002008-11-19 16:28:06 +0100303
304 vid_hdr = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL);
305 if (!vid_hdr)
306 return -ENOMEM;
307
Kyungmin Park7f88f002008-11-19 16:28:06 +0100308retry:
Heiko Schocherf5895d12014-06-24 10:10:04 +0200309 new_aeb = ubi_early_get_peb(ubi, ai);
310 if (IS_ERR(new_aeb)) {
311 err = PTR_ERR(new_aeb);
Kyungmin Park7f88f002008-11-19 16:28:06 +0100312 goto out_free;
313 }
314
Heiko Schocherf5895d12014-06-24 10:10:04 +0200315 vid_hdr->vol_type = UBI_LAYOUT_VOLUME_TYPE;
Kyungmin Park7f88f002008-11-19 16:28:06 +0100316 vid_hdr->vol_id = cpu_to_be32(UBI_LAYOUT_VOLUME_ID);
317 vid_hdr->compat = UBI_LAYOUT_VOLUME_COMPAT;
318 vid_hdr->data_size = vid_hdr->used_ebs =
319 vid_hdr->data_pad = cpu_to_be32(0);
320 vid_hdr->lnum = cpu_to_be32(copy);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200321 vid_hdr->sqnum = cpu_to_be64(++ai->max_sqnum);
Kyungmin Park7f88f002008-11-19 16:28:06 +0100322
323 /* The EC header is already there, write the VID header */
Heiko Schocherf5895d12014-06-24 10:10:04 +0200324 err = ubi_io_write_vid_hdr(ubi, new_aeb->pnum, vid_hdr);
Kyungmin Park7f88f002008-11-19 16:28:06 +0100325 if (err)
326 goto write_error;
327
328 /* Write the layout volume contents */
Heiko Schocherf5895d12014-06-24 10:10:04 +0200329 err = ubi_io_write_data(ubi, vtbl, new_aeb->pnum, 0, ubi->vtbl_size);
Kyungmin Park7f88f002008-11-19 16:28:06 +0100330 if (err)
331 goto write_error;
332
333 /*
Heiko Schocherf5895d12014-06-24 10:10:04 +0200334 * And add it to the attaching information. Don't delete the old version
335 * of this LEB as it will be deleted and freed in 'ubi_add_to_av()'.
Kyungmin Park7f88f002008-11-19 16:28:06 +0100336 */
Heiko Schocherf5895d12014-06-24 10:10:04 +0200337 err = ubi_add_to_av(ubi, ai, new_aeb->pnum, new_aeb->ec, vid_hdr, 0);
338 kmem_cache_free(ai->aeb_slab_cache, new_aeb);
Kyungmin Park7f88f002008-11-19 16:28:06 +0100339 ubi_free_vid_hdr(ubi, vid_hdr);
340 return err;
341
342write_error:
343 if (err == -EIO && ++tries <= 5) {
344 /*
345 * Probably this physical eraseblock went bad, try to pick
346 * another one.
347 */
Heiko Schocherf5895d12014-06-24 10:10:04 +0200348 list_add(&new_aeb->u.list, &ai->erase);
Kyungmin Park7f88f002008-11-19 16:28:06 +0100349 goto retry;
350 }
Heiko Schocherf5895d12014-06-24 10:10:04 +0200351 kmem_cache_free(ai->aeb_slab_cache, new_aeb);
Kyungmin Park7f88f002008-11-19 16:28:06 +0100352out_free:
353 ubi_free_vid_hdr(ubi, vid_hdr);
354 return err;
355
356}
357
358/**
359 * process_lvol - process the layout volume.
360 * @ubi: UBI device description object
Heiko Schocherf5895d12014-06-24 10:10:04 +0200361 * @ai: attaching information
362 * @av: layout volume attaching information
Kyungmin Park7f88f002008-11-19 16:28:06 +0100363 *
364 * This function is responsible for reading the layout volume, ensuring it is
365 * not corrupted, and recovering from corruptions if needed. Returns volume
366 * table in case of success and a negative error code in case of failure.
367 */
368static struct ubi_vtbl_record *process_lvol(struct ubi_device *ubi,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200369 struct ubi_attach_info *ai,
370 struct ubi_ainf_volume *av)
Kyungmin Park7f88f002008-11-19 16:28:06 +0100371{
372 int err;
373 struct rb_node *rb;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200374 struct ubi_ainf_peb *aeb;
Kyungmin Park7f88f002008-11-19 16:28:06 +0100375 struct ubi_vtbl_record *leb[UBI_LAYOUT_VOLUME_EBS] = { NULL, NULL };
376 int leb_corrupted[UBI_LAYOUT_VOLUME_EBS] = {1, 1};
377
378 /*
379 * UBI goes through the following steps when it changes the layout
380 * volume:
381 * a. erase LEB 0;
382 * b. write new data to LEB 0;
383 * c. erase LEB 1;
384 * d. write new data to LEB 1.
385 *
386 * Before the change, both LEBs contain the same data.
387 *
388 * Due to unclean reboots, the contents of LEB 0 may be lost, but there
389 * should LEB 1. So it is OK if LEB 0 is corrupted while LEB 1 is not.
390 * Similarly, LEB 1 may be lost, but there should be LEB 0. And
391 * finally, unclean reboots may result in a situation when neither LEB
392 * 0 nor LEB 1 are corrupted, but they are different. In this case, LEB
393 * 0 contains more recent information.
394 *
395 * So the plan is to first check LEB 0. Then
Heiko Schocherf5895d12014-06-24 10:10:04 +0200396 * a. if LEB 0 is OK, it must be containing the most recent data; then
Kyungmin Park7f88f002008-11-19 16:28:06 +0100397 * we compare it with LEB 1, and if they are different, we copy LEB
398 * 0 to LEB 1;
399 * b. if LEB 0 is corrupted, but LEB 1 has to be OK, and we copy LEB 1
400 * to LEB 0.
401 */
402
Heiko Schocherf5895d12014-06-24 10:10:04 +0200403 dbg_gen("check layout volume");
Kyungmin Park7f88f002008-11-19 16:28:06 +0100404
405 /* Read both LEB 0 and LEB 1 into memory */
Heiko Schocherf5895d12014-06-24 10:10:04 +0200406 ubi_rb_for_each_entry(rb, aeb, &av->root, u.rb) {
407 leb[aeb->lnum] = vzalloc(ubi->vtbl_size);
408 if (!leb[aeb->lnum]) {
Kyungmin Park7f88f002008-11-19 16:28:06 +0100409 err = -ENOMEM;
410 goto out_free;
411 }
Kyungmin Park7f88f002008-11-19 16:28:06 +0100412
Heiko Schocherf5895d12014-06-24 10:10:04 +0200413 err = ubi_io_read_data(ubi, leb[aeb->lnum], aeb->pnum, 0,
Kyungmin Park7f88f002008-11-19 16:28:06 +0100414 ubi->vtbl_size);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000415 if (err == UBI_IO_BITFLIPS || mtd_is_eccerr(err))
Kyungmin Park7f88f002008-11-19 16:28:06 +0100416 /*
417 * Scrub the PEB later. Note, -EBADMSG indicates an
418 * uncorrectable ECC error, but we have our own CRC and
419 * the data will be checked later. If the data is OK,
420 * the PEB will be scrubbed (because we set
Heiko Schocherf5895d12014-06-24 10:10:04 +0200421 * aeb->scrub). If the data is not OK, the contents of
Kyungmin Park7f88f002008-11-19 16:28:06 +0100422 * the PEB will be recovered from the second copy, and
Heiko Schocherf5895d12014-06-24 10:10:04 +0200423 * aeb->scrub will be cleared in
424 * 'ubi_add_to_av()'.
Kyungmin Park7f88f002008-11-19 16:28:06 +0100425 */
Heiko Schocherf5895d12014-06-24 10:10:04 +0200426 aeb->scrub = 1;
Kyungmin Park7f88f002008-11-19 16:28:06 +0100427 else if (err)
428 goto out_free;
429 }
430
431 err = -EINVAL;
432 if (leb[0]) {
433 leb_corrupted[0] = vtbl_check(ubi, leb[0]);
434 if (leb_corrupted[0] < 0)
435 goto out_free;
436 }
437
438 if (!leb_corrupted[0]) {
439 /* LEB 0 is OK */
440 if (leb[1])
Heiko Schocherf5895d12014-06-24 10:10:04 +0200441 leb_corrupted[1] = memcmp(leb[0], leb[1],
442 ubi->vtbl_size);
Kyungmin Park7f88f002008-11-19 16:28:06 +0100443 if (leb_corrupted[1]) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200444 ubi_warn(ubi, "volume table copy #2 is corrupted");
Heiko Schocherf5895d12014-06-24 10:10:04 +0200445 err = create_vtbl(ubi, ai, 1, leb[0]);
Kyungmin Park7f88f002008-11-19 16:28:06 +0100446 if (err)
447 goto out_free;
Heiko Schocher94b66de2015-10-22 06:19:21 +0200448 ubi_msg(ubi, "volume table was restored");
Kyungmin Park7f88f002008-11-19 16:28:06 +0100449 }
450
451 /* Both LEB 1 and LEB 2 are OK and consistent */
452 vfree(leb[1]);
453 return leb[0];
454 } else {
455 /* LEB 0 is corrupted or does not exist */
456 if (leb[1]) {
457 leb_corrupted[1] = vtbl_check(ubi, leb[1]);
458 if (leb_corrupted[1] < 0)
459 goto out_free;
460 }
461 if (leb_corrupted[1]) {
462 /* Both LEB 0 and LEB 1 are corrupted */
Heiko Schocher94b66de2015-10-22 06:19:21 +0200463 ubi_err(ubi, "both volume tables are corrupted");
Kyungmin Park7f88f002008-11-19 16:28:06 +0100464 goto out_free;
465 }
466
Heiko Schocher94b66de2015-10-22 06:19:21 +0200467 ubi_warn(ubi, "volume table copy #1 is corrupted");
Heiko Schocherf5895d12014-06-24 10:10:04 +0200468 err = create_vtbl(ubi, ai, 0, leb[1]);
Kyungmin Park7f88f002008-11-19 16:28:06 +0100469 if (err)
470 goto out_free;
Heiko Schocher94b66de2015-10-22 06:19:21 +0200471 ubi_msg(ubi, "volume table was restored");
Kyungmin Park7f88f002008-11-19 16:28:06 +0100472
473 vfree(leb[0]);
474 return leb[1];
475 }
476
477out_free:
478 vfree(leb[0]);
479 vfree(leb[1]);
480 return ERR_PTR(err);
481}
482
483/**
484 * create_empty_lvol - create empty layout volume.
485 * @ubi: UBI device description object
Heiko Schocherf5895d12014-06-24 10:10:04 +0200486 * @ai: attaching information
Kyungmin Park7f88f002008-11-19 16:28:06 +0100487 *
488 * This function returns volume table contents in case of success and a
489 * negative error code in case of failure.
490 */
491static struct ubi_vtbl_record *create_empty_lvol(struct ubi_device *ubi,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200492 struct ubi_attach_info *ai)
Kyungmin Park7f88f002008-11-19 16:28:06 +0100493{
494 int i;
495 struct ubi_vtbl_record *vtbl;
496
Heiko Schocherf5895d12014-06-24 10:10:04 +0200497 vtbl = vzalloc(ubi->vtbl_size);
Kyungmin Park7f88f002008-11-19 16:28:06 +0100498 if (!vtbl)
499 return ERR_PTR(-ENOMEM);
Kyungmin Park7f88f002008-11-19 16:28:06 +0100500
501 for (i = 0; i < ubi->vtbl_slots; i++)
502 memcpy(&vtbl[i], &empty_vtbl_record, UBI_VTBL_RECORD_SIZE);
503
504 for (i = 0; i < UBI_LAYOUT_VOLUME_EBS; i++) {
505 int err;
506
Heiko Schocherf5895d12014-06-24 10:10:04 +0200507 err = create_vtbl(ubi, ai, i, vtbl);
Kyungmin Park7f88f002008-11-19 16:28:06 +0100508 if (err) {
509 vfree(vtbl);
510 return ERR_PTR(err);
511 }
512 }
513
514 return vtbl;
515}
516
517/**
518 * init_volumes - initialize volume information for existing volumes.
519 * @ubi: UBI device description object
Heiko Schocherf5895d12014-06-24 10:10:04 +0200520 * @ai: scanning information
Kyungmin Park7f88f002008-11-19 16:28:06 +0100521 * @vtbl: volume table
522 *
523 * This function allocates volume description objects for existing volumes.
524 * Returns zero in case of success and a negative error code in case of
525 * failure.
526 */
Heiko Schocherf5895d12014-06-24 10:10:04 +0200527static int init_volumes(struct ubi_device *ubi,
528 const struct ubi_attach_info *ai,
Kyungmin Park7f88f002008-11-19 16:28:06 +0100529 const struct ubi_vtbl_record *vtbl)
530{
531 int i, reserved_pebs = 0;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200532 struct ubi_ainf_volume *av;
Kyungmin Park7f88f002008-11-19 16:28:06 +0100533 struct ubi_volume *vol;
534
535 for (i = 0; i < ubi->vtbl_slots; i++) {
536 cond_resched();
537
538 if (be32_to_cpu(vtbl[i].reserved_pebs) == 0)
539 continue; /* Empty record */
540
541 vol = kzalloc(sizeof(struct ubi_volume), GFP_KERNEL);
542 if (!vol)
543 return -ENOMEM;
544
545 vol->reserved_pebs = be32_to_cpu(vtbl[i].reserved_pebs);
546 vol->alignment = be32_to_cpu(vtbl[i].alignment);
547 vol->data_pad = be32_to_cpu(vtbl[i].data_pad);
Peter Horton3ca9a932010-06-12 10:11:56 +0900548 vol->upd_marker = vtbl[i].upd_marker;
Kyungmin Park7f88f002008-11-19 16:28:06 +0100549 vol->vol_type = vtbl[i].vol_type == UBI_VID_DYNAMIC ?
550 UBI_DYNAMIC_VOLUME : UBI_STATIC_VOLUME;
551 vol->name_len = be16_to_cpu(vtbl[i].name_len);
552 vol->usable_leb_size = ubi->leb_size - vol->data_pad;
553 memcpy(vol->name, vtbl[i].name, vol->name_len);
554 vol->name[vol->name_len] = '\0';
555 vol->vol_id = i;
556
Quentin Schulza88049b2019-09-12 16:41:01 +0200557 if (vtbl[i].flags & UBI_VTBL_SKIP_CRC_CHECK_FLG)
558 vol->skip_check = 1;
559
Kyungmin Park7f88f002008-11-19 16:28:06 +0100560 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 Schocher94b66de2015-10-22 06:19:21 +0200563 ubi_err(ubi, "more than one auto-resize volume (%d and %d)",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200564 ubi->autoresize_vol_id, i);
Kyungmin Park7f88f002008-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 Schocherf5895d12014-06-24 10:10:04 +0200591 av = ubi_find_av(ai, i);
Heiko Schocher94b66de2015-10-22 06:19:21 +0200592 if (!av || !av->leb_count) {
Kyungmin Park7f88f002008-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 Schocherf5895d12014-06-24 10:10:04 +0200604 if (av->leb_count != av->used_ebs) {
Kyungmin Park7f88f002008-11-19 16:28:06 +0100605 /*
606 * We found a static volume which misses several
607 * eraseblocks. Treat it as corrupted.
608 */
Heiko Schocher94b66de2015-10-22 06:19:21 +0200609 ubi_warn(ubi, "static volume %d misses %d LEBs - corrupted",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200610 av->vol_id, av->used_ebs - av->leb_count);
Kyungmin Park7f88f002008-11-19 16:28:06 +0100611 vol->corrupted = 1;
612 continue;
613 }
614
Heiko Schocherf5895d12014-06-24 10:10:04 +0200615 vol->used_ebs = av->used_ebs;
Kyungmin Park7f88f002008-11-19 16:28:06 +0100616 vol->used_bytes =
617 (long long)(vol->used_ebs - 1) * vol->usable_leb_size;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200618 vol->used_bytes += av->last_data_size;
619 vol->last_eb_bytes = av->last_data_size;
Kyungmin Park7f88f002008-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 Schocherf5895d12014-06-24 10:10:04 +0200628 vol->alignment = UBI_LAYOUT_VOLUME_ALIGN;
Kyungmin Park7f88f002008-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 Schocherf5895d12014-06-24 10:10:04 +0200646 if (reserved_pebs > ubi->avail_pebs) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200647 ubi_err(ubi, "not enough PEBs, required %d, available %d",
Kyungmin Park7f88f002008-11-19 16:28:06 +0100648 reserved_pebs, ubi->avail_pebs);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200649 if (ubi->corr_peb_count)
Heiko Schocher94b66de2015-10-22 06:19:21 +0200650 ubi_err(ubi, "%d PEBs are corrupted and not used",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200651 ubi->corr_peb_count);
652 }
Kyungmin Park7f88f002008-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 Schocherf5895d12014-06-24 10:10:04 +0200660 * check_av - check volume attaching information.
Kyungmin Park7f88f002008-11-19 16:28:06 +0100661 * @vol: UBI volume description object
Heiko Schocherf5895d12014-06-24 10:10:04 +0200662 * @av: volume attaching information
Kyungmin Park7f88f002008-11-19 16:28:06 +0100663 *
Heiko Schocherf5895d12014-06-24 10:10:04 +0200664 * This function returns zero if the volume attaching information is consistent
Kyungmin Park7f88f002008-11-19 16:28:06 +0100665 * to the data read from the volume tabla, and %-EINVAL if not.
666 */
Heiko Schocherf5895d12014-06-24 10:10:04 +0200667static int check_av(const struct ubi_volume *vol,
668 const struct ubi_ainf_volume *av)
Kyungmin Park7f88f002008-11-19 16:28:06 +0100669{
670 int err;
671
Heiko Schocherf5895d12014-06-24 10:10:04 +0200672 if (av->highest_lnum >= vol->reserved_pebs) {
Kyungmin Park7f88f002008-11-19 16:28:06 +0100673 err = 1;
674 goto bad;
675 }
Heiko Schocherf5895d12014-06-24 10:10:04 +0200676 if (av->leb_count > vol->reserved_pebs) {
Kyungmin Park7f88f002008-11-19 16:28:06 +0100677 err = 2;
678 goto bad;
679 }
Heiko Schocherf5895d12014-06-24 10:10:04 +0200680 if (av->vol_type != vol->vol_type) {
Kyungmin Park7f88f002008-11-19 16:28:06 +0100681 err = 3;
682 goto bad;
683 }
Heiko Schocherf5895d12014-06-24 10:10:04 +0200684 if (av->used_ebs > vol->reserved_pebs) {
Kyungmin Park7f88f002008-11-19 16:28:06 +0100685 err = 4;
686 goto bad;
687 }
Heiko Schocherf5895d12014-06-24 10:10:04 +0200688 if (av->data_pad != vol->data_pad) {
Kyungmin Park7f88f002008-11-19 16:28:06 +0100689 err = 5;
690 goto bad;
691 }
692 return 0;
693
694bad:
Heiko Schocher94b66de2015-10-22 06:19:21 +0200695 ubi_err(vol->ubi, "bad attaching information, error %d", err);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200696 ubi_dump_av(av);
697 ubi_dump_vol_info(vol);
Kyungmin Park7f88f002008-11-19 16:28:06 +0100698 return -EINVAL;
699}
700
701/**
Heiko Schocherf5895d12014-06-24 10:10:04 +0200702 * check_attaching_info - check that attaching information.
Kyungmin Park7f88f002008-11-19 16:28:06 +0100703 * @ubi: UBI device description object
Heiko Schocherf5895d12014-06-24 10:10:04 +0200704 * @ai: attaching information
Kyungmin Park7f88f002008-11-19 16:28:06 +0100705 *
706 * Even though we protect on-flash data by CRC checksums, we still don't trust
Heiko Schocherf5895d12014-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 Park7f88f002008-11-19 16:28:06 +0100709 * information is OK and %-EINVAL if it is not.
710 */
Heiko Schocherf5895d12014-06-24 10:10:04 +0200711static int check_attaching_info(const struct ubi_device *ubi,
712 struct ubi_attach_info *ai)
Kyungmin Park7f88f002008-11-19 16:28:06 +0100713{
714 int err, i;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200715 struct ubi_ainf_volume *av;
Kyungmin Park7f88f002008-11-19 16:28:06 +0100716 struct ubi_volume *vol;
717
Heiko Schocherf5895d12014-06-24 10:10:04 +0200718 if (ai->vols_found > UBI_INT_VOL_COUNT + ubi->vtbl_slots) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200719 ubi_err(ubi, "found %d volumes while attaching, maximum is %d + %d",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200720 ai->vols_found, UBI_INT_VOL_COUNT, ubi->vtbl_slots);
Kyungmin Park7f88f002008-11-19 16:28:06 +0100721 return -EINVAL;
722 }
723
Heiko Schocherf5895d12014-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) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200726 ubi_err(ubi, "too large volume ID %d found",
727 ai->highest_vol_id);
Kyungmin Park7f88f002008-11-19 16:28:06 +0100728 return -EINVAL;
729 }
730
731 for (i = 0; i < ubi->vtbl_slots + UBI_INT_VOL_COUNT; i++) {
732 cond_resched();
733
Heiko Schocherf5895d12014-06-24 10:10:04 +0200734 av = ubi_find_av(ai, i);
Kyungmin Park7f88f002008-11-19 16:28:06 +0100735 vol = ubi->volumes[i];
736 if (!vol) {
Heiko Schocherf5895d12014-06-24 10:10:04 +0200737 if (av)
738 ubi_remove_av(ai, av);
Kyungmin Park7f88f002008-11-19 16:28:06 +0100739 continue;
740 }
741
742 if (vol->reserved_pebs == 0) {
743 ubi_assert(i < ubi->vtbl_slots);
744
Heiko Schocherf5895d12014-06-24 10:10:04 +0200745 if (!av)
Kyungmin Park7f88f002008-11-19 16:28:06 +0100746 continue;
747
748 /*
Heiko Schocherf5895d12014-06-24 10:10:04 +0200749 * During attaching we found a volume which does not
Kyungmin Park7f88f002008-11-19 16:28:06 +0100750 * exist according to the information in the volume
751 * table. This must have happened due to an unclean
752 * reboot while the volume was being removed. Discard
753 * these eraseblocks.
754 */
Heiko Schocher94b66de2015-10-22 06:19:21 +0200755 ubi_msg(ubi, "finish volume %d removal", av->vol_id);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200756 ubi_remove_av(ai, av);
757 } else if (av) {
758 err = check_av(vol, av);
Kyungmin Park7f88f002008-11-19 16:28:06 +0100759 if (err)
760 return err;
761 }
762 }
763
764 return 0;
765}
766
767/**
Heiko Schocherf5895d12014-06-24 10:10:04 +0200768 * ubi_read_volume_table - read the volume table.
Kyungmin Park7f88f002008-11-19 16:28:06 +0100769 * @ubi: UBI device description object
Heiko Schocherf5895d12014-06-24 10:10:04 +0200770 * @ai: attaching information
Kyungmin Park7f88f002008-11-19 16:28:06 +0100771 *
772 * This function reads volume table, checks it, recover from errors if needed,
773 * or creates it if needed. Returns zero in case of success and a negative
774 * error code in case of failure.
775 */
Heiko Schocherf5895d12014-06-24 10:10:04 +0200776int ubi_read_volume_table(struct ubi_device *ubi, struct ubi_attach_info *ai)
Kyungmin Park7f88f002008-11-19 16:28:06 +0100777{
778 int i, err;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200779 struct ubi_ainf_volume *av;
Kyungmin Park7f88f002008-11-19 16:28:06 +0100780
781 empty_vtbl_record.crc = cpu_to_be32(0xf116c36b);
782
783 /*
784 * The number of supported volumes is limited by the eraseblock size
785 * and by the UBI_MAX_VOLUMES constant.
786 */
787 ubi->vtbl_slots = ubi->leb_size / UBI_VTBL_RECORD_SIZE;
788 if (ubi->vtbl_slots > UBI_MAX_VOLUMES)
789 ubi->vtbl_slots = UBI_MAX_VOLUMES;
790
791 ubi->vtbl_size = ubi->vtbl_slots * UBI_VTBL_RECORD_SIZE;
792 ubi->vtbl_size = ALIGN(ubi->vtbl_size, ubi->min_io_size);
793
Heiko Schocherf5895d12014-06-24 10:10:04 +0200794 av = ubi_find_av(ai, UBI_LAYOUT_VOLUME_ID);
795 if (!av) {
Kyungmin Park7f88f002008-11-19 16:28:06 +0100796 /*
797 * No logical eraseblocks belonging to the layout volume were
798 * found. This could mean that the flash is just empty. In
799 * this case we create empty layout volume.
800 *
801 * But if flash is not empty this must be a corruption or the
802 * MTD device just contains garbage.
803 */
Heiko Schocherf5895d12014-06-24 10:10:04 +0200804 if (ai->is_empty) {
805 ubi->vtbl = create_empty_lvol(ubi, ai);
Kyungmin Park7f88f002008-11-19 16:28:06 +0100806 if (IS_ERR(ubi->vtbl))
807 return PTR_ERR(ubi->vtbl);
808 } else {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200809 ubi_err(ubi, "the layout volume was not found");
Kyungmin Park7f88f002008-11-19 16:28:06 +0100810 return -EINVAL;
811 }
812 } else {
Heiko Schocherf5895d12014-06-24 10:10:04 +0200813 if (av->leb_count > UBI_LAYOUT_VOLUME_EBS) {
Kyungmin Park7f88f002008-11-19 16:28:06 +0100814 /* This must not happen with proper UBI images */
Heiko Schocher94b66de2015-10-22 06:19:21 +0200815 ubi_err(ubi, "too many LEBs (%d) in layout volume",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200816 av->leb_count);
Kyungmin Park7f88f002008-11-19 16:28:06 +0100817 return -EINVAL;
818 }
819
Heiko Schocherf5895d12014-06-24 10:10:04 +0200820 ubi->vtbl = process_lvol(ubi, ai, av);
Kyungmin Park7f88f002008-11-19 16:28:06 +0100821 if (IS_ERR(ubi->vtbl))
822 return PTR_ERR(ubi->vtbl);
823 }
824
Heiko Schocherf5895d12014-06-24 10:10:04 +0200825 ubi->avail_pebs = ubi->good_peb_count - ubi->corr_peb_count;
Kyungmin Park7f88f002008-11-19 16:28:06 +0100826
827 /*
828 * The layout volume is OK, initialize the corresponding in-RAM data
829 * structures.
830 */
Heiko Schocherf5895d12014-06-24 10:10:04 +0200831 err = init_volumes(ubi, ai, ubi->vtbl);
Kyungmin Park7f88f002008-11-19 16:28:06 +0100832 if (err)
833 goto out_free;
834
835 /*
Heiko Schocherf5895d12014-06-24 10:10:04 +0200836 * Make sure that the attaching information is consistent to the
Kyungmin Park7f88f002008-11-19 16:28:06 +0100837 * information stored in the volume table.
838 */
Heiko Schocherf5895d12014-06-24 10:10:04 +0200839 err = check_attaching_info(ubi, ai);
Kyungmin Park7f88f002008-11-19 16:28:06 +0100840 if (err)
841 goto out_free;
842
843 return 0;
844
845out_free:
846 vfree(ubi->vtbl);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200847 for (i = 0; i < ubi->vtbl_slots + UBI_INT_VOL_COUNT; i++) {
848 kfree(ubi->volumes[i]);
849 ubi->volumes[i] = NULL;
850 }
Kyungmin Park7f88f002008-11-19 16:28:06 +0100851 return err;
852}
853
Kyungmin Park7f88f002008-11-19 16:28:06 +0100854/**
Heiko Schocherf5895d12014-06-24 10:10:04 +0200855 * self_vtbl_check - check volume table.
Kyungmin Park7f88f002008-11-19 16:28:06 +0100856 * @ubi: UBI device description object
857 */
Heiko Schocherf5895d12014-06-24 10:10:04 +0200858static void self_vtbl_check(const struct ubi_device *ubi)
Kyungmin Park7f88f002008-11-19 16:28:06 +0100859{
Heiko Schocherf5895d12014-06-24 10:10:04 +0200860 if (!ubi_dbg_chk_gen(ubi))
861 return;
862
Kyungmin Park7f88f002008-11-19 16:28:06 +0100863 if (vtbl_check(ubi, ubi->vtbl)) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200864 ubi_err(ubi, "self-check failed");
Kyungmin Park7f88f002008-11-19 16:28:06 +0100865 BUG();
866 }
867}