blob: a2b5352cb2da4d5c4545343fc43c6ce1eda2fd7d [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Kyungmin Parkc91a7192008-11-19 16:28:06 +01002/*
3 * Copyright (c) International Business Machines Corp., 2006
4 * Copyright (c) Nokia Corporation, 2006, 2007
5 *
Kyungmin Parkc91a7192008-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 Schocher0195a7b2015-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 Parkc91a7192008-11-19 16:28:06 +010024 *
Heiko Schocher0195a7b2015-10-22 06:19:21 +020025 * When the volume table is changed, it is first changed in RAM. Then LEB 0 is
Kyungmin Parkc91a7192008-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 Schocherff94bc42014-06-24 10:10:04 +020030 * information about how much data static volumes contain.
Kyungmin Parkc91a7192008-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 Schocherff94bc42014-06-24 10:10:04 +020035 * corresponding MTD device, for some reason we find no logical eraseblocks
Kyungmin Parkc91a7192008-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 Schocherff94bc42014-06-24 10:10:04 +020038 * eraseblocks went bad. So we cannot alarm the user properly.
Kyungmin Parkc91a7192008-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 Schocherff94bc42014-06-24 10:10:04 +020048#ifndef __UBOOT__
Simon Glassf7ae49f2020-05-10 11:40:05 -060049#include <log.h>
Simon Glass61b29b82020-02-03 07:36:15 -070050#include <dm/devres.h>
Kyungmin Parkc91a7192008-11-19 16:28:06 +010051#include <linux/crc32.h>
52#include <linux/err.h>
Heiko Schocherff94bc42014-06-24 10:10:04 +020053#include <linux/slab.h>
Kyungmin Parkc91a7192008-11-19 16:28:06 +010054#include <asm/div64.h>
Simon Glass3db71102019-11-14 12:57:16 -070055#include <u-boot/crc.h>
Heiko Schocherff94bc42014-06-24 10:10:04 +020056#else
57#include <ubi_uboot.h>
Simon Glasseb41d8a2020-05-10 11:40:08 -060058#include <linux/bug.h>
Kyungmin Parkc91a7192008-11-19 16:28:06 +010059#endif
60
Heiko Schocherff94bc42014-06-24 10:10:04 +020061#include <linux/err.h>
Kyungmin Parkc91a7192008-11-19 16:28:06 +010062#include "ubi.h"
63
Heiko Schocherff94bc42014-06-24 10:10:04 +020064static void self_vtbl_check(const struct ubi_device *ubi);
Kyungmin Parkc91a7192008-11-19 16:28:06 +010065
66/* Empty volume table record */
67static struct ubi_vtbl_record empty_vtbl_record;
68
69/**
Heiko Schocher0195a7b2015-10-22 06:19:21 +020070 * ubi_update_layout_vol - helper for updatting layout volumes on flash
71 * @ubi: UBI device description object
72 */
73static int ubi_update_layout_vol(struct ubi_device *ubi)
74{
75 struct ubi_volume *layout_vol;
76 int i, err;
77
78 layout_vol = ubi->volumes[vol_id2idx(ubi, UBI_LAYOUT_VOLUME_ID)];
79 for (i = 0; i < UBI_LAYOUT_VOLUME_EBS; i++) {
80 err = ubi_eba_atomic_leb_change(ubi, layout_vol, i, ubi->vtbl,
81 ubi->vtbl_size);
82 if (err)
83 return err;
84 }
85
86 return 0;
87}
88
89/**
Kyungmin Parkc91a7192008-11-19 16:28:06 +010090 * ubi_change_vtbl_record - change volume table record.
91 * @ubi: UBI device description object
92 * @idx: table index to change
93 * @vtbl_rec: new volume table record
94 *
95 * This function changes volume table record @idx. If @vtbl_rec is %NULL, empty
96 * volume table record is written. The caller does not have to calculate CRC of
97 * the record as it is done by this function. Returns zero in case of success
98 * and a negative error code in case of failure.
99 */
100int ubi_change_vtbl_record(struct ubi_device *ubi, int idx,
101 struct ubi_vtbl_record *vtbl_rec)
102{
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200103 int err;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100104 uint32_t crc;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100105
106 ubi_assert(idx >= 0 && idx < ubi->vtbl_slots);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100107
108 if (!vtbl_rec)
109 vtbl_rec = &empty_vtbl_record;
110 else {
111 crc = crc32(UBI_CRC32_INIT, vtbl_rec, UBI_VTBL_RECORD_SIZE_CRC);
112 vtbl_rec->crc = cpu_to_be32(crc);
113 }
114
115 memcpy(&ubi->vtbl[idx], vtbl_rec, sizeof(struct ubi_vtbl_record));
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200116 err = ubi_update_layout_vol(ubi);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100117
Heiko Schocherff94bc42014-06-24 10:10:04 +0200118 self_vtbl_check(ubi);
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200119 return err ? err : 0;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100120}
121
122/**
Heiko Schocherff94bc42014-06-24 10:10:04 +0200123 * ubi_vtbl_rename_volumes - rename UBI volumes in the volume table.
124 * @ubi: UBI device description object
125 * @rename_list: list of &struct ubi_rename_entry objects
126 *
127 * This function re-names multiple volumes specified in @req in the volume
128 * table. Returns zero in case of success and a negative error code in case of
129 * failure.
130 */
131int ubi_vtbl_rename_volumes(struct ubi_device *ubi,
132 struct list_head *rename_list)
133{
Heiko Schocherff94bc42014-06-24 10:10:04 +0200134 struct ubi_rename_entry *re;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200135
136 list_for_each_entry(re, rename_list, list) {
137 uint32_t crc;
138 struct ubi_volume *vol = re->desc->vol;
139 struct ubi_vtbl_record *vtbl_rec = &ubi->vtbl[vol->vol_id];
140
141 if (re->remove) {
142 memcpy(vtbl_rec, &empty_vtbl_record,
143 sizeof(struct ubi_vtbl_record));
144 continue;
145 }
146
147 vtbl_rec->name_len = cpu_to_be16(re->new_name_len);
148 memcpy(vtbl_rec->name, re->new_name, re->new_name_len);
149 memset(vtbl_rec->name + re->new_name_len, 0,
150 UBI_VOL_NAME_MAX + 1 - re->new_name_len);
151 crc = crc32(UBI_CRC32_INIT, vtbl_rec,
152 UBI_VTBL_RECORD_SIZE_CRC);
153 vtbl_rec->crc = cpu_to_be32(crc);
154 }
155
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200156 return ubi_update_layout_vol(ubi);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200157}
158
159/**
160 * vtbl_check - check if volume table is not corrupted and sensible.
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100161 * @ubi: UBI device description object
162 * @vtbl: volume table
163 *
164 * This function returns zero if @vtbl is all right, %1 if CRC is incorrect,
165 * and %-EINVAL if it contains inconsistent data.
166 */
167static int vtbl_check(const struct ubi_device *ubi,
168 const struct ubi_vtbl_record *vtbl)
169{
170 int i, n, reserved_pebs, alignment, data_pad, vol_type, name_len;
171 int upd_marker, err;
172 uint32_t crc;
173 const char *name;
174
175 for (i = 0; i < ubi->vtbl_slots; i++) {
176 cond_resched();
177
178 reserved_pebs = be32_to_cpu(vtbl[i].reserved_pebs);
179 alignment = be32_to_cpu(vtbl[i].alignment);
180 data_pad = be32_to_cpu(vtbl[i].data_pad);
181 upd_marker = vtbl[i].upd_marker;
182 vol_type = vtbl[i].vol_type;
183 name_len = be16_to_cpu(vtbl[i].name_len);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200184 name = &vtbl[i].name[0];
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100185
186 crc = crc32(UBI_CRC32_INIT, &vtbl[i], UBI_VTBL_RECORD_SIZE_CRC);
187 if (be32_to_cpu(vtbl[i].crc) != crc) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200188 ubi_err(ubi, "bad CRC at record %u: %#08x, not %#08x",
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100189 i, crc, be32_to_cpu(vtbl[i].crc));
Heiko Schocherff94bc42014-06-24 10:10:04 +0200190 ubi_dump_vtbl_record(&vtbl[i], i);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100191 return 1;
192 }
193
194 if (reserved_pebs == 0) {
195 if (memcmp(&vtbl[i], &empty_vtbl_record,
196 UBI_VTBL_RECORD_SIZE)) {
197 err = 2;
198 goto bad;
199 }
200 continue;
201 }
202
203 if (reserved_pebs < 0 || alignment < 0 || data_pad < 0 ||
204 name_len < 0) {
205 err = 3;
206 goto bad;
207 }
208
209 if (alignment > ubi->leb_size || alignment == 0) {
210 err = 4;
211 goto bad;
212 }
213
214 n = alignment & (ubi->min_io_size - 1);
215 if (alignment != 1 && n) {
216 err = 5;
217 goto bad;
218 }
219
220 n = ubi->leb_size % alignment;
221 if (data_pad != n) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200222 ubi_err(ubi, "bad data_pad, has to be %d", n);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100223 err = 6;
224 goto bad;
225 }
226
227 if (vol_type != UBI_VID_DYNAMIC && vol_type != UBI_VID_STATIC) {
228 err = 7;
229 goto bad;
230 }
231
232 if (upd_marker != 0 && upd_marker != 1) {
233 err = 8;
234 goto bad;
235 }
236
237 if (reserved_pebs > ubi->good_peb_count) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200238 ubi_err(ubi, "too large reserved_pebs %d, good PEBs %d",
Heiko Schocherff94bc42014-06-24 10:10:04 +0200239 reserved_pebs, ubi->good_peb_count);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100240 err = 9;
241 goto bad;
242 }
243
244 if (name_len > UBI_VOL_NAME_MAX) {
245 err = 10;
246 goto bad;
247 }
248
249 if (name[0] == '\0') {
250 err = 11;
251 goto bad;
252 }
253
254 if (name_len != strnlen(name, name_len + 1)) {
255 err = 12;
256 goto bad;
257 }
258 }
259
260 /* Checks that all names are unique */
261 for (i = 0; i < ubi->vtbl_slots - 1; i++) {
262 for (n = i + 1; n < ubi->vtbl_slots; n++) {
263 int len1 = be16_to_cpu(vtbl[i].name_len);
264 int len2 = be16_to_cpu(vtbl[n].name_len);
265
266 if (len1 > 0 && len1 == len2 &&
Heiko Schocherff94bc42014-06-24 10:10:04 +0200267#ifndef __UBOOT__
268 !strncmp(vtbl[i].name, vtbl[n].name, len1)) {
269#else
270 !strncmp((char *)vtbl[i].name, vtbl[n].name, len1)) {
271#endif
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200272 ubi_err(ubi, "volumes %d and %d have the same name \"%s\"",
Heiko Schocherff94bc42014-06-24 10:10:04 +0200273 i, n, vtbl[i].name);
274 ubi_dump_vtbl_record(&vtbl[i], i);
275 ubi_dump_vtbl_record(&vtbl[n], n);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100276 return -EINVAL;
277 }
278 }
279 }
280
281 return 0;
282
283bad:
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200284 ubi_err(ubi, "volume table check failed: record %d, error %d", i, err);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200285 ubi_dump_vtbl_record(&vtbl[i], i);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100286 return -EINVAL;
287}
288
289/**
290 * create_vtbl - create a copy of volume table.
291 * @ubi: UBI device description object
Heiko Schocherff94bc42014-06-24 10:10:04 +0200292 * @ai: attaching information
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100293 * @copy: number of the volume table copy
294 * @vtbl: contents of the volume table
295 *
296 * This function returns zero in case of success and a negative error code in
297 * case of failure.
298 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200299static int create_vtbl(struct ubi_device *ubi, struct ubi_attach_info *ai,
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100300 int copy, void *vtbl)
301{
302 int err, tries = 0;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200303 struct ubi_vid_hdr *vid_hdr;
304 struct ubi_ainf_peb *new_aeb;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100305
Heiko Schocherff94bc42014-06-24 10:10:04 +0200306 dbg_gen("create volume table (copy #%d)", copy + 1);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100307
308 vid_hdr = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL);
309 if (!vid_hdr)
310 return -ENOMEM;
311
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100312retry:
Heiko Schocherff94bc42014-06-24 10:10:04 +0200313 new_aeb = ubi_early_get_peb(ubi, ai);
314 if (IS_ERR(new_aeb)) {
315 err = PTR_ERR(new_aeb);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100316 goto out_free;
317 }
318
Heiko Schocherff94bc42014-06-24 10:10:04 +0200319 vid_hdr->vol_type = UBI_LAYOUT_VOLUME_TYPE;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100320 vid_hdr->vol_id = cpu_to_be32(UBI_LAYOUT_VOLUME_ID);
321 vid_hdr->compat = UBI_LAYOUT_VOLUME_COMPAT;
322 vid_hdr->data_size = vid_hdr->used_ebs =
323 vid_hdr->data_pad = cpu_to_be32(0);
324 vid_hdr->lnum = cpu_to_be32(copy);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200325 vid_hdr->sqnum = cpu_to_be64(++ai->max_sqnum);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100326
327 /* The EC header is already there, write the VID header */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200328 err = ubi_io_write_vid_hdr(ubi, new_aeb->pnum, vid_hdr);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100329 if (err)
330 goto write_error;
331
332 /* Write the layout volume contents */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200333 err = ubi_io_write_data(ubi, vtbl, new_aeb->pnum, 0, ubi->vtbl_size);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100334 if (err)
335 goto write_error;
336
337 /*
Heiko Schocherff94bc42014-06-24 10:10:04 +0200338 * And add it to the attaching information. Don't delete the old version
339 * of this LEB as it will be deleted and freed in 'ubi_add_to_av()'.
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100340 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200341 err = ubi_add_to_av(ubi, ai, new_aeb->pnum, new_aeb->ec, vid_hdr, 0);
342 kmem_cache_free(ai->aeb_slab_cache, new_aeb);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100343 ubi_free_vid_hdr(ubi, vid_hdr);
344 return err;
345
346write_error:
347 if (err == -EIO && ++tries <= 5) {
348 /*
349 * Probably this physical eraseblock went bad, try to pick
350 * another one.
351 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200352 list_add(&new_aeb->u.list, &ai->erase);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100353 goto retry;
354 }
Heiko Schocherff94bc42014-06-24 10:10:04 +0200355 kmem_cache_free(ai->aeb_slab_cache, new_aeb);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100356out_free:
357 ubi_free_vid_hdr(ubi, vid_hdr);
358 return err;
359
360}
361
362/**
363 * process_lvol - process the layout volume.
364 * @ubi: UBI device description object
Heiko Schocherff94bc42014-06-24 10:10:04 +0200365 * @ai: attaching information
366 * @av: layout volume attaching information
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100367 *
368 * This function is responsible for reading the layout volume, ensuring it is
369 * not corrupted, and recovering from corruptions if needed. Returns volume
370 * table in case of success and a negative error code in case of failure.
371 */
372static struct ubi_vtbl_record *process_lvol(struct ubi_device *ubi,
Heiko Schocherff94bc42014-06-24 10:10:04 +0200373 struct ubi_attach_info *ai,
374 struct ubi_ainf_volume *av)
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100375{
376 int err;
377 struct rb_node *rb;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200378 struct ubi_ainf_peb *aeb;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100379 struct ubi_vtbl_record *leb[UBI_LAYOUT_VOLUME_EBS] = { NULL, NULL };
380 int leb_corrupted[UBI_LAYOUT_VOLUME_EBS] = {1, 1};
381
382 /*
383 * UBI goes through the following steps when it changes the layout
384 * volume:
385 * a. erase LEB 0;
386 * b. write new data to LEB 0;
387 * c. erase LEB 1;
388 * d. write new data to LEB 1.
389 *
390 * Before the change, both LEBs contain the same data.
391 *
392 * Due to unclean reboots, the contents of LEB 0 may be lost, but there
393 * should LEB 1. So it is OK if LEB 0 is corrupted while LEB 1 is not.
394 * Similarly, LEB 1 may be lost, but there should be LEB 0. And
395 * finally, unclean reboots may result in a situation when neither LEB
396 * 0 nor LEB 1 are corrupted, but they are different. In this case, LEB
397 * 0 contains more recent information.
398 *
399 * So the plan is to first check LEB 0. Then
Heiko Schocherff94bc42014-06-24 10:10:04 +0200400 * a. if LEB 0 is OK, it must be containing the most recent data; then
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100401 * we compare it with LEB 1, and if they are different, we copy LEB
402 * 0 to LEB 1;
403 * b. if LEB 0 is corrupted, but LEB 1 has to be OK, and we copy LEB 1
404 * to LEB 0.
405 */
406
Heiko Schocherff94bc42014-06-24 10:10:04 +0200407 dbg_gen("check layout volume");
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100408
409 /* Read both LEB 0 and LEB 1 into memory */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200410 ubi_rb_for_each_entry(rb, aeb, &av->root, u.rb) {
411 leb[aeb->lnum] = vzalloc(ubi->vtbl_size);
412 if (!leb[aeb->lnum]) {
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100413 err = -ENOMEM;
414 goto out_free;
415 }
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100416
Heiko Schocherff94bc42014-06-24 10:10:04 +0200417 err = ubi_io_read_data(ubi, leb[aeb->lnum], aeb->pnum, 0,
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100418 ubi->vtbl_size);
Sergey Lapindfe64e22013-01-14 03:46:50 +0000419 if (err == UBI_IO_BITFLIPS || mtd_is_eccerr(err))
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100420 /*
421 * Scrub the PEB later. Note, -EBADMSG indicates an
422 * uncorrectable ECC error, but we have our own CRC and
423 * the data will be checked later. If the data is OK,
424 * the PEB will be scrubbed (because we set
Heiko Schocherff94bc42014-06-24 10:10:04 +0200425 * aeb->scrub). If the data is not OK, the contents of
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100426 * the PEB will be recovered from the second copy, and
Heiko Schocherff94bc42014-06-24 10:10:04 +0200427 * aeb->scrub will be cleared in
428 * 'ubi_add_to_av()'.
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100429 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200430 aeb->scrub = 1;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100431 else if (err)
432 goto out_free;
433 }
434
435 err = -EINVAL;
436 if (leb[0]) {
437 leb_corrupted[0] = vtbl_check(ubi, leb[0]);
438 if (leb_corrupted[0] < 0)
439 goto out_free;
440 }
441
442 if (!leb_corrupted[0]) {
443 /* LEB 0 is OK */
444 if (leb[1])
Heiko Schocherff94bc42014-06-24 10:10:04 +0200445 leb_corrupted[1] = memcmp(leb[0], leb[1],
446 ubi->vtbl_size);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100447 if (leb_corrupted[1]) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200448 ubi_warn(ubi, "volume table copy #2 is corrupted");
Heiko Schocherff94bc42014-06-24 10:10:04 +0200449 err = create_vtbl(ubi, ai, 1, leb[0]);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100450 if (err)
451 goto out_free;
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200452 ubi_msg(ubi, "volume table was restored");
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100453 }
454
455 /* Both LEB 1 and LEB 2 are OK and consistent */
456 vfree(leb[1]);
457 return leb[0];
458 } else {
459 /* LEB 0 is corrupted or does not exist */
460 if (leb[1]) {
461 leb_corrupted[1] = vtbl_check(ubi, leb[1]);
462 if (leb_corrupted[1] < 0)
463 goto out_free;
464 }
465 if (leb_corrupted[1]) {
466 /* Both LEB 0 and LEB 1 are corrupted */
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200467 ubi_err(ubi, "both volume tables are corrupted");
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100468 goto out_free;
469 }
470
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200471 ubi_warn(ubi, "volume table copy #1 is corrupted");
Heiko Schocherff94bc42014-06-24 10:10:04 +0200472 err = create_vtbl(ubi, ai, 0, leb[1]);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100473 if (err)
474 goto out_free;
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200475 ubi_msg(ubi, "volume table was restored");
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100476
477 vfree(leb[0]);
478 return leb[1];
479 }
480
481out_free:
482 vfree(leb[0]);
483 vfree(leb[1]);
484 return ERR_PTR(err);
485}
486
487/**
488 * create_empty_lvol - create empty layout volume.
489 * @ubi: UBI device description object
Heiko Schocherff94bc42014-06-24 10:10:04 +0200490 * @ai: attaching information
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100491 *
492 * This function returns volume table contents in case of success and a
493 * negative error code in case of failure.
494 */
495static struct ubi_vtbl_record *create_empty_lvol(struct ubi_device *ubi,
Heiko Schocherff94bc42014-06-24 10:10:04 +0200496 struct ubi_attach_info *ai)
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100497{
498 int i;
499 struct ubi_vtbl_record *vtbl;
500
Heiko Schocherff94bc42014-06-24 10:10:04 +0200501 vtbl = vzalloc(ubi->vtbl_size);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100502 if (!vtbl)
503 return ERR_PTR(-ENOMEM);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100504
505 for (i = 0; i < ubi->vtbl_slots; i++)
506 memcpy(&vtbl[i], &empty_vtbl_record, UBI_VTBL_RECORD_SIZE);
507
508 for (i = 0; i < UBI_LAYOUT_VOLUME_EBS; i++) {
509 int err;
510
Heiko Schocherff94bc42014-06-24 10:10:04 +0200511 err = create_vtbl(ubi, ai, i, vtbl);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100512 if (err) {
513 vfree(vtbl);
514 return ERR_PTR(err);
515 }
516 }
517
518 return vtbl;
519}
520
521/**
522 * init_volumes - initialize volume information for existing volumes.
523 * @ubi: UBI device description object
Heiko Schocherff94bc42014-06-24 10:10:04 +0200524 * @ai: scanning information
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100525 * @vtbl: volume table
526 *
527 * This function allocates volume description objects for existing volumes.
528 * Returns zero in case of success and a negative error code in case of
529 * failure.
530 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200531static int init_volumes(struct ubi_device *ubi,
532 const struct ubi_attach_info *ai,
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100533 const struct ubi_vtbl_record *vtbl)
534{
535 int i, reserved_pebs = 0;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200536 struct ubi_ainf_volume *av;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100537 struct ubi_volume *vol;
538
539 for (i = 0; i < ubi->vtbl_slots; i++) {
540 cond_resched();
541
542 if (be32_to_cpu(vtbl[i].reserved_pebs) == 0)
543 continue; /* Empty record */
544
545 vol = kzalloc(sizeof(struct ubi_volume), GFP_KERNEL);
546 if (!vol)
547 return -ENOMEM;
548
549 vol->reserved_pebs = be32_to_cpu(vtbl[i].reserved_pebs);
550 vol->alignment = be32_to_cpu(vtbl[i].alignment);
551 vol->data_pad = be32_to_cpu(vtbl[i].data_pad);
Peter Hortonceeba002010-06-12 10:11:56 +0900552 vol->upd_marker = vtbl[i].upd_marker;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100553 vol->vol_type = vtbl[i].vol_type == UBI_VID_DYNAMIC ?
554 UBI_DYNAMIC_VOLUME : UBI_STATIC_VOLUME;
555 vol->name_len = be16_to_cpu(vtbl[i].name_len);
556 vol->usable_leb_size = ubi->leb_size - vol->data_pad;
557 memcpy(vol->name, vtbl[i].name, vol->name_len);
558 vol->name[vol->name_len] = '\0';
559 vol->vol_id = i;
560
Quentin Schulz386f20c2019-09-12 16:41:01 +0200561 if (vtbl[i].flags & UBI_VTBL_SKIP_CRC_CHECK_FLG)
562 vol->skip_check = 1;
563
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100564 if (vtbl[i].flags & UBI_VTBL_AUTORESIZE_FLG) {
565 /* Auto re-size flag may be set only for one volume */
566 if (ubi->autoresize_vol_id != -1) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200567 ubi_err(ubi, "more than one auto-resize volume (%d and %d)",
Heiko Schocherff94bc42014-06-24 10:10:04 +0200568 ubi->autoresize_vol_id, i);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100569 kfree(vol);
570 return -EINVAL;
571 }
572
573 ubi->autoresize_vol_id = i;
574 }
575
576 ubi_assert(!ubi->volumes[i]);
577 ubi->volumes[i] = vol;
578 ubi->vol_count += 1;
579 vol->ubi = ubi;
580 reserved_pebs += vol->reserved_pebs;
581
582 /*
583 * In case of dynamic volume UBI knows nothing about how many
584 * data is stored there. So assume the whole volume is used.
585 */
586 if (vol->vol_type == UBI_DYNAMIC_VOLUME) {
587 vol->used_ebs = vol->reserved_pebs;
588 vol->last_eb_bytes = vol->usable_leb_size;
589 vol->used_bytes =
590 (long long)vol->used_ebs * vol->usable_leb_size;
591 continue;
592 }
593
594 /* Static volumes only */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200595 av = ubi_find_av(ai, i);
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200596 if (!av || !av->leb_count) {
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100597 /*
598 * No eraseblocks belonging to this volume found. We
599 * don't actually know whether this static volume is
600 * completely corrupted or just contains no data. And
601 * we cannot know this as long as data size is not
602 * stored on flash. So we just assume the volume is
603 * empty. FIXME: this should be handled.
604 */
605 continue;
606 }
607
Heiko Schocherff94bc42014-06-24 10:10:04 +0200608 if (av->leb_count != av->used_ebs) {
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100609 /*
610 * We found a static volume which misses several
611 * eraseblocks. Treat it as corrupted.
612 */
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200613 ubi_warn(ubi, "static volume %d misses %d LEBs - corrupted",
Heiko Schocherff94bc42014-06-24 10:10:04 +0200614 av->vol_id, av->used_ebs - av->leb_count);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100615 vol->corrupted = 1;
616 continue;
617 }
618
Heiko Schocherff94bc42014-06-24 10:10:04 +0200619 vol->used_ebs = av->used_ebs;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100620 vol->used_bytes =
621 (long long)(vol->used_ebs - 1) * vol->usable_leb_size;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200622 vol->used_bytes += av->last_data_size;
623 vol->last_eb_bytes = av->last_data_size;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100624 }
625
626 /* And add the layout volume */
627 vol = kzalloc(sizeof(struct ubi_volume), GFP_KERNEL);
628 if (!vol)
629 return -ENOMEM;
630
631 vol->reserved_pebs = UBI_LAYOUT_VOLUME_EBS;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200632 vol->alignment = UBI_LAYOUT_VOLUME_ALIGN;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100633 vol->vol_type = UBI_DYNAMIC_VOLUME;
634 vol->name_len = sizeof(UBI_LAYOUT_VOLUME_NAME) - 1;
635 memcpy(vol->name, UBI_LAYOUT_VOLUME_NAME, vol->name_len + 1);
636 vol->usable_leb_size = ubi->leb_size;
637 vol->used_ebs = vol->reserved_pebs;
638 vol->last_eb_bytes = vol->reserved_pebs;
639 vol->used_bytes =
640 (long long)vol->used_ebs * (ubi->leb_size - vol->data_pad);
641 vol->vol_id = UBI_LAYOUT_VOLUME_ID;
642 vol->ref_count = 1;
643
644 ubi_assert(!ubi->volumes[i]);
645 ubi->volumes[vol_id2idx(ubi, vol->vol_id)] = vol;
646 reserved_pebs += vol->reserved_pebs;
647 ubi->vol_count += 1;
648 vol->ubi = ubi;
649
Heiko Schocherff94bc42014-06-24 10:10:04 +0200650 if (reserved_pebs > ubi->avail_pebs) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200651 ubi_err(ubi, "not enough PEBs, required %d, available %d",
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100652 reserved_pebs, ubi->avail_pebs);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200653 if (ubi->corr_peb_count)
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200654 ubi_err(ubi, "%d PEBs are corrupted and not used",
Heiko Schocherff94bc42014-06-24 10:10:04 +0200655 ubi->corr_peb_count);
656 }
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100657 ubi->rsvd_pebs += reserved_pebs;
658 ubi->avail_pebs -= reserved_pebs;
659
660 return 0;
661}
662
663/**
Heiko Schocherff94bc42014-06-24 10:10:04 +0200664 * check_av - check volume attaching information.
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100665 * @vol: UBI volume description object
Heiko Schocherff94bc42014-06-24 10:10:04 +0200666 * @av: volume attaching information
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100667 *
Heiko Schocherff94bc42014-06-24 10:10:04 +0200668 * This function returns zero if the volume attaching information is consistent
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100669 * to the data read from the volume tabla, and %-EINVAL if not.
670 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200671static int check_av(const struct ubi_volume *vol,
672 const struct ubi_ainf_volume *av)
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100673{
674 int err;
675
Heiko Schocherff94bc42014-06-24 10:10:04 +0200676 if (av->highest_lnum >= vol->reserved_pebs) {
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100677 err = 1;
678 goto bad;
679 }
Heiko Schocherff94bc42014-06-24 10:10:04 +0200680 if (av->leb_count > vol->reserved_pebs) {
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100681 err = 2;
682 goto bad;
683 }
Heiko Schocherff94bc42014-06-24 10:10:04 +0200684 if (av->vol_type != vol->vol_type) {
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100685 err = 3;
686 goto bad;
687 }
Heiko Schocherff94bc42014-06-24 10:10:04 +0200688 if (av->used_ebs > vol->reserved_pebs) {
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100689 err = 4;
690 goto bad;
691 }
Heiko Schocherff94bc42014-06-24 10:10:04 +0200692 if (av->data_pad != vol->data_pad) {
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100693 err = 5;
694 goto bad;
695 }
696 return 0;
697
698bad:
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200699 ubi_err(vol->ubi, "bad attaching information, error %d", err);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200700 ubi_dump_av(av);
701 ubi_dump_vol_info(vol);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100702 return -EINVAL;
703}
704
705/**
Heiko Schocherff94bc42014-06-24 10:10:04 +0200706 * check_attaching_info - check that attaching information.
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100707 * @ubi: UBI device description object
Heiko Schocherff94bc42014-06-24 10:10:04 +0200708 * @ai: attaching information
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100709 *
710 * Even though we protect on-flash data by CRC checksums, we still don't trust
Heiko Schocherff94bc42014-06-24 10:10:04 +0200711 * the media. This function ensures that attaching information is consistent to
712 * the information read from the volume table. Returns zero if the attaching
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100713 * information is OK and %-EINVAL if it is not.
714 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200715static int check_attaching_info(const struct ubi_device *ubi,
716 struct ubi_attach_info *ai)
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100717{
718 int err, i;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200719 struct ubi_ainf_volume *av;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100720 struct ubi_volume *vol;
721
Heiko Schocherff94bc42014-06-24 10:10:04 +0200722 if (ai->vols_found > UBI_INT_VOL_COUNT + ubi->vtbl_slots) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200723 ubi_err(ubi, "found %d volumes while attaching, maximum is %d + %d",
Heiko Schocherff94bc42014-06-24 10:10:04 +0200724 ai->vols_found, UBI_INT_VOL_COUNT, ubi->vtbl_slots);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100725 return -EINVAL;
726 }
727
Heiko Schocherff94bc42014-06-24 10:10:04 +0200728 if (ai->highest_vol_id >= ubi->vtbl_slots + UBI_INT_VOL_COUNT &&
729 ai->highest_vol_id < UBI_INTERNAL_VOL_START) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200730 ubi_err(ubi, "too large volume ID %d found",
731 ai->highest_vol_id);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100732 return -EINVAL;
733 }
734
735 for (i = 0; i < ubi->vtbl_slots + UBI_INT_VOL_COUNT; i++) {
736 cond_resched();
737
Heiko Schocherff94bc42014-06-24 10:10:04 +0200738 av = ubi_find_av(ai, i);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100739 vol = ubi->volumes[i];
740 if (!vol) {
Heiko Schocherff94bc42014-06-24 10:10:04 +0200741 if (av)
742 ubi_remove_av(ai, av);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100743 continue;
744 }
745
746 if (vol->reserved_pebs == 0) {
747 ubi_assert(i < ubi->vtbl_slots);
748
Heiko Schocherff94bc42014-06-24 10:10:04 +0200749 if (!av)
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100750 continue;
751
752 /*
Heiko Schocherff94bc42014-06-24 10:10:04 +0200753 * During attaching we found a volume which does not
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100754 * exist according to the information in the volume
755 * table. This must have happened due to an unclean
756 * reboot while the volume was being removed. Discard
757 * these eraseblocks.
758 */
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200759 ubi_msg(ubi, "finish volume %d removal", av->vol_id);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200760 ubi_remove_av(ai, av);
761 } else if (av) {
762 err = check_av(vol, av);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100763 if (err)
764 return err;
765 }
766 }
767
768 return 0;
769}
770
771/**
Heiko Schocherff94bc42014-06-24 10:10:04 +0200772 * ubi_read_volume_table - read the volume table.
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100773 * @ubi: UBI device description object
Heiko Schocherff94bc42014-06-24 10:10:04 +0200774 * @ai: attaching information
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100775 *
776 * This function reads volume table, checks it, recover from errors if needed,
777 * or creates it if needed. Returns zero in case of success and a negative
778 * error code in case of failure.
779 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200780int ubi_read_volume_table(struct ubi_device *ubi, struct ubi_attach_info *ai)
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100781{
782 int i, err;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200783 struct ubi_ainf_volume *av;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100784
785 empty_vtbl_record.crc = cpu_to_be32(0xf116c36b);
786
787 /*
788 * The number of supported volumes is limited by the eraseblock size
789 * and by the UBI_MAX_VOLUMES constant.
790 */
791 ubi->vtbl_slots = ubi->leb_size / UBI_VTBL_RECORD_SIZE;
792 if (ubi->vtbl_slots > UBI_MAX_VOLUMES)
793 ubi->vtbl_slots = UBI_MAX_VOLUMES;
794
795 ubi->vtbl_size = ubi->vtbl_slots * UBI_VTBL_RECORD_SIZE;
796 ubi->vtbl_size = ALIGN(ubi->vtbl_size, ubi->min_io_size);
797
Heiko Schocherff94bc42014-06-24 10:10:04 +0200798 av = ubi_find_av(ai, UBI_LAYOUT_VOLUME_ID);
799 if (!av) {
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100800 /*
801 * No logical eraseblocks belonging to the layout volume were
802 * found. This could mean that the flash is just empty. In
803 * this case we create empty layout volume.
804 *
805 * But if flash is not empty this must be a corruption or the
806 * MTD device just contains garbage.
807 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200808 if (ai->is_empty) {
809 ubi->vtbl = create_empty_lvol(ubi, ai);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100810 if (IS_ERR(ubi->vtbl))
811 return PTR_ERR(ubi->vtbl);
812 } else {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200813 ubi_err(ubi, "the layout volume was not found");
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100814 return -EINVAL;
815 }
816 } else {
Heiko Schocherff94bc42014-06-24 10:10:04 +0200817 if (av->leb_count > UBI_LAYOUT_VOLUME_EBS) {
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100818 /* This must not happen with proper UBI images */
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200819 ubi_err(ubi, "too many LEBs (%d) in layout volume",
Heiko Schocherff94bc42014-06-24 10:10:04 +0200820 av->leb_count);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100821 return -EINVAL;
822 }
823
Heiko Schocherff94bc42014-06-24 10:10:04 +0200824 ubi->vtbl = process_lvol(ubi, ai, av);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100825 if (IS_ERR(ubi->vtbl))
826 return PTR_ERR(ubi->vtbl);
827 }
828
Heiko Schocherff94bc42014-06-24 10:10:04 +0200829 ubi->avail_pebs = ubi->good_peb_count - ubi->corr_peb_count;
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100830
831 /*
832 * The layout volume is OK, initialize the corresponding in-RAM data
833 * structures.
834 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200835 err = init_volumes(ubi, ai, ubi->vtbl);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100836 if (err)
837 goto out_free;
838
839 /*
Heiko Schocherff94bc42014-06-24 10:10:04 +0200840 * Make sure that the attaching information is consistent to the
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100841 * information stored in the volume table.
842 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200843 err = check_attaching_info(ubi, ai);
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100844 if (err)
845 goto out_free;
846
847 return 0;
848
849out_free:
850 vfree(ubi->vtbl);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200851 for (i = 0; i < ubi->vtbl_slots + UBI_INT_VOL_COUNT; i++) {
852 kfree(ubi->volumes[i]);
853 ubi->volumes[i] = NULL;
854 }
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100855 return err;
856}
857
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100858/**
Heiko Schocherff94bc42014-06-24 10:10:04 +0200859 * self_vtbl_check - check volume table.
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100860 * @ubi: UBI device description object
861 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200862static void self_vtbl_check(const struct ubi_device *ubi)
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100863{
Heiko Schocherff94bc42014-06-24 10:10:04 +0200864 if (!ubi_dbg_chk_gen(ubi))
865 return;
866
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100867 if (vtbl_check(ubi, ubi->vtbl)) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200868 ubi_err(ubi, "self-check failed");
Kyungmin Parkc91a7192008-11-19 16:28:06 +0100869 BUG();
870 }
871}