Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) International Business Machines Corp., 2006 |
| 4 | * Copyright (c) Nokia Corporation, 2006, 2007 |
| 5 | * |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 6 | * 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 Schocher | 94b66de | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 20 | * 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 Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 24 | * |
Heiko Schocher | 94b66de | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 25 | * When the volume table is changed, it is first changed in RAM. Then LEB 0 is |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 26 | * 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 Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 30 | * information about how much data static volumes contain. |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 31 | * |
| 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 Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 35 | * corresponding MTD device, for some reason we find no logical eraseblocks |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 36 | * 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 Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 38 | * eraseblocks went bad. So we cannot alarm the user properly. |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 39 | * |
| 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 Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 48 | #ifndef __UBOOT__ |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame^] | 49 | #include <log.h> |
Simon Glass | d66c5f7 | 2020-02-03 07:36:15 -0700 | [diff] [blame] | 50 | #include <dm/devres.h> |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 51 | #include <linux/crc32.h> |
| 52 | #include <linux/err.h> |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 53 | #include <linux/slab.h> |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 54 | #include <asm/div64.h> |
Simon Glass | 48b6c6b | 2019-11-14 12:57:16 -0700 | [diff] [blame] | 55 | #include <u-boot/crc.h> |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 56 | #else |
| 57 | #include <ubi_uboot.h> |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 58 | #endif |
| 59 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 60 | #include <linux/err.h> |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 61 | #include "ubi.h" |
| 62 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 63 | static void self_vtbl_check(const struct ubi_device *ubi); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 64 | |
| 65 | /* Empty volume table record */ |
| 66 | static struct ubi_vtbl_record empty_vtbl_record; |
| 67 | |
| 68 | /** |
Heiko Schocher | 94b66de | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 69 | * ubi_update_layout_vol - helper for updatting layout volumes on flash |
| 70 | * @ubi: UBI device description object |
| 71 | */ |
| 72 | static int ubi_update_layout_vol(struct ubi_device *ubi) |
| 73 | { |
| 74 | struct ubi_volume *layout_vol; |
| 75 | int i, err; |
| 76 | |
| 77 | layout_vol = ubi->volumes[vol_id2idx(ubi, UBI_LAYOUT_VOLUME_ID)]; |
| 78 | for (i = 0; i < UBI_LAYOUT_VOLUME_EBS; i++) { |
| 79 | err = ubi_eba_atomic_leb_change(ubi, layout_vol, i, ubi->vtbl, |
| 80 | ubi->vtbl_size); |
| 81 | if (err) |
| 82 | return err; |
| 83 | } |
| 84 | |
| 85 | return 0; |
| 86 | } |
| 87 | |
| 88 | /** |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 89 | * ubi_change_vtbl_record - change volume table record. |
| 90 | * @ubi: UBI device description object |
| 91 | * @idx: table index to change |
| 92 | * @vtbl_rec: new volume table record |
| 93 | * |
| 94 | * This function changes volume table record @idx. If @vtbl_rec is %NULL, empty |
| 95 | * volume table record is written. The caller does not have to calculate CRC of |
| 96 | * the record as it is done by this function. Returns zero in case of success |
| 97 | * and a negative error code in case of failure. |
| 98 | */ |
| 99 | int ubi_change_vtbl_record(struct ubi_device *ubi, int idx, |
| 100 | struct ubi_vtbl_record *vtbl_rec) |
| 101 | { |
Heiko Schocher | 94b66de | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 102 | int err; |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 103 | uint32_t crc; |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 104 | |
| 105 | ubi_assert(idx >= 0 && idx < ubi->vtbl_slots); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 106 | |
| 107 | if (!vtbl_rec) |
| 108 | vtbl_rec = &empty_vtbl_record; |
| 109 | else { |
| 110 | crc = crc32(UBI_CRC32_INIT, vtbl_rec, UBI_VTBL_RECORD_SIZE_CRC); |
| 111 | vtbl_rec->crc = cpu_to_be32(crc); |
| 112 | } |
| 113 | |
| 114 | memcpy(&ubi->vtbl[idx], vtbl_rec, sizeof(struct ubi_vtbl_record)); |
Heiko Schocher | 94b66de | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 115 | err = ubi_update_layout_vol(ubi); |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 116 | |
| 117 | self_vtbl_check(ubi); |
Heiko Schocher | 94b66de | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 118 | return err ? err : 0; |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 119 | } |
| 120 | |
| 121 | /** |
| 122 | * ubi_vtbl_rename_volumes - rename UBI volumes in the volume table. |
| 123 | * @ubi: UBI device description object |
| 124 | * @rename_list: list of &struct ubi_rename_entry objects |
| 125 | * |
| 126 | * This function re-names multiple volumes specified in @req in the volume |
| 127 | * table. Returns zero in case of success and a negative error code in case of |
| 128 | * failure. |
| 129 | */ |
| 130 | int ubi_vtbl_rename_volumes(struct ubi_device *ubi, |
| 131 | struct list_head *rename_list) |
| 132 | { |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 133 | struct ubi_rename_entry *re; |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 134 | |
| 135 | list_for_each_entry(re, rename_list, list) { |
| 136 | uint32_t crc; |
| 137 | struct ubi_volume *vol = re->desc->vol; |
| 138 | struct ubi_vtbl_record *vtbl_rec = &ubi->vtbl[vol->vol_id]; |
| 139 | |
| 140 | if (re->remove) { |
| 141 | memcpy(vtbl_rec, &empty_vtbl_record, |
| 142 | sizeof(struct ubi_vtbl_record)); |
| 143 | continue; |
| 144 | } |
| 145 | |
| 146 | vtbl_rec->name_len = cpu_to_be16(re->new_name_len); |
| 147 | memcpy(vtbl_rec->name, re->new_name, re->new_name_len); |
| 148 | memset(vtbl_rec->name + re->new_name_len, 0, |
| 149 | UBI_VOL_NAME_MAX + 1 - re->new_name_len); |
| 150 | crc = crc32(UBI_CRC32_INIT, vtbl_rec, |
| 151 | UBI_VTBL_RECORD_SIZE_CRC); |
| 152 | vtbl_rec->crc = cpu_to_be32(crc); |
| 153 | } |
| 154 | |
Heiko Schocher | 94b66de | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 155 | return ubi_update_layout_vol(ubi); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 156 | } |
| 157 | |
| 158 | /** |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 159 | * vtbl_check - check if volume table is not corrupted and sensible. |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 160 | * @ubi: UBI device description object |
| 161 | * @vtbl: volume table |
| 162 | * |
| 163 | * This function returns zero if @vtbl is all right, %1 if CRC is incorrect, |
| 164 | * and %-EINVAL if it contains inconsistent data. |
| 165 | */ |
| 166 | static int vtbl_check(const struct ubi_device *ubi, |
| 167 | const struct ubi_vtbl_record *vtbl) |
| 168 | { |
| 169 | int i, n, reserved_pebs, alignment, data_pad, vol_type, name_len; |
| 170 | int upd_marker, err; |
| 171 | uint32_t crc; |
| 172 | const char *name; |
| 173 | |
| 174 | for (i = 0; i < ubi->vtbl_slots; i++) { |
| 175 | cond_resched(); |
| 176 | |
| 177 | reserved_pebs = be32_to_cpu(vtbl[i].reserved_pebs); |
| 178 | alignment = be32_to_cpu(vtbl[i].alignment); |
| 179 | data_pad = be32_to_cpu(vtbl[i].data_pad); |
| 180 | upd_marker = vtbl[i].upd_marker; |
| 181 | vol_type = vtbl[i].vol_type; |
| 182 | name_len = be16_to_cpu(vtbl[i].name_len); |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 183 | name = &vtbl[i].name[0]; |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 184 | |
| 185 | crc = crc32(UBI_CRC32_INIT, &vtbl[i], UBI_VTBL_RECORD_SIZE_CRC); |
| 186 | if (be32_to_cpu(vtbl[i].crc) != crc) { |
Heiko Schocher | 94b66de | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 187 | ubi_err(ubi, "bad CRC at record %u: %#08x, not %#08x", |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 188 | i, crc, be32_to_cpu(vtbl[i].crc)); |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 189 | ubi_dump_vtbl_record(&vtbl[i], i); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 190 | return 1; |
| 191 | } |
| 192 | |
| 193 | if (reserved_pebs == 0) { |
| 194 | if (memcmp(&vtbl[i], &empty_vtbl_record, |
| 195 | UBI_VTBL_RECORD_SIZE)) { |
| 196 | err = 2; |
| 197 | goto bad; |
| 198 | } |
| 199 | continue; |
| 200 | } |
| 201 | |
| 202 | if (reserved_pebs < 0 || alignment < 0 || data_pad < 0 || |
| 203 | name_len < 0) { |
| 204 | err = 3; |
| 205 | goto bad; |
| 206 | } |
| 207 | |
| 208 | if (alignment > ubi->leb_size || alignment == 0) { |
| 209 | err = 4; |
| 210 | goto bad; |
| 211 | } |
| 212 | |
| 213 | n = alignment & (ubi->min_io_size - 1); |
| 214 | if (alignment != 1 && n) { |
| 215 | err = 5; |
| 216 | goto bad; |
| 217 | } |
| 218 | |
| 219 | n = ubi->leb_size % alignment; |
| 220 | if (data_pad != n) { |
Heiko Schocher | 94b66de | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 221 | ubi_err(ubi, "bad data_pad, has to be %d", n); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 222 | err = 6; |
| 223 | goto bad; |
| 224 | } |
| 225 | |
| 226 | if (vol_type != UBI_VID_DYNAMIC && vol_type != UBI_VID_STATIC) { |
| 227 | err = 7; |
| 228 | goto bad; |
| 229 | } |
| 230 | |
| 231 | if (upd_marker != 0 && upd_marker != 1) { |
| 232 | err = 8; |
| 233 | goto bad; |
| 234 | } |
| 235 | |
| 236 | if (reserved_pebs > ubi->good_peb_count) { |
Heiko Schocher | 94b66de | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 237 | ubi_err(ubi, "too large reserved_pebs %d, good PEBs %d", |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 238 | reserved_pebs, ubi->good_peb_count); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 239 | err = 9; |
| 240 | goto bad; |
| 241 | } |
| 242 | |
| 243 | if (name_len > UBI_VOL_NAME_MAX) { |
| 244 | err = 10; |
| 245 | goto bad; |
| 246 | } |
| 247 | |
| 248 | if (name[0] == '\0') { |
| 249 | err = 11; |
| 250 | goto bad; |
| 251 | } |
| 252 | |
| 253 | if (name_len != strnlen(name, name_len + 1)) { |
| 254 | err = 12; |
| 255 | goto bad; |
| 256 | } |
| 257 | } |
| 258 | |
| 259 | /* Checks that all names are unique */ |
| 260 | for (i = 0; i < ubi->vtbl_slots - 1; i++) { |
| 261 | for (n = i + 1; n < ubi->vtbl_slots; n++) { |
| 262 | int len1 = be16_to_cpu(vtbl[i].name_len); |
| 263 | int len2 = be16_to_cpu(vtbl[n].name_len); |
| 264 | |
| 265 | if (len1 > 0 && len1 == len2 && |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 266 | #ifndef __UBOOT__ |
| 267 | !strncmp(vtbl[i].name, vtbl[n].name, len1)) { |
| 268 | #else |
| 269 | !strncmp((char *)vtbl[i].name, vtbl[n].name, len1)) { |
| 270 | #endif |
Heiko Schocher | 94b66de | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 271 | ubi_err(ubi, "volumes %d and %d have the same name \"%s\"", |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 272 | i, n, vtbl[i].name); |
| 273 | ubi_dump_vtbl_record(&vtbl[i], i); |
| 274 | ubi_dump_vtbl_record(&vtbl[n], n); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 275 | return -EINVAL; |
| 276 | } |
| 277 | } |
| 278 | } |
| 279 | |
| 280 | return 0; |
| 281 | |
| 282 | bad: |
Heiko Schocher | 94b66de | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 283 | ubi_err(ubi, "volume table check failed: record %d, error %d", i, err); |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 284 | ubi_dump_vtbl_record(&vtbl[i], i); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 285 | return -EINVAL; |
| 286 | } |
| 287 | |
| 288 | /** |
| 289 | * create_vtbl - create a copy of volume table. |
| 290 | * @ubi: UBI device description object |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 291 | * @ai: attaching information |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 292 | * @copy: number of the volume table copy |
| 293 | * @vtbl: contents of the volume table |
| 294 | * |
| 295 | * This function returns zero in case of success and a negative error code in |
| 296 | * case of failure. |
| 297 | */ |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 298 | static int create_vtbl(struct ubi_device *ubi, struct ubi_attach_info *ai, |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 299 | int copy, void *vtbl) |
| 300 | { |
| 301 | int err, tries = 0; |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 302 | struct ubi_vid_hdr *vid_hdr; |
| 303 | struct ubi_ainf_peb *new_aeb; |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 304 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 305 | dbg_gen("create volume table (copy #%d)", copy + 1); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 306 | |
| 307 | vid_hdr = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL); |
| 308 | if (!vid_hdr) |
| 309 | return -ENOMEM; |
| 310 | |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 311 | retry: |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 312 | new_aeb = ubi_early_get_peb(ubi, ai); |
| 313 | if (IS_ERR(new_aeb)) { |
| 314 | err = PTR_ERR(new_aeb); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 315 | goto out_free; |
| 316 | } |
| 317 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 318 | vid_hdr->vol_type = UBI_LAYOUT_VOLUME_TYPE; |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 319 | vid_hdr->vol_id = cpu_to_be32(UBI_LAYOUT_VOLUME_ID); |
| 320 | vid_hdr->compat = UBI_LAYOUT_VOLUME_COMPAT; |
| 321 | vid_hdr->data_size = vid_hdr->used_ebs = |
| 322 | vid_hdr->data_pad = cpu_to_be32(0); |
| 323 | vid_hdr->lnum = cpu_to_be32(copy); |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 324 | vid_hdr->sqnum = cpu_to_be64(++ai->max_sqnum); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 325 | |
| 326 | /* The EC header is already there, write the VID header */ |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 327 | err = ubi_io_write_vid_hdr(ubi, new_aeb->pnum, vid_hdr); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 328 | if (err) |
| 329 | goto write_error; |
| 330 | |
| 331 | /* Write the layout volume contents */ |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 332 | err = ubi_io_write_data(ubi, vtbl, new_aeb->pnum, 0, ubi->vtbl_size); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 333 | if (err) |
| 334 | goto write_error; |
| 335 | |
| 336 | /* |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 337 | * And add it to the attaching information. Don't delete the old version |
| 338 | * of this LEB as it will be deleted and freed in 'ubi_add_to_av()'. |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 339 | */ |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 340 | err = ubi_add_to_av(ubi, ai, new_aeb->pnum, new_aeb->ec, vid_hdr, 0); |
| 341 | kmem_cache_free(ai->aeb_slab_cache, new_aeb); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 342 | ubi_free_vid_hdr(ubi, vid_hdr); |
| 343 | return err; |
| 344 | |
| 345 | write_error: |
| 346 | if (err == -EIO && ++tries <= 5) { |
| 347 | /* |
| 348 | * Probably this physical eraseblock went bad, try to pick |
| 349 | * another one. |
| 350 | */ |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 351 | list_add(&new_aeb->u.list, &ai->erase); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 352 | goto retry; |
| 353 | } |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 354 | kmem_cache_free(ai->aeb_slab_cache, new_aeb); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 355 | out_free: |
| 356 | ubi_free_vid_hdr(ubi, vid_hdr); |
| 357 | return err; |
| 358 | |
| 359 | } |
| 360 | |
| 361 | /** |
| 362 | * process_lvol - process the layout volume. |
| 363 | * @ubi: UBI device description object |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 364 | * @ai: attaching information |
| 365 | * @av: layout volume attaching information |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 366 | * |
| 367 | * This function is responsible for reading the layout volume, ensuring it is |
| 368 | * not corrupted, and recovering from corruptions if needed. Returns volume |
| 369 | * table in case of success and a negative error code in case of failure. |
| 370 | */ |
| 371 | static struct ubi_vtbl_record *process_lvol(struct ubi_device *ubi, |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 372 | struct ubi_attach_info *ai, |
| 373 | struct ubi_ainf_volume *av) |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 374 | { |
| 375 | int err; |
| 376 | struct rb_node *rb; |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 377 | struct ubi_ainf_peb *aeb; |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 378 | struct ubi_vtbl_record *leb[UBI_LAYOUT_VOLUME_EBS] = { NULL, NULL }; |
| 379 | int leb_corrupted[UBI_LAYOUT_VOLUME_EBS] = {1, 1}; |
| 380 | |
| 381 | /* |
| 382 | * UBI goes through the following steps when it changes the layout |
| 383 | * volume: |
| 384 | * a. erase LEB 0; |
| 385 | * b. write new data to LEB 0; |
| 386 | * c. erase LEB 1; |
| 387 | * d. write new data to LEB 1. |
| 388 | * |
| 389 | * Before the change, both LEBs contain the same data. |
| 390 | * |
| 391 | * Due to unclean reboots, the contents of LEB 0 may be lost, but there |
| 392 | * should LEB 1. So it is OK if LEB 0 is corrupted while LEB 1 is not. |
| 393 | * Similarly, LEB 1 may be lost, but there should be LEB 0. And |
| 394 | * finally, unclean reboots may result in a situation when neither LEB |
| 395 | * 0 nor LEB 1 are corrupted, but they are different. In this case, LEB |
| 396 | * 0 contains more recent information. |
| 397 | * |
| 398 | * So the plan is to first check LEB 0. Then |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 399 | * a. if LEB 0 is OK, it must be containing the most recent data; then |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 400 | * we compare it with LEB 1, and if they are different, we copy LEB |
| 401 | * 0 to LEB 1; |
| 402 | * b. if LEB 0 is corrupted, but LEB 1 has to be OK, and we copy LEB 1 |
| 403 | * to LEB 0. |
| 404 | */ |
| 405 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 406 | dbg_gen("check layout volume"); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 407 | |
| 408 | /* Read both LEB 0 and LEB 1 into memory */ |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 409 | ubi_rb_for_each_entry(rb, aeb, &av->root, u.rb) { |
| 410 | leb[aeb->lnum] = vzalloc(ubi->vtbl_size); |
| 411 | if (!leb[aeb->lnum]) { |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 412 | err = -ENOMEM; |
| 413 | goto out_free; |
| 414 | } |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 415 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 416 | err = ubi_io_read_data(ubi, leb[aeb->lnum], aeb->pnum, 0, |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 417 | ubi->vtbl_size); |
Sergey Lapin | 3a38a55 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 418 | if (err == UBI_IO_BITFLIPS || mtd_is_eccerr(err)) |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 419 | /* |
| 420 | * Scrub the PEB later. Note, -EBADMSG indicates an |
| 421 | * uncorrectable ECC error, but we have our own CRC and |
| 422 | * the data will be checked later. If the data is OK, |
| 423 | * the PEB will be scrubbed (because we set |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 424 | * aeb->scrub). If the data is not OK, the contents of |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 425 | * the PEB will be recovered from the second copy, and |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 426 | * aeb->scrub will be cleared in |
| 427 | * 'ubi_add_to_av()'. |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 428 | */ |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 429 | aeb->scrub = 1; |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 430 | else if (err) |
| 431 | goto out_free; |
| 432 | } |
| 433 | |
| 434 | err = -EINVAL; |
| 435 | if (leb[0]) { |
| 436 | leb_corrupted[0] = vtbl_check(ubi, leb[0]); |
| 437 | if (leb_corrupted[0] < 0) |
| 438 | goto out_free; |
| 439 | } |
| 440 | |
| 441 | if (!leb_corrupted[0]) { |
| 442 | /* LEB 0 is OK */ |
| 443 | if (leb[1]) |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 444 | leb_corrupted[1] = memcmp(leb[0], leb[1], |
| 445 | ubi->vtbl_size); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 446 | if (leb_corrupted[1]) { |
Heiko Schocher | 94b66de | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 447 | ubi_warn(ubi, "volume table copy #2 is corrupted"); |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 448 | err = create_vtbl(ubi, ai, 1, leb[0]); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 449 | if (err) |
| 450 | goto out_free; |
Heiko Schocher | 94b66de | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 451 | ubi_msg(ubi, "volume table was restored"); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 452 | } |
| 453 | |
| 454 | /* Both LEB 1 and LEB 2 are OK and consistent */ |
| 455 | vfree(leb[1]); |
| 456 | return leb[0]; |
| 457 | } else { |
| 458 | /* LEB 0 is corrupted or does not exist */ |
| 459 | if (leb[1]) { |
| 460 | leb_corrupted[1] = vtbl_check(ubi, leb[1]); |
| 461 | if (leb_corrupted[1] < 0) |
| 462 | goto out_free; |
| 463 | } |
| 464 | if (leb_corrupted[1]) { |
| 465 | /* Both LEB 0 and LEB 1 are corrupted */ |
Heiko Schocher | 94b66de | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 466 | ubi_err(ubi, "both volume tables are corrupted"); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 467 | goto out_free; |
| 468 | } |
| 469 | |
Heiko Schocher | 94b66de | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 470 | ubi_warn(ubi, "volume table copy #1 is corrupted"); |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 471 | err = create_vtbl(ubi, ai, 0, leb[1]); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 472 | if (err) |
| 473 | goto out_free; |
Heiko Schocher | 94b66de | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 474 | ubi_msg(ubi, "volume table was restored"); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 475 | |
| 476 | vfree(leb[0]); |
| 477 | return leb[1]; |
| 478 | } |
| 479 | |
| 480 | out_free: |
| 481 | vfree(leb[0]); |
| 482 | vfree(leb[1]); |
| 483 | return ERR_PTR(err); |
| 484 | } |
| 485 | |
| 486 | /** |
| 487 | * create_empty_lvol - create empty layout volume. |
| 488 | * @ubi: UBI device description object |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 489 | * @ai: attaching information |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 490 | * |
| 491 | * This function returns volume table contents in case of success and a |
| 492 | * negative error code in case of failure. |
| 493 | */ |
| 494 | static struct ubi_vtbl_record *create_empty_lvol(struct ubi_device *ubi, |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 495 | struct ubi_attach_info *ai) |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 496 | { |
| 497 | int i; |
| 498 | struct ubi_vtbl_record *vtbl; |
| 499 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 500 | vtbl = vzalloc(ubi->vtbl_size); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 501 | if (!vtbl) |
| 502 | return ERR_PTR(-ENOMEM); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 503 | |
| 504 | for (i = 0; i < ubi->vtbl_slots; i++) |
| 505 | memcpy(&vtbl[i], &empty_vtbl_record, UBI_VTBL_RECORD_SIZE); |
| 506 | |
| 507 | for (i = 0; i < UBI_LAYOUT_VOLUME_EBS; i++) { |
| 508 | int err; |
| 509 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 510 | err = create_vtbl(ubi, ai, i, vtbl); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 511 | if (err) { |
| 512 | vfree(vtbl); |
| 513 | return ERR_PTR(err); |
| 514 | } |
| 515 | } |
| 516 | |
| 517 | return vtbl; |
| 518 | } |
| 519 | |
| 520 | /** |
| 521 | * init_volumes - initialize volume information for existing volumes. |
| 522 | * @ubi: UBI device description object |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 523 | * @ai: scanning information |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 524 | * @vtbl: volume table |
| 525 | * |
| 526 | * This function allocates volume description objects for existing volumes. |
| 527 | * Returns zero in case of success and a negative error code in case of |
| 528 | * failure. |
| 529 | */ |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 530 | static int init_volumes(struct ubi_device *ubi, |
| 531 | const struct ubi_attach_info *ai, |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 532 | const struct ubi_vtbl_record *vtbl) |
| 533 | { |
| 534 | int i, reserved_pebs = 0; |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 535 | struct ubi_ainf_volume *av; |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 536 | struct ubi_volume *vol; |
| 537 | |
| 538 | for (i = 0; i < ubi->vtbl_slots; i++) { |
| 539 | cond_resched(); |
| 540 | |
| 541 | if (be32_to_cpu(vtbl[i].reserved_pebs) == 0) |
| 542 | continue; /* Empty record */ |
| 543 | |
| 544 | vol = kzalloc(sizeof(struct ubi_volume), GFP_KERNEL); |
| 545 | if (!vol) |
| 546 | return -ENOMEM; |
| 547 | |
| 548 | vol->reserved_pebs = be32_to_cpu(vtbl[i].reserved_pebs); |
| 549 | vol->alignment = be32_to_cpu(vtbl[i].alignment); |
| 550 | vol->data_pad = be32_to_cpu(vtbl[i].data_pad); |
Peter Horton | 3ca9a93 | 2010-06-12 10:11:56 +0900 | [diff] [blame] | 551 | vol->upd_marker = vtbl[i].upd_marker; |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 552 | vol->vol_type = vtbl[i].vol_type == UBI_VID_DYNAMIC ? |
| 553 | UBI_DYNAMIC_VOLUME : UBI_STATIC_VOLUME; |
| 554 | vol->name_len = be16_to_cpu(vtbl[i].name_len); |
| 555 | vol->usable_leb_size = ubi->leb_size - vol->data_pad; |
| 556 | memcpy(vol->name, vtbl[i].name, vol->name_len); |
| 557 | vol->name[vol->name_len] = '\0'; |
| 558 | vol->vol_id = i; |
| 559 | |
Quentin Schulz | a88049b | 2019-09-12 16:41:01 +0200 | [diff] [blame] | 560 | if (vtbl[i].flags & UBI_VTBL_SKIP_CRC_CHECK_FLG) |
| 561 | vol->skip_check = 1; |
| 562 | |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 563 | if (vtbl[i].flags & UBI_VTBL_AUTORESIZE_FLG) { |
| 564 | /* Auto re-size flag may be set only for one volume */ |
| 565 | if (ubi->autoresize_vol_id != -1) { |
Heiko Schocher | 94b66de | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 566 | ubi_err(ubi, "more than one auto-resize volume (%d and %d)", |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 567 | ubi->autoresize_vol_id, i); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 568 | kfree(vol); |
| 569 | return -EINVAL; |
| 570 | } |
| 571 | |
| 572 | ubi->autoresize_vol_id = i; |
| 573 | } |
| 574 | |
| 575 | ubi_assert(!ubi->volumes[i]); |
| 576 | ubi->volumes[i] = vol; |
| 577 | ubi->vol_count += 1; |
| 578 | vol->ubi = ubi; |
| 579 | reserved_pebs += vol->reserved_pebs; |
| 580 | |
| 581 | /* |
| 582 | * In case of dynamic volume UBI knows nothing about how many |
| 583 | * data is stored there. So assume the whole volume is used. |
| 584 | */ |
| 585 | if (vol->vol_type == UBI_DYNAMIC_VOLUME) { |
| 586 | vol->used_ebs = vol->reserved_pebs; |
| 587 | vol->last_eb_bytes = vol->usable_leb_size; |
| 588 | vol->used_bytes = |
| 589 | (long long)vol->used_ebs * vol->usable_leb_size; |
| 590 | continue; |
| 591 | } |
| 592 | |
| 593 | /* Static volumes only */ |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 594 | av = ubi_find_av(ai, i); |
Heiko Schocher | 94b66de | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 595 | if (!av || !av->leb_count) { |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 596 | /* |
| 597 | * No eraseblocks belonging to this volume found. We |
| 598 | * don't actually know whether this static volume is |
| 599 | * completely corrupted or just contains no data. And |
| 600 | * we cannot know this as long as data size is not |
| 601 | * stored on flash. So we just assume the volume is |
| 602 | * empty. FIXME: this should be handled. |
| 603 | */ |
| 604 | continue; |
| 605 | } |
| 606 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 607 | if (av->leb_count != av->used_ebs) { |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 608 | /* |
| 609 | * We found a static volume which misses several |
| 610 | * eraseblocks. Treat it as corrupted. |
| 611 | */ |
Heiko Schocher | 94b66de | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 612 | ubi_warn(ubi, "static volume %d misses %d LEBs - corrupted", |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 613 | av->vol_id, av->used_ebs - av->leb_count); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 614 | vol->corrupted = 1; |
| 615 | continue; |
| 616 | } |
| 617 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 618 | vol->used_ebs = av->used_ebs; |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 619 | vol->used_bytes = |
| 620 | (long long)(vol->used_ebs - 1) * vol->usable_leb_size; |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 621 | vol->used_bytes += av->last_data_size; |
| 622 | vol->last_eb_bytes = av->last_data_size; |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 623 | } |
| 624 | |
| 625 | /* And add the layout volume */ |
| 626 | vol = kzalloc(sizeof(struct ubi_volume), GFP_KERNEL); |
| 627 | if (!vol) |
| 628 | return -ENOMEM; |
| 629 | |
| 630 | vol->reserved_pebs = UBI_LAYOUT_VOLUME_EBS; |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 631 | vol->alignment = UBI_LAYOUT_VOLUME_ALIGN; |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 632 | vol->vol_type = UBI_DYNAMIC_VOLUME; |
| 633 | vol->name_len = sizeof(UBI_LAYOUT_VOLUME_NAME) - 1; |
| 634 | memcpy(vol->name, UBI_LAYOUT_VOLUME_NAME, vol->name_len + 1); |
| 635 | vol->usable_leb_size = ubi->leb_size; |
| 636 | vol->used_ebs = vol->reserved_pebs; |
| 637 | vol->last_eb_bytes = vol->reserved_pebs; |
| 638 | vol->used_bytes = |
| 639 | (long long)vol->used_ebs * (ubi->leb_size - vol->data_pad); |
| 640 | vol->vol_id = UBI_LAYOUT_VOLUME_ID; |
| 641 | vol->ref_count = 1; |
| 642 | |
| 643 | ubi_assert(!ubi->volumes[i]); |
| 644 | ubi->volumes[vol_id2idx(ubi, vol->vol_id)] = vol; |
| 645 | reserved_pebs += vol->reserved_pebs; |
| 646 | ubi->vol_count += 1; |
| 647 | vol->ubi = ubi; |
| 648 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 649 | if (reserved_pebs > ubi->avail_pebs) { |
Heiko Schocher | 94b66de | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 650 | ubi_err(ubi, "not enough PEBs, required %d, available %d", |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 651 | reserved_pebs, ubi->avail_pebs); |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 652 | if (ubi->corr_peb_count) |
Heiko Schocher | 94b66de | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 653 | ubi_err(ubi, "%d PEBs are corrupted and not used", |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 654 | ubi->corr_peb_count); |
| 655 | } |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 656 | ubi->rsvd_pebs += reserved_pebs; |
| 657 | ubi->avail_pebs -= reserved_pebs; |
| 658 | |
| 659 | return 0; |
| 660 | } |
| 661 | |
| 662 | /** |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 663 | * check_av - check volume attaching information. |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 664 | * @vol: UBI volume description object |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 665 | * @av: volume attaching information |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 666 | * |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 667 | * This function returns zero if the volume attaching information is consistent |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 668 | * to the data read from the volume tabla, and %-EINVAL if not. |
| 669 | */ |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 670 | static int check_av(const struct ubi_volume *vol, |
| 671 | const struct ubi_ainf_volume *av) |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 672 | { |
| 673 | int err; |
| 674 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 675 | if (av->highest_lnum >= vol->reserved_pebs) { |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 676 | err = 1; |
| 677 | goto bad; |
| 678 | } |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 679 | if (av->leb_count > vol->reserved_pebs) { |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 680 | err = 2; |
| 681 | goto bad; |
| 682 | } |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 683 | if (av->vol_type != vol->vol_type) { |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 684 | err = 3; |
| 685 | goto bad; |
| 686 | } |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 687 | if (av->used_ebs > vol->reserved_pebs) { |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 688 | err = 4; |
| 689 | goto bad; |
| 690 | } |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 691 | if (av->data_pad != vol->data_pad) { |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 692 | err = 5; |
| 693 | goto bad; |
| 694 | } |
| 695 | return 0; |
| 696 | |
| 697 | bad: |
Heiko Schocher | 94b66de | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 698 | ubi_err(vol->ubi, "bad attaching information, error %d", err); |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 699 | ubi_dump_av(av); |
| 700 | ubi_dump_vol_info(vol); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 701 | return -EINVAL; |
| 702 | } |
| 703 | |
| 704 | /** |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 705 | * check_attaching_info - check that attaching information. |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 706 | * @ubi: UBI device description object |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 707 | * @ai: attaching information |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 708 | * |
| 709 | * Even though we protect on-flash data by CRC checksums, we still don't trust |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 710 | * the media. This function ensures that attaching information is consistent to |
| 711 | * the information read from the volume table. Returns zero if the attaching |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 712 | * information is OK and %-EINVAL if it is not. |
| 713 | */ |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 714 | static int check_attaching_info(const struct ubi_device *ubi, |
| 715 | struct ubi_attach_info *ai) |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 716 | { |
| 717 | int err, i; |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 718 | struct ubi_ainf_volume *av; |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 719 | struct ubi_volume *vol; |
| 720 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 721 | if (ai->vols_found > UBI_INT_VOL_COUNT + ubi->vtbl_slots) { |
Heiko Schocher | 94b66de | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 722 | ubi_err(ubi, "found %d volumes while attaching, maximum is %d + %d", |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 723 | ai->vols_found, UBI_INT_VOL_COUNT, ubi->vtbl_slots); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 724 | return -EINVAL; |
| 725 | } |
| 726 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 727 | if (ai->highest_vol_id >= ubi->vtbl_slots + UBI_INT_VOL_COUNT && |
| 728 | ai->highest_vol_id < UBI_INTERNAL_VOL_START) { |
Heiko Schocher | 94b66de | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 729 | ubi_err(ubi, "too large volume ID %d found", |
| 730 | ai->highest_vol_id); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 731 | return -EINVAL; |
| 732 | } |
| 733 | |
| 734 | for (i = 0; i < ubi->vtbl_slots + UBI_INT_VOL_COUNT; i++) { |
| 735 | cond_resched(); |
| 736 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 737 | av = ubi_find_av(ai, i); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 738 | vol = ubi->volumes[i]; |
| 739 | if (!vol) { |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 740 | if (av) |
| 741 | ubi_remove_av(ai, av); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 742 | continue; |
| 743 | } |
| 744 | |
| 745 | if (vol->reserved_pebs == 0) { |
| 746 | ubi_assert(i < ubi->vtbl_slots); |
| 747 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 748 | if (!av) |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 749 | continue; |
| 750 | |
| 751 | /* |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 752 | * During attaching we found a volume which does not |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 753 | * exist according to the information in the volume |
| 754 | * table. This must have happened due to an unclean |
| 755 | * reboot while the volume was being removed. Discard |
| 756 | * these eraseblocks. |
| 757 | */ |
Heiko Schocher | 94b66de | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 758 | ubi_msg(ubi, "finish volume %d removal", av->vol_id); |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 759 | ubi_remove_av(ai, av); |
| 760 | } else if (av) { |
| 761 | err = check_av(vol, av); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 762 | if (err) |
| 763 | return err; |
| 764 | } |
| 765 | } |
| 766 | |
| 767 | return 0; |
| 768 | } |
| 769 | |
| 770 | /** |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 771 | * ubi_read_volume_table - read the volume table. |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 772 | * @ubi: UBI device description object |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 773 | * @ai: attaching information |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 774 | * |
| 775 | * This function reads volume table, checks it, recover from errors if needed, |
| 776 | * or creates it if needed. Returns zero in case of success and a negative |
| 777 | * error code in case of failure. |
| 778 | */ |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 779 | int ubi_read_volume_table(struct ubi_device *ubi, struct ubi_attach_info *ai) |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 780 | { |
| 781 | int i, err; |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 782 | struct ubi_ainf_volume *av; |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 783 | |
| 784 | empty_vtbl_record.crc = cpu_to_be32(0xf116c36b); |
| 785 | |
| 786 | /* |
| 787 | * The number of supported volumes is limited by the eraseblock size |
| 788 | * and by the UBI_MAX_VOLUMES constant. |
| 789 | */ |
| 790 | ubi->vtbl_slots = ubi->leb_size / UBI_VTBL_RECORD_SIZE; |
| 791 | if (ubi->vtbl_slots > UBI_MAX_VOLUMES) |
| 792 | ubi->vtbl_slots = UBI_MAX_VOLUMES; |
| 793 | |
| 794 | ubi->vtbl_size = ubi->vtbl_slots * UBI_VTBL_RECORD_SIZE; |
| 795 | ubi->vtbl_size = ALIGN(ubi->vtbl_size, ubi->min_io_size); |
| 796 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 797 | av = ubi_find_av(ai, UBI_LAYOUT_VOLUME_ID); |
| 798 | if (!av) { |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 799 | /* |
| 800 | * No logical eraseblocks belonging to the layout volume were |
| 801 | * found. This could mean that the flash is just empty. In |
| 802 | * this case we create empty layout volume. |
| 803 | * |
| 804 | * But if flash is not empty this must be a corruption or the |
| 805 | * MTD device just contains garbage. |
| 806 | */ |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 807 | if (ai->is_empty) { |
| 808 | ubi->vtbl = create_empty_lvol(ubi, ai); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 809 | if (IS_ERR(ubi->vtbl)) |
| 810 | return PTR_ERR(ubi->vtbl); |
| 811 | } else { |
Heiko Schocher | 94b66de | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 812 | ubi_err(ubi, "the layout volume was not found"); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 813 | return -EINVAL; |
| 814 | } |
| 815 | } else { |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 816 | if (av->leb_count > UBI_LAYOUT_VOLUME_EBS) { |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 817 | /* This must not happen with proper UBI images */ |
Heiko Schocher | 94b66de | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 818 | ubi_err(ubi, "too many LEBs (%d) in layout volume", |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 819 | av->leb_count); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 820 | return -EINVAL; |
| 821 | } |
| 822 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 823 | ubi->vtbl = process_lvol(ubi, ai, av); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 824 | if (IS_ERR(ubi->vtbl)) |
| 825 | return PTR_ERR(ubi->vtbl); |
| 826 | } |
| 827 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 828 | ubi->avail_pebs = ubi->good_peb_count - ubi->corr_peb_count; |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 829 | |
| 830 | /* |
| 831 | * The layout volume is OK, initialize the corresponding in-RAM data |
| 832 | * structures. |
| 833 | */ |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 834 | err = init_volumes(ubi, ai, ubi->vtbl); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 835 | if (err) |
| 836 | goto out_free; |
| 837 | |
| 838 | /* |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 839 | * Make sure that the attaching information is consistent to the |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 840 | * information stored in the volume table. |
| 841 | */ |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 842 | err = check_attaching_info(ubi, ai); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 843 | if (err) |
| 844 | goto out_free; |
| 845 | |
| 846 | return 0; |
| 847 | |
| 848 | out_free: |
| 849 | vfree(ubi->vtbl); |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 850 | for (i = 0; i < ubi->vtbl_slots + UBI_INT_VOL_COUNT; i++) { |
| 851 | kfree(ubi->volumes[i]); |
| 852 | ubi->volumes[i] = NULL; |
| 853 | } |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 854 | return err; |
| 855 | } |
| 856 | |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 857 | /** |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 858 | * self_vtbl_check - check volume table. |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 859 | * @ubi: UBI device description object |
| 860 | */ |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 861 | static void self_vtbl_check(const struct ubi_device *ubi) |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 862 | { |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 863 | if (!ubi_dbg_chk_gen(ubi)) |
| 864 | return; |
| 865 | |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 866 | if (vtbl_check(ubi, ubi->vtbl)) { |
Heiko Schocher | 94b66de | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 867 | ubi_err(ubi, "self-check failed"); |
Kyungmin Park | 7f88f00 | 2008-11-19 16:28:06 +0100 | [diff] [blame] | 868 | BUG(); |
| 869 | } |
| 870 | } |