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