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