blob: 139ee132bfbcfa432bb8b75f3df93858900c07f9 [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04002/*
3 * Copyright (c) International Business Machines Corp., 2006
4 *
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04005 * Author: Artem Bityutskiy (Битюцкий Артём)
6 */
7
8/*
9 * This file contains implementation of volume creation, deletion, updating and
10 * resizing.
11 */
12
13#include <linux/err.h>
Artem Bityutskiy3013ee32009-01-16 19:08:43 +020014#include <linux/math64.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Paul Gortmakerf3bcc012011-07-10 12:43:28 -040016#include <linux/export.h>
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040017#include "ubi.h"
18
Artem Bityutskiy7bf523a2012-05-16 18:29:54 +030019static int self_check_volumes(struct ubi_device *ubi);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040020
21static ssize_t vol_attribute_show(struct device *dev,
22 struct device_attribute *attr, char *buf);
23
24/* Device attributes corresponding to files in '/<sysfs>/class/ubi/ubiX_Y' */
Artem Bityutskiy8bc22962007-07-22 15:25:02 +030025static struct device_attribute attr_vol_reserved_ebs =
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040026 __ATTR(reserved_ebs, S_IRUGO, vol_attribute_show, NULL);
Artem Bityutskiy8bc22962007-07-22 15:25:02 +030027static struct device_attribute attr_vol_type =
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040028 __ATTR(type, S_IRUGO, vol_attribute_show, NULL);
Artem Bityutskiy8bc22962007-07-22 15:25:02 +030029static struct device_attribute attr_vol_name =
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040030 __ATTR(name, S_IRUGO, vol_attribute_show, NULL);
Artem Bityutskiy8bc22962007-07-22 15:25:02 +030031static struct device_attribute attr_vol_corrupted =
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040032 __ATTR(corrupted, S_IRUGO, vol_attribute_show, NULL);
Artem Bityutskiy8bc22962007-07-22 15:25:02 +030033static struct device_attribute attr_vol_alignment =
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040034 __ATTR(alignment, S_IRUGO, vol_attribute_show, NULL);
Artem Bityutskiy8bc22962007-07-22 15:25:02 +030035static struct device_attribute attr_vol_usable_eb_size =
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040036 __ATTR(usable_eb_size, S_IRUGO, vol_attribute_show, NULL);
Artem Bityutskiy8bc22962007-07-22 15:25:02 +030037static struct device_attribute attr_vol_data_bytes =
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040038 __ATTR(data_bytes, S_IRUGO, vol_attribute_show, NULL);
Artem Bityutskiy8bc22962007-07-22 15:25:02 +030039static struct device_attribute attr_vol_upd_marker =
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040040 __ATTR(upd_marker, S_IRUGO, vol_attribute_show, NULL);
41
42/*
43 * "Show" method for files in '/<sysfs>/class/ubi/ubiX_Y/'.
44 *
45 * Consider a situation:
46 * A. process 1 opens a sysfs file related to volume Y, say
47 * /<sysfs>/class/ubi/ubiX_Y/reserved_ebs;
48 * B. process 2 removes volume Y;
49 * C. process 1 starts reading the /<sysfs>/class/ubi/ubiX_Y/reserved_ebs file;
50 *
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +020051 * In this situation, this function will return %-ENODEV because it will find
52 * out that the volume was removed from the @ubi->volumes array.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040053 */
54static ssize_t vol_attribute_show(struct device *dev,
55 struct device_attribute *attr, char *buf)
56{
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +020057 int ret;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040058 struct ubi_volume *vol = container_of(dev, struct ubi_volume, dev);
Artem Bityutskiye73f4452007-12-17 17:37:26 +020059 struct ubi_device *ubi;
60
61 ubi = ubi_get_device(vol->ubi->ubi_num);
62 if (!ubi)
63 return -ENODEV;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040064
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +020065 spin_lock(&ubi->volumes_lock);
66 if (!ubi->volumes[vol->vol_id]) {
67 spin_unlock(&ubi->volumes_lock);
Artem Bityutskiye73f4452007-12-17 17:37:26 +020068 ubi_put_device(ubi);
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +020069 return -ENODEV;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040070 }
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +020071 /* Take a reference to prevent volume removal */
72 vol->ref_count += 1;
73 spin_unlock(&ubi->volumes_lock);
Artem Bityutskiy732aeac2007-12-15 15:09:07 +020074
Artem Bityutskiy8bc22962007-07-22 15:25:02 +030075 if (attr == &attr_vol_reserved_ebs)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040076 ret = sprintf(buf, "%d\n", vol->reserved_pebs);
Artem Bityutskiy8bc22962007-07-22 15:25:02 +030077 else if (attr == &attr_vol_type) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040078 const char *tp;
Artem Bityutskiy8bc22962007-07-22 15:25:02 +030079
80 if (vol->vol_type == UBI_DYNAMIC_VOLUME)
81 tp = "dynamic";
82 else
83 tp = "static";
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040084 ret = sprintf(buf, "%s\n", tp);
Artem Bityutskiy8bc22962007-07-22 15:25:02 +030085 } else if (attr == &attr_vol_name)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040086 ret = sprintf(buf, "%s\n", vol->name);
Artem Bityutskiy8bc22962007-07-22 15:25:02 +030087 else if (attr == &attr_vol_corrupted)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040088 ret = sprintf(buf, "%d\n", vol->corrupted);
Artem Bityutskiy8bc22962007-07-22 15:25:02 +030089 else if (attr == &attr_vol_alignment)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040090 ret = sprintf(buf, "%d\n", vol->alignment);
Artem Bityutskiy732aeac2007-12-15 15:09:07 +020091 else if (attr == &attr_vol_usable_eb_size)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040092 ret = sprintf(buf, "%d\n", vol->usable_leb_size);
Artem Bityutskiy732aeac2007-12-15 15:09:07 +020093 else if (attr == &attr_vol_data_bytes)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040094 ret = sprintf(buf, "%lld\n", vol->used_bytes);
Artem Bityutskiy8bc22962007-07-22 15:25:02 +030095 else if (attr == &attr_vol_upd_marker)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040096 ret = sprintf(buf, "%d\n", vol->upd_marker);
97 else
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +020098 /* This must be a bug */
99 ret = -EINVAL;
100
Artem Bityutskiye73f4452007-12-17 17:37:26 +0200101 /* We've done the operation, drop volume and UBI device references */
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200102 spin_lock(&ubi->volumes_lock);
103 vol->ref_count -= 1;
104 ubi_assert(vol->ref_count >= 0);
105 spin_unlock(&ubi->volumes_lock);
Artem Bityutskiye73f4452007-12-17 17:37:26 +0200106 ubi_put_device(ubi);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400107 return ret;
108}
109
Takashi Iwai53cd2552015-05-15 16:20:05 +0800110static struct attribute *volume_dev_attrs[] = {
111 &attr_vol_reserved_ebs.attr,
112 &attr_vol_type.attr,
113 &attr_vol_name.attr,
114 &attr_vol_corrupted.attr,
115 &attr_vol_alignment.attr,
116 &attr_vol_usable_eb_size.attr,
117 &attr_vol_data_bytes.attr,
118 &attr_vol_upd_marker.attr,
119 NULL
120};
121ATTRIBUTE_GROUPS(volume_dev);
122
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400123/* Release method for volume devices */
124static void vol_release(struct device *dev)
125{
126 struct ubi_volume *vol = container_of(dev, struct ubi_volume, dev);
Artem Bityutskiy732aeac2007-12-15 15:09:07 +0200127
Boris Brezillon799dca32016-09-16 16:59:25 +0200128 ubi_eba_replace_table(vol, NULL);
Richard Weinberger34653fd2018-05-28 22:04:33 +0200129 ubi_fastmap_destroy_checkmap(vol);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400130 kfree(vol);
131}
132
133/**
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400134 * ubi_create_volume - create volume.
135 * @ubi: UBI device description object
136 * @req: volume creation request
137 *
138 * This function creates volume described by @req. If @req->vol_id id
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200139 * %UBI_VOL_NUM_AUTO, this function automatically assign ID to the new volume
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400140 * and saves it in @req->vol_id. Returns zero in case of success and a negative
Artem Bityutskiy40e4d0c2007-12-17 17:08:55 +0200141 * error code in case of failure. Note, the caller has to have the
Artem Bityutskiyf089c0b2009-05-07 11:46:49 +0300142 * @ubi->device_mutex locked.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400143 */
144int ubi_create_volume(struct ubi_device *ubi, struct ubi_mkvol_req *req)
145{
Logan Gunthorpe493cfae2017-03-17 12:48:19 -0600146 int i, err, vol_id = req->vol_id;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400147 struct ubi_volume *vol;
148 struct ubi_vtbl_record vtbl_rec;
Boris Brezillon799dca32016-09-16 16:59:25 +0200149 struct ubi_eba_table *eba_tbl = NULL;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400150
151 if (ubi->ro_mode)
152 return -EROFS;
153
154 vol = kzalloc(sizeof(struct ubi_volume), GFP_KERNEL);
155 if (!vol)
156 return -ENOMEM;
157
Logan Gunthorpe493cfae2017-03-17 12:48:19 -0600158 device_initialize(&vol->dev);
159 vol->dev.release = vol_release;
160 vol->dev.parent = &ubi->dev;
161 vol->dev.class = &ubi_class;
162 vol->dev.groups = volume_dev_groups;
163
Quentin Schulzc355aa42018-07-02 11:43:51 +0200164 if (req->flags & UBI_VOL_SKIP_CRC_CHECK_FLG)
165 vol->skip_check = 1;
166
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400167 spin_lock(&ubi->volumes_lock);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400168 if (vol_id == UBI_VOL_NUM_AUTO) {
169 /* Find unused volume ID */
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300170 dbg_gen("search for vacant volume ID");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400171 for (i = 0; i < ubi->vtbl_slots; i++)
172 if (!ubi->volumes[i]) {
173 vol_id = i;
174 break;
175 }
176
177 if (vol_id == UBI_VOL_NUM_AUTO) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300178 ubi_err(ubi, "out of volume IDs");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400179 err = -ENFILE;
180 goto out_unlock;
181 }
182 req->vol_id = vol_id;
183 }
184
Artem Bityutskiye1cf7e62009-05-07 18:24:14 +0300185 dbg_gen("create device %d, volume %d, %llu bytes, type %d, name %s",
186 ubi->ubi_num, vol_id, (unsigned long long)req->bytes,
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400187 (int)req->vol_type, req->name);
188
189 /* Ensure that this volume does not exist */
190 err = -EEXIST;
191 if (ubi->volumes[vol_id]) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300192 ubi_err(ubi, "volume %d already exists", vol_id);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400193 goto out_unlock;
194 }
195
196 /* Ensure that the name is unique */
197 for (i = 0; i < ubi->vtbl_slots; i++)
198 if (ubi->volumes[i] &&
199 ubi->volumes[i]->name_len == req->name_len &&
Artem Bityutskiy94784d92007-06-18 12:06:30 +0300200 !strcmp(ubi->volumes[i]->name, req->name)) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300201 ubi_err(ubi, "volume \"%s\" exists (ID %d)",
202 req->name, i);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400203 goto out_unlock;
204 }
205
Artem Bityutskiy9c9ec142008-07-18 13:19:52 +0300206 /* Calculate how many eraseblocks are requested */
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400207 vol->usable_leb_size = ubi->leb_size - ubi->leb_size % req->alignment;
shengyonge8d266c2015-05-26 10:07:08 +0000208 vol->reserved_pebs = div_u64(req->bytes + vol->usable_leb_size - 1,
209 vol->usable_leb_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400210
211 /* Reserve physical eraseblocks */
212 if (vol->reserved_pebs > ubi->avail_pebs) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300213 ubi_err(ubi, "not enough PEBs, only %d available",
214 ubi->avail_pebs);
Artem Bityutskiy5fc01ab2010-09-03 23:08:15 +0300215 if (ubi->corr_peb_count)
Tanya Brokhman326087032014-10-20 19:57:00 +0300216 ubi_err(ubi, "%d PEBs are corrupted and not used",
Artem Bityutskiy5fc01ab2010-09-03 23:08:15 +0300217 ubi->corr_peb_count);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400218 err = -ENOSPC;
219 goto out_unlock;
220 }
221 ubi->avail_pebs -= vol->reserved_pebs;
222 ubi->rsvd_pebs += vol->reserved_pebs;
Artem Bityutskiye73f4452007-12-17 17:37:26 +0200223 spin_unlock(&ubi->volumes_lock);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400224
225 vol->vol_id = vol_id;
226 vol->alignment = req->alignment;
227 vol->data_pad = ubi->leb_size % vol->alignment;
228 vol->vol_type = req->vol_type;
229 vol->name_len = req->name_len;
Artem Bityutskiya6ea4402008-07-13 21:46:24 +0300230 memcpy(vol->name, req->name, vol->name_len);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400231 vol->ubi = ubi;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400232
233 /*
234 * Finish all pending erases because there may be some LEBs belonging
235 * to the same volume ID.
236 */
Joel Reardon62f384552012-05-20 21:27:11 +0200237 err = ubi_wl_flush(ubi, vol_id, UBI_ALL);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400238 if (err)
239 goto out_acc;
240
Boris Brezillon799dca32016-09-16 16:59:25 +0200241 eba_tbl = ubi_eba_create_table(vol, vol->reserved_pebs);
242 if (IS_ERR(eba_tbl)) {
243 err = PTR_ERR(eba_tbl);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400244 goto out_acc;
245 }
246
Boris Brezillon799dca32016-09-16 16:59:25 +0200247 ubi_eba_replace_table(vol, eba_tbl);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400248
249 if (vol->vol_type == UBI_DYNAMIC_VOLUME) {
250 vol->used_ebs = vol->reserved_pebs;
251 vol->last_eb_bytes = vol->usable_leb_size;
Vinit Agnihotrid08c3b72007-07-10 13:04:59 +0300252 vol->used_bytes =
253 (long long)vol->used_ebs * vol->usable_leb_size;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400254 } else {
Artem Bityutskiy3013ee32009-01-16 19:08:43 +0200255 vol->used_ebs = div_u64_rem(vol->used_bytes,
256 vol->usable_leb_size,
257 &vol->last_eb_bytes);
258 if (vol->last_eb_bytes != 0)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400259 vol->used_ebs += 1;
260 else
261 vol->last_eb_bytes = vol->usable_leb_size;
262 }
263
Clay McClurea51a0c82017-09-21 19:01:34 -0700264 /* Make volume "available" before it becomes accessible via sysfs */
265 spin_lock(&ubi->volumes_lock);
266 ubi->volumes[vol_id] = vol;
267 ubi->vol_count += 1;
268 spin_unlock(&ubi->volumes_lock);
269
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400270 /* Register character device for the volume */
271 cdev_init(&vol->cdev, &ubi_vol_cdev_operations);
272 vol->cdev.owner = THIS_MODULE;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400273
Logan Gunthorpe493cfae2017-03-17 12:48:19 -0600274 vol->dev.devt = MKDEV(MAJOR(ubi->cdev.dev), vol_id + 1);
Kay Sievers475b44c2009-01-06 10:44:38 -0800275 dev_set_name(&vol->dev, "%s_%d", ubi->ubi_name, vol->vol_id);
Logan Gunthorpe493cfae2017-03-17 12:48:19 -0600276 err = cdev_device_add(&vol->cdev, &vol->dev);
Artem Bityutskiy01f7b302007-12-15 19:56:51 +0200277 if (err) {
Logan Gunthorpe493cfae2017-03-17 12:48:19 -0600278 ubi_err(ubi, "cannot add device");
279 goto out_mapping;
Artem Bityutskiy01f7b302007-12-15 19:56:51 +0200280 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400281
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400282 /* Fill volume table record */
283 memset(&vtbl_rec, 0, sizeof(struct ubi_vtbl_record));
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300284 vtbl_rec.reserved_pebs = cpu_to_be32(vol->reserved_pebs);
285 vtbl_rec.alignment = cpu_to_be32(vol->alignment);
286 vtbl_rec.data_pad = cpu_to_be32(vol->data_pad);
287 vtbl_rec.name_len = cpu_to_be16(vol->name_len);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400288 if (vol->vol_type == UBI_DYNAMIC_VOLUME)
289 vtbl_rec.vol_type = UBI_VID_DYNAMIC;
290 else
291 vtbl_rec.vol_type = UBI_VID_STATIC;
Quentin Schulz62652512018-07-02 11:43:50 +0200292
293 if (vol->skip_check)
294 vtbl_rec.flags |= UBI_VTBL_SKIP_CRC_CHECK_FLG;
295
Artem Bityutskiya6ea4402008-07-13 21:46:24 +0300296 memcpy(vtbl_rec.name, vol->name, vol->name_len);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400297
298 err = ubi_change_vtbl_record(ubi, vol_id, &vtbl_rec);
299 if (err)
300 goto out_sysfs;
301
Dmitry Pervushin0e0ee1c2009-04-29 19:29:38 +0400302 ubi_volume_notify(ubi, vol, UBI_VOLUME_ADDED);
Artem Bityutskiy7bf523a2012-05-16 18:29:54 +0300303 self_check_volumes(ubi);
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300304 return err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400305
Artem Bityutskiyfc75a1e2007-12-17 14:02:09 +0200306out_sysfs:
307 /*
Artem Bityutskiyabc5e922008-06-04 16:48:12 +0300308 * We have registered our device, we should not free the volume
Artem Bityutskiyfc75a1e2007-12-17 14:02:09 +0200309 * description object in this function in case of an error - it is
310 * freed by the release function.
Artem Bityutskiyfc75a1e2007-12-17 14:02:09 +0200311 */
Logan Gunthorpe493cfae2017-03-17 12:48:19 -0600312 cdev_device_del(&vol->cdev, &vol->dev);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400313out_mapping:
Clay McClurea51a0c82017-09-21 19:01:34 -0700314 spin_lock(&ubi->volumes_lock);
315 ubi->volumes[vol_id] = NULL;
316 ubi->vol_count -= 1;
317 spin_unlock(&ubi->volumes_lock);
Logan Gunthorpe493cfae2017-03-17 12:48:19 -0600318 ubi_eba_destroy_table(eba_tbl);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400319out_acc:
320 spin_lock(&ubi->volumes_lock);
321 ubi->rsvd_pebs -= vol->reserved_pebs;
322 ubi->avail_pebs += vol->reserved_pebs;
323out_unlock:
324 spin_unlock(&ubi->volumes_lock);
Logan Gunthorpe493cfae2017-03-17 12:48:19 -0600325 put_device(&vol->dev);
Tanya Brokhman326087032014-10-20 19:57:00 +0300326 ubi_err(ubi, "cannot create volume %d, error %d", vol_id, err);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400327 return err;
328}
329
330/**
331 * ubi_remove_volume - remove volume.
332 * @desc: volume descriptor
Artem Bityutskiyf40ac9c2008-07-13 21:47:47 +0300333 * @no_vtbl: do not change volume table if not zero
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400334 *
335 * This function removes volume described by @desc. The volume has to be opened
336 * in "exclusive" mode. Returns zero in case of success and a negative error
Artem Bityutskiyf089c0b2009-05-07 11:46:49 +0300337 * code in case of failure. The caller has to have the @ubi->device_mutex
Artem Bityutskiy40e4d0c2007-12-17 17:08:55 +0200338 * locked.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400339 */
Artem Bityutskiyf40ac9c2008-07-13 21:47:47 +0300340int ubi_remove_volume(struct ubi_volume_desc *desc, int no_vtbl)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400341{
342 struct ubi_volume *vol = desc->vol;
343 struct ubi_device *ubi = vol->ubi;
344 int i, err, vol_id = vol->vol_id, reserved_pebs = vol->reserved_pebs;
345
Artem Bityutskiye1cf7e62009-05-07 18:24:14 +0300346 dbg_gen("remove device %d, volume %d", ubi->ubi_num, vol_id);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400347 ubi_assert(desc->mode == UBI_EXCLUSIVE);
348 ubi_assert(vol == ubi->volumes[vol_id]);
349
350 if (ubi->ro_mode)
351 return -EROFS;
352
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200353 spin_lock(&ubi->volumes_lock);
354 if (vol->ref_count > 1) {
355 /*
356 * The volume is busy, probably someone is reading one of its
357 * sysfs files.
358 */
359 err = -EBUSY;
360 goto out_unlock;
361 }
362 ubi->volumes[vol_id] = NULL;
363 spin_unlock(&ubi->volumes_lock);
364
Artem Bityutskiyf40ac9c2008-07-13 21:47:47 +0300365 if (!no_vtbl) {
366 err = ubi_change_vtbl_record(ubi, vol_id, NULL);
367 if (err)
368 goto out_err;
369 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400370
371 for (i = 0; i < vol->reserved_pebs; i++) {
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200372 err = ubi_eba_unmap_leb(ubi, vol, i);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400373 if (err)
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200374 goto out_err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400375 }
376
Logan Gunthorpe493cfae2017-03-17 12:48:19 -0600377 cdev_device_del(&vol->cdev, &vol->dev);
378 put_device(&vol->dev);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400379
380 spin_lock(&ubi->volumes_lock);
381 ubi->rsvd_pebs -= reserved_pebs;
382 ubi->avail_pebs += reserved_pebs;
Shmulik Ladkani87e773c2012-07-04 11:06:04 +0300383 ubi_update_reserved(ubi);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400384 ubi->vol_count -= 1;
385 spin_unlock(&ubi->volumes_lock);
386
Dmitry Pervushin0e0ee1c2009-04-29 19:29:38 +0400387 ubi_volume_notify(ubi, vol, UBI_VOLUME_REMOVED);
Artem Bityutskiy7bf523a2012-05-16 18:29:54 +0300388 if (!no_vtbl)
389 self_check_volumes(ubi);
Artem Bityutskiyd38dce52009-05-13 14:05:24 +0300390
Dan Carpenterfadb3662016-04-13 09:41:26 +0300391 return 0;
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200392
393out_err:
Tanya Brokhman326087032014-10-20 19:57:00 +0300394 ubi_err(ubi, "cannot remove volume %d, error %d", vol_id, err);
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200395 spin_lock(&ubi->volumes_lock);
396 ubi->volumes[vol_id] = vol;
397out_unlock:
398 spin_unlock(&ubi->volumes_lock);
Artem Bityutskiycae0a772007-12-17 12:46:48 +0200399 return err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400400}
401
402/**
403 * ubi_resize_volume - re-size volume.
404 * @desc: volume descriptor
405 * @reserved_pebs: new size in physical eraseblocks
406 *
Artem Bityutskiy40e4d0c2007-12-17 17:08:55 +0200407 * This function re-sizes the volume and returns zero in case of success, and a
408 * negative error code in case of failure. The caller has to have the
Artem Bityutskiyf089c0b2009-05-07 11:46:49 +0300409 * @ubi->device_mutex locked.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400410 */
411int ubi_resize_volume(struct ubi_volume_desc *desc, int reserved_pebs)
412{
Boris Brezillon799dca32016-09-16 16:59:25 +0200413 int i, err, pebs;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400414 struct ubi_volume *vol = desc->vol;
415 struct ubi_device *ubi = vol->ubi;
416 struct ubi_vtbl_record vtbl_rec;
Boris Brezillon799dca32016-09-16 16:59:25 +0200417 struct ubi_eba_table *new_eba_tbl = NULL;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400418 int vol_id = vol->vol_id;
419
420 if (ubi->ro_mode)
421 return -EROFS;
422
Artem Bityutskiye1cf7e62009-05-07 18:24:14 +0300423 dbg_gen("re-size device %d, volume %d to from %d to %d PEBs",
424 ubi->ubi_num, vol_id, vol->reserved_pebs, reserved_pebs);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400425
426 if (vol->vol_type == UBI_STATIC_VOLUME &&
427 reserved_pebs < vol->used_ebs) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300428 ubi_err(ubi, "too small size %d, %d LEBs contain data",
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400429 reserved_pebs, vol->used_ebs);
430 return -EINVAL;
431 }
432
433 /* If the size is the same, we have nothing to do */
434 if (reserved_pebs == vol->reserved_pebs)
435 return 0;
436
Boris Brezillon799dca32016-09-16 16:59:25 +0200437 new_eba_tbl = ubi_eba_create_table(vol, reserved_pebs);
438 if (IS_ERR(new_eba_tbl))
439 return PTR_ERR(new_eba_tbl);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400440
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200441 spin_lock(&ubi->volumes_lock);
442 if (vol->ref_count > 1) {
443 spin_unlock(&ubi->volumes_lock);
444 err = -EBUSY;
445 goto out_free;
446 }
447 spin_unlock(&ubi->volumes_lock);
448
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200449 /* Reserve physical eraseblocks */
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400450 pebs = reserved_pebs - vol->reserved_pebs;
451 if (pebs > 0) {
452 spin_lock(&ubi->volumes_lock);
453 if (pebs > ubi->avail_pebs) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300454 ubi_err(ubi, "not enough PEBs: requested %d, available %d",
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400455 pebs, ubi->avail_pebs);
Artem Bityutskiy5fc01ab2010-09-03 23:08:15 +0300456 if (ubi->corr_peb_count)
Tanya Brokhman326087032014-10-20 19:57:00 +0300457 ubi_err(ubi, "%d PEBs are corrupted and not used",
Artem Bityutskiy5fc01ab2010-09-03 23:08:15 +0300458 ubi->corr_peb_count);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400459 spin_unlock(&ubi->volumes_lock);
460 err = -ENOSPC;
461 goto out_free;
462 }
463 ubi->avail_pebs -= pebs;
464 ubi->rsvd_pebs += pebs;
Boris Brezillon799dca32016-09-16 16:59:25 +0200465 ubi_eba_copy_table(vol, new_eba_tbl, vol->reserved_pebs);
466 ubi_eba_replace_table(vol, new_eba_tbl);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400467 spin_unlock(&ubi->volumes_lock);
468 }
469
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400470 if (pebs < 0) {
471 for (i = 0; i < -pebs; i++) {
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200472 err = ubi_eba_unmap_leb(ubi, vol, reserved_pebs + i);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400473 if (err)
474 goto out_acc;
475 }
476 spin_lock(&ubi->volumes_lock);
477 ubi->rsvd_pebs += pebs;
478 ubi->avail_pebs -= pebs;
Shmulik Ladkani87e773c2012-07-04 11:06:04 +0300479 ubi_update_reserved(ubi);
Boris Brezillon799dca32016-09-16 16:59:25 +0200480 ubi_eba_copy_table(vol, new_eba_tbl, reserved_pebs);
481 ubi_eba_replace_table(vol, new_eba_tbl);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400482 spin_unlock(&ubi->volumes_lock);
483 }
484
Richard Weinberger4946784b2016-06-23 19:30:38 +0200485 /*
486 * When we shrink a volume we have to flush all pending (erase) work.
487 * Otherwise it can happen that upon next attach UBI finds a LEB with
488 * lnum > highest_lnum and refuses to attach.
489 */
490 if (pebs < 0) {
491 err = ubi_wl_flush(ubi, vol_id, UBI_ALL);
492 if (err)
493 goto out_acc;
494 }
495
496 /* Change volume table record */
497 vtbl_rec = ubi->vtbl[vol_id];
498 vtbl_rec.reserved_pebs = cpu_to_be32(reserved_pebs);
499 err = ubi_change_vtbl_record(ubi, vol_id, &vtbl_rec);
500 if (err)
501 goto out_acc;
502
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400503 vol->reserved_pebs = reserved_pebs;
504 if (vol->vol_type == UBI_DYNAMIC_VOLUME) {
505 vol->used_ebs = reserved_pebs;
506 vol->last_eb_bytes = vol->usable_leb_size;
Vinit Agnihotrid08c3b72007-07-10 13:04:59 +0300507 vol->used_bytes =
508 (long long)vol->used_ebs * vol->usable_leb_size;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400509 }
510
Dmitry Pervushin0e0ee1c2009-04-29 19:29:38 +0400511 ubi_volume_notify(ubi, vol, UBI_VOLUME_RESIZED);
Artem Bityutskiy7bf523a2012-05-16 18:29:54 +0300512 self_check_volumes(ubi);
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300513 return err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400514
515out_acc:
516 if (pebs > 0) {
517 spin_lock(&ubi->volumes_lock);
518 ubi->rsvd_pebs -= pebs;
519 ubi->avail_pebs += pebs;
520 spin_unlock(&ubi->volumes_lock);
521 }
522out_free:
Boris Brezillon799dca32016-09-16 16:59:25 +0200523 kfree(new_eba_tbl);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400524 return err;
525}
526
527/**
Artem Bityutskiyf40ac9c2008-07-13 21:47:47 +0300528 * ubi_rename_volumes - re-name UBI volumes.
529 * @ubi: UBI device description object
Artem Bityutskiyebaaf1a2008-07-18 13:34:32 +0300530 * @rename_list: list of &struct ubi_rename_entry objects
Artem Bityutskiyf40ac9c2008-07-13 21:47:47 +0300531 *
532 * This function re-names or removes volumes specified in the re-name list.
533 * Returns zero in case of success and a negative error code in case of
534 * failure.
535 */
536int ubi_rename_volumes(struct ubi_device *ubi, struct list_head *rename_list)
537{
538 int err;
539 struct ubi_rename_entry *re;
540
541 err = ubi_vtbl_rename_volumes(ubi, rename_list);
542 if (err)
543 return err;
544
545 list_for_each_entry(re, rename_list, list) {
546 if (re->remove) {
547 err = ubi_remove_volume(re->desc, 1);
548 if (err)
549 break;
550 } else {
551 struct ubi_volume *vol = re->desc->vol;
552
553 spin_lock(&ubi->volumes_lock);
554 vol->name_len = re->new_name_len;
555 memcpy(vol->name, re->new_name, re->new_name_len + 1);
556 spin_unlock(&ubi->volumes_lock);
Dmitry Pervushin0e0ee1c2009-04-29 19:29:38 +0400557 ubi_volume_notify(ubi, vol, UBI_VOLUME_RENAMED);
Artem Bityutskiyf40ac9c2008-07-13 21:47:47 +0300558 }
559 }
560
Artem Bityutskiy7bf523a2012-05-16 18:29:54 +0300561 if (!err)
562 self_check_volumes(ubi);
Artem Bityutskiyf40ac9c2008-07-13 21:47:47 +0300563 return err;
564}
565
566/**
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400567 * ubi_add_volume - add volume.
568 * @ubi: UBI device description object
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200569 * @vol: volume description object
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400570 *
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200571 * This function adds an existing volume and initializes all its data
572 * structures. Returns zero in case of success and a negative error code in
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400573 * case of failure.
574 */
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200575int ubi_add_volume(struct ubi_device *ubi, struct ubi_volume *vol)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400576{
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200577 int err, vol_id = vol->vol_id;
Artem Bityutskiy49dfc292007-12-15 18:13:56 +0200578 dev_t dev;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400579
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300580 dbg_gen("add volume %d", vol_id);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400581
582 /* Register character device for the volume */
583 cdev_init(&vol->cdev, &ubi_vol_cdev_operations);
584 vol->cdev.owner = THIS_MODULE;
Artem Bityutskiy49dfc292007-12-15 18:13:56 +0200585 dev = MKDEV(MAJOR(ubi->cdev.dev), vol->vol_id + 1);
586 err = cdev_add(&vol->cdev, dev, 1);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400587 if (err) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300588 ubi_err(ubi, "cannot add character device for volume %d, error %d",
Artem Bityutskiy01f7b302007-12-15 19:56:51 +0200589 vol_id, err);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400590 return err;
591 }
592
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400593 vol->dev.release = vol_release;
594 vol->dev.parent = &ubi->dev;
Artem Bityutskiy49dfc292007-12-15 18:13:56 +0200595 vol->dev.devt = dev;
Takashi Iwai53cd2552015-05-15 16:20:05 +0800596 vol->dev.class = &ubi_class;
597 vol->dev.groups = volume_dev_groups;
Kay Sievers475b44c2009-01-06 10:44:38 -0800598 dev_set_name(&vol->dev, "%s_%d", ubi->ubi_name, vol->vol_id);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400599 err = device_register(&vol->dev);
600 if (err)
Dmitry Pervushin518ceef2009-04-29 19:29:44 +0400601 goto out_cdev;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400602
Artem Bityutskiy7bf523a2012-05-16 18:29:54 +0300603 self_check_volumes(ubi);
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300604 return err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400605
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400606out_cdev:
607 cdev_del(&vol->cdev);
608 return err;
609}
610
611/**
612 * ubi_free_volume - free volume.
613 * @ubi: UBI device description object
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200614 * @vol: volume description object
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400615 *
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200616 * This function frees all resources for volume @vol but does not remove it.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400617 * Used only when the UBI device is detached.
618 */
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200619void ubi_free_volume(struct ubi_device *ubi, struct ubi_volume *vol)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400620{
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300621 dbg_gen("free volume %d", vol->vol_id);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400622
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200623 ubi->volumes[vol->vol_id] = NULL;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400624 cdev_del(&vol->cdev);
Takashi Iwai53cd2552015-05-15 16:20:05 +0800625 device_unregister(&vol->dev);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400626}
627
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400628/**
Artem Bityutskiy7bf523a2012-05-16 18:29:54 +0300629 * self_check_volume - check volume information.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400630 * @ubi: UBI device description object
631 * @vol_id: volume ID
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300632 *
633 * Returns zero if volume is all right and a a negative error code if not.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400634 */
Artem Bityutskiy7bf523a2012-05-16 18:29:54 +0300635static int self_check_volume(struct ubi_device *ubi, int vol_id)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400636{
637 int idx = vol_id2idx(ubi, vol_id);
638 int reserved_pebs, alignment, data_pad, vol_type, name_len, upd_marker;
Artem Bityutskiyb89044b2007-06-18 16:29:30 +0300639 const struct ubi_volume *vol;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400640 long long n;
641 const char *name;
642
Artem Bityutskiyb89044b2007-06-18 16:29:30 +0300643 spin_lock(&ubi->volumes_lock);
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300644 reserved_pebs = be32_to_cpu(ubi->vtbl[vol_id].reserved_pebs);
Artem Bityutskiyb89044b2007-06-18 16:29:30 +0300645 vol = ubi->volumes[idx];
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400646
647 if (!vol) {
648 if (reserved_pebs) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300649 ubi_err(ubi, "no volume info, but volume exists");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400650 goto fail;
651 }
Artem Bityutskiyb89044b2007-06-18 16:29:30 +0300652 spin_unlock(&ubi->volumes_lock);
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300653 return 0;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400654 }
655
656 if (vol->reserved_pebs < 0 || vol->alignment < 0 || vol->data_pad < 0 ||
657 vol->name_len < 0) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300658 ubi_err(ubi, "negative values");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400659 goto fail;
660 }
661 if (vol->alignment > ubi->leb_size || vol->alignment == 0) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300662 ubi_err(ubi, "bad alignment");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400663 goto fail;
664 }
665
Kyungmin Parkcadb40c2008-05-22 10:32:18 +0900666 n = vol->alignment & (ubi->min_io_size - 1);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400667 if (vol->alignment != 1 && n) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300668 ubi_err(ubi, "alignment is not multiple of min I/O unit");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400669 goto fail;
670 }
671
672 n = ubi->leb_size % vol->alignment;
673 if (vol->data_pad != n) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300674 ubi_err(ubi, "bad data_pad, has to be %lld", n);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400675 goto fail;
676 }
677
678 if (vol->vol_type != UBI_DYNAMIC_VOLUME &&
679 vol->vol_type != UBI_STATIC_VOLUME) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300680 ubi_err(ubi, "bad vol_type");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400681 goto fail;
682 }
683
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400684 if (vol->upd_marker && vol->corrupted) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300685 ubi_err(ubi, "update marker and corrupted simultaneously");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400686 goto fail;
687 }
688
689 if (vol->reserved_pebs > ubi->good_peb_count) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300690 ubi_err(ubi, "too large reserved_pebs");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400691 goto fail;
692 }
693
694 n = ubi->leb_size - vol->data_pad;
695 if (vol->usable_leb_size != ubi->leb_size - vol->data_pad) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300696 ubi_err(ubi, "bad usable_leb_size, has to be %lld", n);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400697 goto fail;
698 }
699
700 if (vol->name_len > UBI_VOL_NAME_MAX) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300701 ubi_err(ubi, "too long volume name, max is %d",
702 UBI_VOL_NAME_MAX);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400703 goto fail;
704 }
705
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400706 n = strnlen(vol->name, vol->name_len + 1);
707 if (n != vol->name_len) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300708 ubi_err(ubi, "bad name_len %lld", n);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400709 goto fail;
710 }
711
Vinit Agnihotrid08c3b72007-07-10 13:04:59 +0300712 n = (long long)vol->used_ebs * vol->usable_leb_size;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400713 if (vol->vol_type == UBI_DYNAMIC_VOLUME) {
Artem Bityutskiy896c0c02008-01-16 14:24:14 +0200714 if (vol->corrupted) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300715 ubi_err(ubi, "corrupted dynamic volume");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400716 goto fail;
717 }
718 if (vol->used_ebs != vol->reserved_pebs) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300719 ubi_err(ubi, "bad used_ebs");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400720 goto fail;
721 }
722 if (vol->last_eb_bytes != vol->usable_leb_size) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300723 ubi_err(ubi, "bad last_eb_bytes");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400724 goto fail;
725 }
726 if (vol->used_bytes != n) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300727 ubi_err(ubi, "bad used_bytes");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400728 goto fail;
729 }
Quentin Schulz62652512018-07-02 11:43:50 +0200730
731 if (vol->skip_check) {
732 ubi_err(ubi, "bad skip_check");
733 goto fail;
734 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400735 } else {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400736 if (vol->used_ebs < 0 || vol->used_ebs > vol->reserved_pebs) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300737 ubi_err(ubi, "bad used_ebs");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400738 goto fail;
739 }
740 if (vol->last_eb_bytes < 0 ||
741 vol->last_eb_bytes > vol->usable_leb_size) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300742 ubi_err(ubi, "bad last_eb_bytes");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400743 goto fail;
744 }
745 if (vol->used_bytes < 0 || vol->used_bytes > n ||
746 vol->used_bytes < n - vol->usable_leb_size) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300747 ubi_err(ubi, "bad used_bytes");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400748 goto fail;
749 }
750 }
751
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300752 alignment = be32_to_cpu(ubi->vtbl[vol_id].alignment);
753 data_pad = be32_to_cpu(ubi->vtbl[vol_id].data_pad);
754 name_len = be16_to_cpu(ubi->vtbl[vol_id].name_len);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400755 upd_marker = ubi->vtbl[vol_id].upd_marker;
756 name = &ubi->vtbl[vol_id].name[0];
757 if (ubi->vtbl[vol_id].vol_type == UBI_VID_DYNAMIC)
758 vol_type = UBI_DYNAMIC_VOLUME;
759 else
760 vol_type = UBI_STATIC_VOLUME;
761
762 if (alignment != vol->alignment || data_pad != vol->data_pad ||
763 upd_marker != vol->upd_marker || vol_type != vol->vol_type ||
Artem Bityutskiy9c9ec142008-07-18 13:19:52 +0300764 name_len != vol->name_len || strncmp(name, vol->name, name_len)) {
Tanya Brokhman326087032014-10-20 19:57:00 +0300765 ubi_err(ubi, "volume info is different");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400766 goto fail;
767 }
768
Artem Bityutskiyb89044b2007-06-18 16:29:30 +0300769 spin_unlock(&ubi->volumes_lock);
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300770 return 0;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400771
772fail:
Tanya Brokhman326087032014-10-20 19:57:00 +0300773 ubi_err(ubi, "self-check failed for volume %d", vol_id);
Artem Bityutskiyf40ac9c2008-07-13 21:47:47 +0300774 if (vol)
Artem Bityutskiy766381f2012-05-16 17:53:17 +0300775 ubi_dump_vol_info(vol);
Artem Bityutskiy1f021e1d2012-05-16 17:56:50 +0300776 ubi_dump_vtbl_record(&ubi->vtbl[vol_id], vol_id);
Artem Bityutskiycfcf0ec2009-05-12 20:29:15 +0300777 dump_stack();
Artem Bityutskiyb89044b2007-06-18 16:29:30 +0300778 spin_unlock(&ubi->volumes_lock);
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300779 return -EINVAL;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400780}
781
782/**
Artem Bityutskiy7bf523a2012-05-16 18:29:54 +0300783 * self_check_volumes - check information about all volumes.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400784 * @ubi: UBI device description object
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300785 *
786 * Returns zero if volumes are all right and a a negative error code if not.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400787 */
Artem Bityutskiy7bf523a2012-05-16 18:29:54 +0300788static int self_check_volumes(struct ubi_device *ubi)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400789{
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300790 int i, err = 0;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400791
Ezequiel Garcia64575572012-11-28 09:18:29 -0300792 if (!ubi_dbg_chk_gen(ubi))
Artem Bityutskiy92d124f2011-03-14 18:17:40 +0200793 return 0;
794
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300795 for (i = 0; i < ubi->vtbl_slots; i++) {
Artem Bityutskiy7bf523a2012-05-16 18:29:54 +0300796 err = self_check_volume(ubi, i);
Artem Bityutskiyc8566352008-07-16 17:40:22 +0300797 if (err)
798 break;
799 }
800
801 return err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400802}