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