blob: 863835f4aefea5aa6cd4fc481d36092d09a0509e [file] [log] [blame]
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001/*
2 * Copyright (c) International Business Machines Corp., 2006
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
12 * the GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 * Author: Artem Bityutskiy (Битюцкий Артём)
19 */
20
21/*
22 * This file contains implementation of volume creation, deletion, updating and
23 * resizing.
24 */
25
26#include <linux/err.h>
Artem Bityutskiy3013ee32009-01-16 19:08:43 +020027#include <linux/math64.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Paul Gortmakerf3bcc012011-07-10 12:43:28 -040029#include <linux/export.h>
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040030#include "ubi.h"
31
Artem Bityutskiy92d124f2011-03-14 18:17:40 +020032#ifdef CONFIG_MTD_UBI_DEBUG
Artem Bityutskiyc8566352008-07-16 17:40:22 +030033static int paranoid_check_volumes(struct ubi_device *ubi);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040034#else
Artem Bityutskiyc8566352008-07-16 17:40:22 +030035#define paranoid_check_volumes(ubi) 0
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040036#endif
37
38static ssize_t vol_attribute_show(struct device *dev,
39 struct device_attribute *attr, char *buf);
40
41/* Device attributes corresponding to files in '/<sysfs>/class/ubi/ubiX_Y' */
Artem Bityutskiy8bc22962007-07-22 15:25:02 +030042static struct device_attribute attr_vol_reserved_ebs =
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040043 __ATTR(reserved_ebs, S_IRUGO, vol_attribute_show, NULL);
Artem Bityutskiy8bc22962007-07-22 15:25:02 +030044static struct device_attribute attr_vol_type =
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040045 __ATTR(type, S_IRUGO, vol_attribute_show, NULL);
Artem Bityutskiy8bc22962007-07-22 15:25:02 +030046static struct device_attribute attr_vol_name =
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040047 __ATTR(name, S_IRUGO, vol_attribute_show, NULL);
Artem Bityutskiy8bc22962007-07-22 15:25:02 +030048static struct device_attribute attr_vol_corrupted =
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040049 __ATTR(corrupted, S_IRUGO, vol_attribute_show, NULL);
Artem Bityutskiy8bc22962007-07-22 15:25:02 +030050static struct device_attribute attr_vol_alignment =
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040051 __ATTR(alignment, S_IRUGO, vol_attribute_show, NULL);
Artem Bityutskiy8bc22962007-07-22 15:25:02 +030052static struct device_attribute attr_vol_usable_eb_size =
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040053 __ATTR(usable_eb_size, S_IRUGO, vol_attribute_show, NULL);
Artem Bityutskiy8bc22962007-07-22 15:25:02 +030054static struct device_attribute attr_vol_data_bytes =
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040055 __ATTR(data_bytes, S_IRUGO, vol_attribute_show, NULL);
Artem Bityutskiy8bc22962007-07-22 15:25:02 +030056static struct device_attribute attr_vol_upd_marker =
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040057 __ATTR(upd_marker, S_IRUGO, vol_attribute_show, NULL);
58
59/*
60 * "Show" method for files in '/<sysfs>/class/ubi/ubiX_Y/'.
61 *
62 * Consider a situation:
63 * A. process 1 opens a sysfs file related to volume Y, say
64 * /<sysfs>/class/ubi/ubiX_Y/reserved_ebs;
65 * B. process 2 removes volume Y;
66 * C. process 1 starts reading the /<sysfs>/class/ubi/ubiX_Y/reserved_ebs file;
67 *
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +020068 * In this situation, this function will return %-ENODEV because it will find
69 * out that the volume was removed from the @ubi->volumes array.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040070 */
71static ssize_t vol_attribute_show(struct device *dev,
72 struct device_attribute *attr, char *buf)
73{
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +020074 int ret;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040075 struct ubi_volume *vol = container_of(dev, struct ubi_volume, dev);
Artem Bityutskiye73f4452007-12-17 17:37:26 +020076 struct ubi_device *ubi;
77
78 ubi = ubi_get_device(vol->ubi->ubi_num);
79 if (!ubi)
80 return -ENODEV;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040081
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +020082 spin_lock(&ubi->volumes_lock);
83 if (!ubi->volumes[vol->vol_id]) {
84 spin_unlock(&ubi->volumes_lock);
Artem Bityutskiye73f4452007-12-17 17:37:26 +020085 ubi_put_device(ubi);
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +020086 return -ENODEV;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040087 }
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +020088 /* Take a reference to prevent volume removal */
89 vol->ref_count += 1;
90 spin_unlock(&ubi->volumes_lock);
Artem Bityutskiy732aeac2007-12-15 15:09:07 +020091
Artem Bityutskiy8bc22962007-07-22 15:25:02 +030092 if (attr == &attr_vol_reserved_ebs)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040093 ret = sprintf(buf, "%d\n", vol->reserved_pebs);
Artem Bityutskiy8bc22962007-07-22 15:25:02 +030094 else if (attr == &attr_vol_type) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040095 const char *tp;
Artem Bityutskiy8bc22962007-07-22 15:25:02 +030096
97 if (vol->vol_type == UBI_DYNAMIC_VOLUME)
98 tp = "dynamic";
99 else
100 tp = "static";
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400101 ret = sprintf(buf, "%s\n", tp);
Artem Bityutskiy8bc22962007-07-22 15:25:02 +0300102 } else if (attr == &attr_vol_name)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400103 ret = sprintf(buf, "%s\n", vol->name);
Artem Bityutskiy8bc22962007-07-22 15:25:02 +0300104 else if (attr == &attr_vol_corrupted)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400105 ret = sprintf(buf, "%d\n", vol->corrupted);
Artem Bityutskiy8bc22962007-07-22 15:25:02 +0300106 else if (attr == &attr_vol_alignment)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400107 ret = sprintf(buf, "%d\n", vol->alignment);
Artem Bityutskiy732aeac2007-12-15 15:09:07 +0200108 else if (attr == &attr_vol_usable_eb_size)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400109 ret = sprintf(buf, "%d\n", vol->usable_leb_size);
Artem Bityutskiy732aeac2007-12-15 15:09:07 +0200110 else if (attr == &attr_vol_data_bytes)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400111 ret = sprintf(buf, "%lld\n", vol->used_bytes);
Artem Bityutskiy8bc22962007-07-22 15:25:02 +0300112 else if (attr == &attr_vol_upd_marker)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400113 ret = sprintf(buf, "%d\n", vol->upd_marker);
114 else
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200115 /* This must be a bug */
116 ret = -EINVAL;
117
Artem Bityutskiye73f4452007-12-17 17:37:26 +0200118 /* We've done the operation, drop volume and UBI device references */
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200119 spin_lock(&ubi->volumes_lock);
120 vol->ref_count -= 1;
121 ubi_assert(vol->ref_count >= 0);
122 spin_unlock(&ubi->volumes_lock);
Artem Bityutskiye73f4452007-12-17 17:37:26 +0200123 ubi_put_device(ubi);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400124 return ret;
125}
126
127/* Release method for volume devices */
128static void vol_release(struct device *dev)
129{
130 struct ubi_volume *vol = container_of(dev, struct ubi_volume, dev);
Artem Bityutskiy732aeac2007-12-15 15:09:07 +0200131
Artem Bityutskiyabc5e922008-06-04 16:48:12 +0300132 kfree(vol->eba_tbl);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400133 kfree(vol);
134}
135
136/**
137 * volume_sysfs_init - initialize sysfs for new volume.
138 * @ubi: UBI device description object
139 * @vol: volume description object
140 *
141 * This function returns zero in case of success and a negative error code in
142 * case of failure.
143 *
144 * Note, this function does not free allocated resources in case of failure -
145 * the caller does it. This is because this would cause release() here and the
146 * caller would oops.
147 */
148static int volume_sysfs_init(struct ubi_device *ubi, struct ubi_volume *vol)
149{
150 int err;
151
Artem Bityutskiy8bc22962007-07-22 15:25:02 +0300152 err = device_create_file(&vol->dev, &attr_vol_reserved_ebs);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400153 if (err)
154 return err;
Artem Bityutskiy8bc22962007-07-22 15:25:02 +0300155 err = device_create_file(&vol->dev, &attr_vol_type);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400156 if (err)
157 return err;
Artem Bityutskiy8bc22962007-07-22 15:25:02 +0300158 err = device_create_file(&vol->dev, &attr_vol_name);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400159 if (err)
160 return err;
Artem Bityutskiy8bc22962007-07-22 15:25:02 +0300161 err = device_create_file(&vol->dev, &attr_vol_corrupted);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400162 if (err)
163 return err;
Artem Bityutskiy8bc22962007-07-22 15:25:02 +0300164 err = device_create_file(&vol->dev, &attr_vol_alignment);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400165 if (err)
166 return err;
Artem Bityutskiy8bc22962007-07-22 15:25:02 +0300167 err = device_create_file(&vol->dev, &attr_vol_usable_eb_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400168 if (err)
169 return err;
Artem Bityutskiy8bc22962007-07-22 15:25:02 +0300170 err = device_create_file(&vol->dev, &attr_vol_data_bytes);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400171 if (err)
172 return err;
Artem Bityutskiy8bc22962007-07-22 15:25:02 +0300173 err = device_create_file(&vol->dev, &attr_vol_upd_marker);
Artem Bityutskiyfc75a1e2007-12-17 14:02:09 +0200174 return err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400175}
176
177/**
178 * volume_sysfs_close - close sysfs for a volume.
179 * @vol: volume description object
180 */
181static void volume_sysfs_close(struct ubi_volume *vol)
182{
Artem Bityutskiy8bc22962007-07-22 15:25:02 +0300183 device_remove_file(&vol->dev, &attr_vol_upd_marker);
184 device_remove_file(&vol->dev, &attr_vol_data_bytes);
185 device_remove_file(&vol->dev, &attr_vol_usable_eb_size);
186 device_remove_file(&vol->dev, &attr_vol_alignment);
187 device_remove_file(&vol->dev, &attr_vol_corrupted);
188 device_remove_file(&vol->dev, &attr_vol_name);
189 device_remove_file(&vol->dev, &attr_vol_type);
190 device_remove_file(&vol->dev, &attr_vol_reserved_ebs);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400191 device_unregister(&vol->dev);
192}
193
194/**
195 * ubi_create_volume - create volume.
196 * @ubi: UBI device description object
197 * @req: volume creation request
198 *
199 * This function creates volume described by @req. If @req->vol_id id
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200200 * %UBI_VOL_NUM_AUTO, this function automatically assign ID to the new volume
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400201 * and saves it in @req->vol_id. Returns zero in case of success and a negative
Artem Bityutskiy40e4d0c2007-12-17 17:08:55 +0200202 * error code in case of failure. Note, the caller has to have the
Artem Bityutskiyf089c0b2009-05-07 11:46:49 +0300203 * @ubi->device_mutex locked.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400204 */
205int ubi_create_volume(struct ubi_device *ubi, struct ubi_mkvol_req *req)
206{
Artem Bityutskiyabc5e922008-06-04 16:48:12 +0300207 int i, err, vol_id = req->vol_id, do_free = 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400208 struct ubi_volume *vol;
209 struct ubi_vtbl_record vtbl_rec;
Artem Bityutskiy49dfc292007-12-15 18:13:56 +0200210 dev_t dev;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400211
212 if (ubi->ro_mode)
213 return -EROFS;
214
215 vol = kzalloc(sizeof(struct ubi_volume), GFP_KERNEL);
216 if (!vol)
217 return -ENOMEM;
218
219 spin_lock(&ubi->volumes_lock);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400220 if (vol_id == UBI_VOL_NUM_AUTO) {
221 /* Find unused volume ID */
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300222 dbg_gen("search for vacant volume ID");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400223 for (i = 0; i < ubi->vtbl_slots; i++)
224 if (!ubi->volumes[i]) {
225 vol_id = i;
226 break;
227 }
228
229 if (vol_id == UBI_VOL_NUM_AUTO) {
230 dbg_err("out of volume IDs");
231 err = -ENFILE;
232 goto out_unlock;
233 }
234 req->vol_id = vol_id;
235 }
236
Artem Bityutskiye1cf7e62009-05-07 18:24:14 +0300237 dbg_gen("create device %d, volume %d, %llu bytes, type %d, name %s",
238 ubi->ubi_num, vol_id, (unsigned long long)req->bytes,
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400239 (int)req->vol_type, req->name);
240
241 /* Ensure that this volume does not exist */
242 err = -EEXIST;
243 if (ubi->volumes[vol_id]) {
244 dbg_err("volume %d already exists", vol_id);
245 goto out_unlock;
246 }
247
248 /* Ensure that the name is unique */
249 for (i = 0; i < ubi->vtbl_slots; i++)
250 if (ubi->volumes[i] &&
251 ubi->volumes[i]->name_len == req->name_len &&
Artem Bityutskiy94784d92007-06-18 12:06:30 +0300252 !strcmp(ubi->volumes[i]->name, req->name)) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400253 dbg_err("volume \"%s\" exists (ID %d)", req->name, i);
254 goto out_unlock;
255 }
256
Artem Bityutskiy9c9ec142008-07-18 13:19:52 +0300257 /* Calculate how many eraseblocks are requested */
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400258 vol->usable_leb_size = ubi->leb_size - ubi->leb_size % req->alignment;
Artem Bityutskiy3013ee32009-01-16 19:08:43 +0200259 vol->reserved_pebs += div_u64(req->bytes + vol->usable_leb_size - 1,
260 vol->usable_leb_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400261
262 /* Reserve physical eraseblocks */
263 if (vol->reserved_pebs > ubi->avail_pebs) {
264 dbg_err("not enough PEBs, only %d available", ubi->avail_pebs);
Artem Bityutskiy5fc01ab2010-09-03 23:08:15 +0300265 if (ubi->corr_peb_count)
266 dbg_err("%d PEBs are corrupted and not used",
267 ubi->corr_peb_count);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400268 err = -ENOSPC;
269 goto out_unlock;
270 }
271 ubi->avail_pebs -= vol->reserved_pebs;
272 ubi->rsvd_pebs += vol->reserved_pebs;
Artem Bityutskiye73f4452007-12-17 17:37:26 +0200273 spin_unlock(&ubi->volumes_lock);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400274
275 vol->vol_id = vol_id;
276 vol->alignment = req->alignment;
277 vol->data_pad = ubi->leb_size % vol->alignment;
278 vol->vol_type = req->vol_type;
279 vol->name_len = req->name_len;
Artem Bityutskiya6ea4402008-07-13 21:46:24 +0300280 memcpy(vol->name, req->name, vol->name_len);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400281 vol->ubi = ubi;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400282
283 /*
284 * Finish all pending erases because there may be some LEBs belonging
285 * to the same volume ID.
286 */
287 err = ubi_wl_flush(ubi);
288 if (err)
289 goto out_acc;
290
291 vol->eba_tbl = kmalloc(vol->reserved_pebs * sizeof(int), GFP_KERNEL);
292 if (!vol->eba_tbl) {
293 err = -ENOMEM;
294 goto out_acc;
295 }
296
297 for (i = 0; i < vol->reserved_pebs; i++)
298 vol->eba_tbl[i] = UBI_LEB_UNMAPPED;
299
300 if (vol->vol_type == UBI_DYNAMIC_VOLUME) {
301 vol->used_ebs = vol->reserved_pebs;
302 vol->last_eb_bytes = vol->usable_leb_size;
Vinit Agnihotrid08c3b72007-07-10 13:04:59 +0300303 vol->used_bytes =
304 (long long)vol->used_ebs * vol->usable_leb_size;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400305 } else {
Artem Bityutskiy3013ee32009-01-16 19:08:43 +0200306 vol->used_ebs = div_u64_rem(vol->used_bytes,
307 vol->usable_leb_size,
308 &vol->last_eb_bytes);
309 if (vol->last_eb_bytes != 0)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400310 vol->used_ebs += 1;
311 else
312 vol->last_eb_bytes = vol->usable_leb_size;
313 }
314
315 /* Register character device for the volume */
316 cdev_init(&vol->cdev, &ubi_vol_cdev_operations);
317 vol->cdev.owner = THIS_MODULE;
Artem Bityutskiy49dfc292007-12-15 18:13:56 +0200318 dev = MKDEV(MAJOR(ubi->cdev.dev), vol_id + 1);
319 err = cdev_add(&vol->cdev, dev, 1);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400320 if (err) {
Artem Bityutskiy01f7b302007-12-15 19:56:51 +0200321 ubi_err("cannot add character device");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400322 goto out_mapping;
323 }
324
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400325 vol->dev.release = vol_release;
326 vol->dev.parent = &ubi->dev;
Artem Bityutskiy49dfc292007-12-15 18:13:56 +0200327 vol->dev.devt = dev;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400328 vol->dev.class = ubi_class;
Artem Bityutskiyfc75a1e2007-12-17 14:02:09 +0200329
Kay Sievers475b44c2009-01-06 10:44:38 -0800330 dev_set_name(&vol->dev, "%s_%d", ubi->ubi_name, vol->vol_id);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400331 err = device_register(&vol->dev);
Artem Bityutskiy01f7b302007-12-15 19:56:51 +0200332 if (err) {
333 ubi_err("cannot register device");
Dmitry Pervushin518ceef2009-04-29 19:29:44 +0400334 goto out_cdev;
Artem Bityutskiy01f7b302007-12-15 19:56:51 +0200335 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400336
337 err = volume_sysfs_init(ubi, vol);
338 if (err)
339 goto out_sysfs;
340
341 /* Fill volume table record */
342 memset(&vtbl_rec, 0, sizeof(struct ubi_vtbl_record));
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300343 vtbl_rec.reserved_pebs = cpu_to_be32(vol->reserved_pebs);
344 vtbl_rec.alignment = cpu_to_be32(vol->alignment);
345 vtbl_rec.data_pad = cpu_to_be32(vol->data_pad);
346 vtbl_rec.name_len = cpu_to_be16(vol->name_len);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400347 if (vol->vol_type == UBI_DYNAMIC_VOLUME)
348 vtbl_rec.vol_type = UBI_VID_DYNAMIC;
349 else
350 vtbl_rec.vol_type = UBI_VID_STATIC;
Artem Bityutskiya6ea4402008-07-13 21:46:24 +0300351 memcpy(vtbl_rec.name, vol->name, vol->name_len);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400352
353 err = ubi_change_vtbl_record(ubi, vol_id, &vtbl_rec);
354 if (err)
355 goto out_sysfs;
356
357 spin_lock(&ubi->volumes_lock);
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200358 ubi->volumes[vol_id] = vol;
Artem Bityutskiy4b3cc342007-12-26 15:59:39 +0200359 ubi->vol_count += 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400360 spin_unlock(&ubi->volumes_lock);
361
Dmitry Pervushin0e0ee1c2009-04-29 19:29:38 +0400362 ubi_volume_notify(ubi, vol, UBI_VOLUME_ADDED);
Artem Bityutskiyd38dce52009-05-13 14:05:24 +0300363 if (paranoid_check_volumes(ubi))
364 dbg_err("check failed while creating volume %d", vol_id);
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300365 return err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400366
Artem Bityutskiyfc75a1e2007-12-17 14:02:09 +0200367out_sysfs:
368 /*
Artem Bityutskiyabc5e922008-06-04 16:48:12 +0300369 * We have registered our device, we should not free the volume
Artem Bityutskiyfc75a1e2007-12-17 14:02:09 +0200370 * description object in this function in case of an error - it is
371 * freed by the release function.
372 *
373 * Get device reference to prevent the release function from being
374 * called just after sysfs has been closed.
375 */
Artem Bityutskiyabc5e922008-06-04 16:48:12 +0300376 do_free = 0;
Artem Bityutskiyfc75a1e2007-12-17 14:02:09 +0200377 get_device(&vol->dev);
378 volume_sysfs_close(vol);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400379out_cdev:
380 cdev_del(&vol->cdev);
381out_mapping:
Artem Bityutskiyabc5e922008-06-04 16:48:12 +0300382 if (do_free)
383 kfree(vol->eba_tbl);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400384out_acc:
385 spin_lock(&ubi->volumes_lock);
386 ubi->rsvd_pebs -= vol->reserved_pebs;
387 ubi->avail_pebs += vol->reserved_pebs;
388out_unlock:
389 spin_unlock(&ubi->volumes_lock);
Artem Bityutskiyabc5e922008-06-04 16:48:12 +0300390 if (do_free)
Artem Bityutskiyfc75a1e2007-12-17 14:02:09 +0200391 kfree(vol);
Artem Bityutskiyabc5e922008-06-04 16:48:12 +0300392 else
393 put_device(&vol->dev);
Artem Bityutskiy01f7b302007-12-15 19:56:51 +0200394 ubi_err("cannot create volume %d, error %d", vol_id, err);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400395 return err;
396}
397
398/**
399 * ubi_remove_volume - remove volume.
400 * @desc: volume descriptor
Artem Bityutskiyf40ac9c2008-07-13 21:47:47 +0300401 * @no_vtbl: do not change volume table if not zero
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400402 *
403 * This function removes volume described by @desc. The volume has to be opened
404 * in "exclusive" mode. Returns zero in case of success and a negative error
Artem Bityutskiyf089c0b2009-05-07 11:46:49 +0300405 * code in case of failure. The caller has to have the @ubi->device_mutex
Artem Bityutskiy40e4d0c2007-12-17 17:08:55 +0200406 * locked.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400407 */
Artem Bityutskiyf40ac9c2008-07-13 21:47:47 +0300408int ubi_remove_volume(struct ubi_volume_desc *desc, int no_vtbl)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400409{
410 struct ubi_volume *vol = desc->vol;
411 struct ubi_device *ubi = vol->ubi;
412 int i, err, vol_id = vol->vol_id, reserved_pebs = vol->reserved_pebs;
413
Artem Bityutskiye1cf7e62009-05-07 18:24:14 +0300414 dbg_gen("remove device %d, volume %d", ubi->ubi_num, vol_id);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400415 ubi_assert(desc->mode == UBI_EXCLUSIVE);
416 ubi_assert(vol == ubi->volumes[vol_id]);
417
418 if (ubi->ro_mode)
419 return -EROFS;
420
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200421 spin_lock(&ubi->volumes_lock);
422 if (vol->ref_count > 1) {
423 /*
424 * The volume is busy, probably someone is reading one of its
425 * sysfs files.
426 */
427 err = -EBUSY;
428 goto out_unlock;
429 }
430 ubi->volumes[vol_id] = NULL;
431 spin_unlock(&ubi->volumes_lock);
432
Artem Bityutskiyf40ac9c2008-07-13 21:47:47 +0300433 if (!no_vtbl) {
434 err = ubi_change_vtbl_record(ubi, vol_id, NULL);
435 if (err)
436 goto out_err;
437 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400438
439 for (i = 0; i < vol->reserved_pebs; i++) {
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200440 err = ubi_eba_unmap_leb(ubi, vol, i);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400441 if (err)
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200442 goto out_err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400443 }
444
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400445 cdev_del(&vol->cdev);
446 volume_sysfs_close(vol);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400447
448 spin_lock(&ubi->volumes_lock);
449 ubi->rsvd_pebs -= reserved_pebs;
450 ubi->avail_pebs += reserved_pebs;
451 i = ubi->beb_rsvd_level - ubi->beb_rsvd_pebs;
452 if (i > 0) {
453 i = ubi->avail_pebs >= i ? i : ubi->avail_pebs;
454 ubi->avail_pebs -= i;
455 ubi->rsvd_pebs += i;
456 ubi->beb_rsvd_pebs += i;
457 if (i > 0)
458 ubi_msg("reserve more %d PEBs", i);
459 }
460 ubi->vol_count -= 1;
461 spin_unlock(&ubi->volumes_lock);
462
Dmitry Pervushin0e0ee1c2009-04-29 19:29:38 +0400463 ubi_volume_notify(ubi, vol, UBI_VOLUME_REMOVED);
Artem Bityutskiyd38dce52009-05-13 14:05:24 +0300464 if (!no_vtbl && paranoid_check_volumes(ubi))
465 dbg_err("check failed while removing volume %d", vol_id);
466
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300467 return err;
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200468
469out_err:
470 ubi_err("cannot remove volume %d, error %d", vol_id, err);
471 spin_lock(&ubi->volumes_lock);
472 ubi->volumes[vol_id] = vol;
473out_unlock:
474 spin_unlock(&ubi->volumes_lock);
Artem Bityutskiycae0a772007-12-17 12:46:48 +0200475 return err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400476}
477
478/**
479 * ubi_resize_volume - re-size volume.
480 * @desc: volume descriptor
481 * @reserved_pebs: new size in physical eraseblocks
482 *
Artem Bityutskiy40e4d0c2007-12-17 17:08:55 +0200483 * This function re-sizes the volume and returns zero in case of success, and a
484 * negative error code in case of failure. The caller has to have the
Artem Bityutskiyf089c0b2009-05-07 11:46:49 +0300485 * @ubi->device_mutex locked.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400486 */
487int ubi_resize_volume(struct ubi_volume_desc *desc, int reserved_pebs)
488{
489 int i, err, pebs, *new_mapping;
490 struct ubi_volume *vol = desc->vol;
491 struct ubi_device *ubi = vol->ubi;
492 struct ubi_vtbl_record vtbl_rec;
493 int vol_id = vol->vol_id;
494
495 if (ubi->ro_mode)
496 return -EROFS;
497
Artem Bityutskiye1cf7e62009-05-07 18:24:14 +0300498 dbg_gen("re-size device %d, volume %d to from %d to %d PEBs",
499 ubi->ubi_num, vol_id, vol->reserved_pebs, reserved_pebs);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400500
501 if (vol->vol_type == UBI_STATIC_VOLUME &&
502 reserved_pebs < vol->used_ebs) {
503 dbg_err("too small size %d, %d LEBs contain data",
504 reserved_pebs, vol->used_ebs);
505 return -EINVAL;
506 }
507
508 /* If the size is the same, we have nothing to do */
509 if (reserved_pebs == vol->reserved_pebs)
510 return 0;
511
512 new_mapping = kmalloc(reserved_pebs * sizeof(int), GFP_KERNEL);
513 if (!new_mapping)
514 return -ENOMEM;
515
516 for (i = 0; i < reserved_pebs; i++)
517 new_mapping[i] = UBI_LEB_UNMAPPED;
518
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200519 spin_lock(&ubi->volumes_lock);
520 if (vol->ref_count > 1) {
521 spin_unlock(&ubi->volumes_lock);
522 err = -EBUSY;
523 goto out_free;
524 }
525 spin_unlock(&ubi->volumes_lock);
526
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200527 /* Reserve physical eraseblocks */
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400528 pebs = reserved_pebs - vol->reserved_pebs;
529 if (pebs > 0) {
530 spin_lock(&ubi->volumes_lock);
531 if (pebs > ubi->avail_pebs) {
532 dbg_err("not enough PEBs: requested %d, available %d",
533 pebs, ubi->avail_pebs);
Artem Bityutskiy5fc01ab2010-09-03 23:08:15 +0300534 if (ubi->corr_peb_count)
535 dbg_err("%d PEBs are corrupted and not used",
536 ubi->corr_peb_count);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400537 spin_unlock(&ubi->volumes_lock);
538 err = -ENOSPC;
539 goto out_free;
540 }
541 ubi->avail_pebs -= pebs;
542 ubi->rsvd_pebs += pebs;
543 for (i = 0; i < vol->reserved_pebs; i++)
544 new_mapping[i] = vol->eba_tbl[i];
545 kfree(vol->eba_tbl);
546 vol->eba_tbl = new_mapping;
547 spin_unlock(&ubi->volumes_lock);
548 }
549
550 /* Change volume table record */
551 memcpy(&vtbl_rec, &ubi->vtbl[vol_id], sizeof(struct ubi_vtbl_record));
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300552 vtbl_rec.reserved_pebs = cpu_to_be32(reserved_pebs);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400553 err = ubi_change_vtbl_record(ubi, vol_id, &vtbl_rec);
554 if (err)
555 goto out_acc;
556
557 if (pebs < 0) {
558 for (i = 0; i < -pebs; i++) {
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200559 err = ubi_eba_unmap_leb(ubi, vol, reserved_pebs + i);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400560 if (err)
561 goto out_acc;
562 }
563 spin_lock(&ubi->volumes_lock);
564 ubi->rsvd_pebs += pebs;
565 ubi->avail_pebs -= pebs;
566 pebs = ubi->beb_rsvd_level - ubi->beb_rsvd_pebs;
567 if (pebs > 0) {
568 pebs = ubi->avail_pebs >= pebs ? pebs : ubi->avail_pebs;
569 ubi->avail_pebs -= pebs;
570 ubi->rsvd_pebs += pebs;
571 ubi->beb_rsvd_pebs += pebs;
572 if (pebs > 0)
573 ubi_msg("reserve more %d PEBs", pebs);
574 }
575 for (i = 0; i < reserved_pebs; i++)
576 new_mapping[i] = vol->eba_tbl[i];
577 kfree(vol->eba_tbl);
578 vol->eba_tbl = new_mapping;
579 spin_unlock(&ubi->volumes_lock);
580 }
581
582 vol->reserved_pebs = reserved_pebs;
583 if (vol->vol_type == UBI_DYNAMIC_VOLUME) {
584 vol->used_ebs = reserved_pebs;
585 vol->last_eb_bytes = vol->usable_leb_size;
Vinit Agnihotrid08c3b72007-07-10 13:04:59 +0300586 vol->used_bytes =
587 (long long)vol->used_ebs * vol->usable_leb_size;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400588 }
589
Dmitry Pervushin0e0ee1c2009-04-29 19:29:38 +0400590 ubi_volume_notify(ubi, vol, UBI_VOLUME_RESIZED);
Artem Bityutskiyd38dce52009-05-13 14:05:24 +0300591 if (paranoid_check_volumes(ubi))
592 dbg_err("check failed while re-sizing volume %d", vol_id);
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300593 return err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400594
595out_acc:
596 if (pebs > 0) {
597 spin_lock(&ubi->volumes_lock);
598 ubi->rsvd_pebs -= pebs;
599 ubi->avail_pebs += pebs;
600 spin_unlock(&ubi->volumes_lock);
601 }
602out_free:
603 kfree(new_mapping);
604 return err;
605}
606
607/**
Artem Bityutskiyf40ac9c2008-07-13 21:47:47 +0300608 * ubi_rename_volumes - re-name UBI volumes.
609 * @ubi: UBI device description object
Artem Bityutskiyebaaf1a2008-07-18 13:34:32 +0300610 * @rename_list: list of &struct ubi_rename_entry objects
Artem Bityutskiyf40ac9c2008-07-13 21:47:47 +0300611 *
612 * This function re-names or removes volumes specified in the re-name list.
613 * Returns zero in case of success and a negative error code in case of
614 * failure.
615 */
616int ubi_rename_volumes(struct ubi_device *ubi, struct list_head *rename_list)
617{
618 int err;
619 struct ubi_rename_entry *re;
620
621 err = ubi_vtbl_rename_volumes(ubi, rename_list);
622 if (err)
623 return err;
624
625 list_for_each_entry(re, rename_list, list) {
626 if (re->remove) {
627 err = ubi_remove_volume(re->desc, 1);
628 if (err)
629 break;
630 } else {
631 struct ubi_volume *vol = re->desc->vol;
632
633 spin_lock(&ubi->volumes_lock);
634 vol->name_len = re->new_name_len;
635 memcpy(vol->name, re->new_name, re->new_name_len + 1);
636 spin_unlock(&ubi->volumes_lock);
Dmitry Pervushin0e0ee1c2009-04-29 19:29:38 +0400637 ubi_volume_notify(ubi, vol, UBI_VOLUME_RENAMED);
Artem Bityutskiyf40ac9c2008-07-13 21:47:47 +0300638 }
639 }
640
Artem Bityutskiyd38dce52009-05-13 14:05:24 +0300641 if (!err && paranoid_check_volumes(ubi))
642 ;
Artem Bityutskiyf40ac9c2008-07-13 21:47:47 +0300643 return err;
644}
645
646/**
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400647 * ubi_add_volume - add volume.
648 * @ubi: UBI device description object
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200649 * @vol: volume description object
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400650 *
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200651 * This function adds an existing volume and initializes all its data
652 * structures. Returns zero in case of success and a negative error code in
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400653 * case of failure.
654 */
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200655int ubi_add_volume(struct ubi_device *ubi, struct ubi_volume *vol)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400656{
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200657 int err, vol_id = vol->vol_id;
Artem Bityutskiy49dfc292007-12-15 18:13:56 +0200658 dev_t dev;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400659
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300660 dbg_gen("add volume %d", vol_id);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400661
662 /* Register character device for the volume */
663 cdev_init(&vol->cdev, &ubi_vol_cdev_operations);
664 vol->cdev.owner = THIS_MODULE;
Artem Bityutskiy49dfc292007-12-15 18:13:56 +0200665 dev = MKDEV(MAJOR(ubi->cdev.dev), vol->vol_id + 1);
666 err = cdev_add(&vol->cdev, dev, 1);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400667 if (err) {
Artem Bityutskiy01f7b302007-12-15 19:56:51 +0200668 ubi_err("cannot add character device for volume %d, error %d",
669 vol_id, err);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400670 return err;
671 }
672
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400673 vol->dev.release = vol_release;
674 vol->dev.parent = &ubi->dev;
Artem Bityutskiy49dfc292007-12-15 18:13:56 +0200675 vol->dev.devt = dev;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400676 vol->dev.class = ubi_class;
Kay Sievers475b44c2009-01-06 10:44:38 -0800677 dev_set_name(&vol->dev, "%s_%d", ubi->ubi_name, vol->vol_id);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400678 err = device_register(&vol->dev);
679 if (err)
Dmitry Pervushin518ceef2009-04-29 19:29:44 +0400680 goto out_cdev;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400681
682 err = volume_sysfs_init(ubi, vol);
683 if (err) {
684 cdev_del(&vol->cdev);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400685 volume_sysfs_close(vol);
686 return err;
687 }
688
Artem Bityutskiyd38dce52009-05-13 14:05:24 +0300689 if (paranoid_check_volumes(ubi))
690 dbg_err("check failed while adding volume %d", vol_id);
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300691 return err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400692
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400693out_cdev:
694 cdev_del(&vol->cdev);
695 return err;
696}
697
698/**
699 * ubi_free_volume - free volume.
700 * @ubi: UBI device description object
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200701 * @vol: volume description object
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400702 *
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200703 * This function frees all resources for volume @vol but does not remove it.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400704 * Used only when the UBI device is detached.
705 */
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200706void ubi_free_volume(struct ubi_device *ubi, struct ubi_volume *vol)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400707{
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300708 dbg_gen("free volume %d", vol->vol_id);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400709
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200710 ubi->volumes[vol->vol_id] = NULL;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400711 cdev_del(&vol->cdev);
712 volume_sysfs_close(vol);
713}
714
Artem Bityutskiy92d124f2011-03-14 18:17:40 +0200715#ifdef CONFIG_MTD_UBI_DEBUG
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400716
717/**
718 * paranoid_check_volume - check volume information.
719 * @ubi: UBI device description object
720 * @vol_id: volume ID
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300721 *
722 * Returns zero if volume is all right and a a negative error code if not.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400723 */
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300724static int paranoid_check_volume(struct ubi_device *ubi, int vol_id)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400725{
726 int idx = vol_id2idx(ubi, vol_id);
727 int reserved_pebs, alignment, data_pad, vol_type, name_len, upd_marker;
Artem Bityutskiyb89044b2007-06-18 16:29:30 +0300728 const struct ubi_volume *vol;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400729 long long n;
730 const char *name;
731
Artem Bityutskiyb89044b2007-06-18 16:29:30 +0300732 spin_lock(&ubi->volumes_lock);
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300733 reserved_pebs = be32_to_cpu(ubi->vtbl[vol_id].reserved_pebs);
Artem Bityutskiyb89044b2007-06-18 16:29:30 +0300734 vol = ubi->volumes[idx];
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400735
736 if (!vol) {
737 if (reserved_pebs) {
738 ubi_err("no volume info, but volume exists");
739 goto fail;
740 }
Artem Bityutskiyb89044b2007-06-18 16:29:30 +0300741 spin_unlock(&ubi->volumes_lock);
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300742 return 0;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400743 }
744
745 if (vol->reserved_pebs < 0 || vol->alignment < 0 || vol->data_pad < 0 ||
746 vol->name_len < 0) {
747 ubi_err("negative values");
748 goto fail;
749 }
750 if (vol->alignment > ubi->leb_size || vol->alignment == 0) {
751 ubi_err("bad alignment");
752 goto fail;
753 }
754
Kyungmin Parkcadb40c2008-05-22 10:32:18 +0900755 n = vol->alignment & (ubi->min_io_size - 1);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400756 if (vol->alignment != 1 && n) {
757 ubi_err("alignment is not multiple of min I/O unit");
758 goto fail;
759 }
760
761 n = ubi->leb_size % vol->alignment;
762 if (vol->data_pad != n) {
763 ubi_err("bad data_pad, has to be %lld", n);
764 goto fail;
765 }
766
767 if (vol->vol_type != UBI_DYNAMIC_VOLUME &&
768 vol->vol_type != UBI_STATIC_VOLUME) {
769 ubi_err("bad vol_type");
770 goto fail;
771 }
772
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400773 if (vol->upd_marker && vol->corrupted) {
774 dbg_err("update marker and corrupted simultaneously");
775 goto fail;
776 }
777
778 if (vol->reserved_pebs > ubi->good_peb_count) {
779 ubi_err("too large reserved_pebs");
780 goto fail;
781 }
782
783 n = ubi->leb_size - vol->data_pad;
784 if (vol->usable_leb_size != ubi->leb_size - vol->data_pad) {
785 ubi_err("bad usable_leb_size, has to be %lld", n);
786 goto fail;
787 }
788
789 if (vol->name_len > UBI_VOL_NAME_MAX) {
790 ubi_err("too long volume name, max is %d", UBI_VOL_NAME_MAX);
791 goto fail;
792 }
793
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400794 n = strnlen(vol->name, vol->name_len + 1);
795 if (n != vol->name_len) {
796 ubi_err("bad name_len %lld", n);
797 goto fail;
798 }
799
Vinit Agnihotrid08c3b72007-07-10 13:04:59 +0300800 n = (long long)vol->used_ebs * vol->usable_leb_size;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400801 if (vol->vol_type == UBI_DYNAMIC_VOLUME) {
Artem Bityutskiy896c0c02008-01-16 14:24:14 +0200802 if (vol->corrupted) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400803 ubi_err("corrupted dynamic volume");
804 goto fail;
805 }
806 if (vol->used_ebs != vol->reserved_pebs) {
807 ubi_err("bad used_ebs");
808 goto fail;
809 }
810 if (vol->last_eb_bytes != vol->usable_leb_size) {
811 ubi_err("bad last_eb_bytes");
812 goto fail;
813 }
814 if (vol->used_bytes != n) {
815 ubi_err("bad used_bytes");
816 goto fail;
817 }
818 } else {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400819 if (vol->used_ebs < 0 || vol->used_ebs > vol->reserved_pebs) {
820 ubi_err("bad used_ebs");
821 goto fail;
822 }
823 if (vol->last_eb_bytes < 0 ||
824 vol->last_eb_bytes > vol->usable_leb_size) {
825 ubi_err("bad last_eb_bytes");
826 goto fail;
827 }
828 if (vol->used_bytes < 0 || vol->used_bytes > n ||
829 vol->used_bytes < n - vol->usable_leb_size) {
830 ubi_err("bad used_bytes");
831 goto fail;
832 }
833 }
834
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300835 alignment = be32_to_cpu(ubi->vtbl[vol_id].alignment);
836 data_pad = be32_to_cpu(ubi->vtbl[vol_id].data_pad);
837 name_len = be16_to_cpu(ubi->vtbl[vol_id].name_len);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400838 upd_marker = ubi->vtbl[vol_id].upd_marker;
839 name = &ubi->vtbl[vol_id].name[0];
840 if (ubi->vtbl[vol_id].vol_type == UBI_VID_DYNAMIC)
841 vol_type = UBI_DYNAMIC_VOLUME;
842 else
843 vol_type = UBI_STATIC_VOLUME;
844
845 if (alignment != vol->alignment || data_pad != vol->data_pad ||
846 upd_marker != vol->upd_marker || vol_type != vol->vol_type ||
Artem Bityutskiy9c9ec142008-07-18 13:19:52 +0300847 name_len != vol->name_len || strncmp(name, vol->name, name_len)) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400848 ubi_err("volume info is different");
849 goto fail;
850 }
851
Artem Bityutskiyb89044b2007-06-18 16:29:30 +0300852 spin_unlock(&ubi->volumes_lock);
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300853 return 0;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400854
855fail:
Artem Bityutskiy94784d92007-06-18 12:06:30 +0300856 ubi_err("paranoid check failed for volume %d", vol_id);
Artem Bityutskiyf40ac9c2008-07-13 21:47:47 +0300857 if (vol)
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300858 ubi_dbg_dump_vol_info(vol);
Artem Bityutskiyf40ac9c2008-07-13 21:47:47 +0300859 ubi_dbg_dump_vtbl_record(&ubi->vtbl[vol_id], vol_id);
Artem Bityutskiycfcf0ec2009-05-12 20:29:15 +0300860 dump_stack();
Artem Bityutskiyb89044b2007-06-18 16:29:30 +0300861 spin_unlock(&ubi->volumes_lock);
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300862 return -EINVAL;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400863}
864
865/**
866 * paranoid_check_volumes - check information about all volumes.
867 * @ubi: UBI device description object
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300868 *
869 * Returns zero if volumes are all right and a a negative error code if not.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400870 */
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300871static int paranoid_check_volumes(struct ubi_device *ubi)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400872{
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300873 int i, err = 0;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400874
Artem Bityutskiy2a734bb2011-05-18 14:53:05 +0300875 if (!ubi->dbg->chk_gen)
Artem Bityutskiy92d124f2011-03-14 18:17:40 +0200876 return 0;
877
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300878 for (i = 0; i < ubi->vtbl_slots; i++) {
879 err = paranoid_check_volume(ubi, i);
880 if (err)
881 break;
882 }
883
884 return err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400885}
886#endif