2 * Copyright (c) International Business Machines Corp., 2006
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.
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.
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
18 * Author: Artem Bityutskiy (Битюцкий Артём)
22 * This file contains implementation of volume creation, deletion, updating and
26 #include <linux/err.h>
27 #include <linux/math64.h>
28 #include <linux/slab.h>
29 #include <linux/export.h>
32 #ifdef CONFIG_MTD_UBI_DEBUG
33 static int paranoid_check_volumes(struct ubi_device
*ubi
);
35 #define paranoid_check_volumes(ubi) 0
38 static ssize_t
vol_attribute_show(struct device
*dev
,
39 struct device_attribute
*attr
, char *buf
);
41 /* Device attributes corresponding to files in '/<sysfs>/class/ubi/ubiX_Y' */
42 static struct device_attribute attr_vol_reserved_ebs
=
43 __ATTR(reserved_ebs
, S_IRUGO
, vol_attribute_show
, NULL
);
44 static struct device_attribute attr_vol_type
=
45 __ATTR(type
, S_IRUGO
, vol_attribute_show
, NULL
);
46 static struct device_attribute attr_vol_name
=
47 __ATTR(name
, S_IRUGO
, vol_attribute_show
, NULL
);
48 static struct device_attribute attr_vol_corrupted
=
49 __ATTR(corrupted
, S_IRUGO
, vol_attribute_show
, NULL
);
50 static struct device_attribute attr_vol_alignment
=
51 __ATTR(alignment
, S_IRUGO
, vol_attribute_show
, NULL
);
52 static struct device_attribute attr_vol_usable_eb_size
=
53 __ATTR(usable_eb_size
, S_IRUGO
, vol_attribute_show
, NULL
);
54 static struct device_attribute attr_vol_data_bytes
=
55 __ATTR(data_bytes
, S_IRUGO
, vol_attribute_show
, NULL
);
56 static struct device_attribute attr_vol_upd_marker
=
57 __ATTR(upd_marker
, S_IRUGO
, vol_attribute_show
, NULL
);
60 * "Show" method for files in '/<sysfs>/class/ubi/ubiX_Y/'.
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;
68 * In this situation, this function will return %-ENODEV because it will find
69 * out that the volume was removed from the @ubi->volumes array.
71 static ssize_t
vol_attribute_show(struct device
*dev
,
72 struct device_attribute
*attr
, char *buf
)
75 struct ubi_volume
*vol
= container_of(dev
, struct ubi_volume
, dev
);
76 struct ubi_device
*ubi
;
78 ubi
= ubi_get_device(vol
->ubi
->ubi_num
);
82 spin_lock(&ubi
->volumes_lock
);
83 if (!ubi
->volumes
[vol
->vol_id
]) {
84 spin_unlock(&ubi
->volumes_lock
);
88 /* Take a reference to prevent volume removal */
90 spin_unlock(&ubi
->volumes_lock
);
92 if (attr
== &attr_vol_reserved_ebs
)
93 ret
= sprintf(buf
, "%d\n", vol
->reserved_pebs
);
94 else if (attr
== &attr_vol_type
) {
97 if (vol
->vol_type
== UBI_DYNAMIC_VOLUME
)
101 ret
= sprintf(buf
, "%s\n", tp
);
102 } else if (attr
== &attr_vol_name
)
103 ret
= sprintf(buf
, "%s\n", vol
->name
);
104 else if (attr
== &attr_vol_corrupted
)
105 ret
= sprintf(buf
, "%d\n", vol
->corrupted
);
106 else if (attr
== &attr_vol_alignment
)
107 ret
= sprintf(buf
, "%d\n", vol
->alignment
);
108 else if (attr
== &attr_vol_usable_eb_size
)
109 ret
= sprintf(buf
, "%d\n", vol
->usable_leb_size
);
110 else if (attr
== &attr_vol_data_bytes
)
111 ret
= sprintf(buf
, "%lld\n", vol
->used_bytes
);
112 else if (attr
== &attr_vol_upd_marker
)
113 ret
= sprintf(buf
, "%d\n", vol
->upd_marker
);
115 /* This must be a bug */
118 /* We've done the operation, drop volume and UBI device references */
119 spin_lock(&ubi
->volumes_lock
);
121 ubi_assert(vol
->ref_count
>= 0);
122 spin_unlock(&ubi
->volumes_lock
);
127 /* Release method for volume devices */
128 static void vol_release(struct device
*dev
)
130 struct ubi_volume
*vol
= container_of(dev
, struct ubi_volume
, dev
);
137 * volume_sysfs_init - initialize sysfs for new volume.
138 * @ubi: UBI device description object
139 * @vol: volume description object
141 * This function returns zero in case of success and a negative error code in
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
148 static int volume_sysfs_init(struct ubi_device
*ubi
, struct ubi_volume
*vol
)
152 err
= device_create_file(&vol
->dev
, &attr_vol_reserved_ebs
);
155 err
= device_create_file(&vol
->dev
, &attr_vol_type
);
158 err
= device_create_file(&vol
->dev
, &attr_vol_name
);
161 err
= device_create_file(&vol
->dev
, &attr_vol_corrupted
);
164 err
= device_create_file(&vol
->dev
, &attr_vol_alignment
);
167 err
= device_create_file(&vol
->dev
, &attr_vol_usable_eb_size
);
170 err
= device_create_file(&vol
->dev
, &attr_vol_data_bytes
);
173 err
= device_create_file(&vol
->dev
, &attr_vol_upd_marker
);
178 * volume_sysfs_close - close sysfs for a volume.
179 * @vol: volume description object
181 static void volume_sysfs_close(struct ubi_volume
*vol
)
183 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
);
191 device_unregister(&vol
->dev
);
195 * ubi_create_volume - create volume.
196 * @ubi: UBI device description object
197 * @req: volume creation request
199 * This function creates volume described by @req. If @req->vol_id id
200 * %UBI_VOL_NUM_AUTO, this function automatically assign ID to the new volume
201 * and saves it in @req->vol_id. Returns zero in case of success and a negative
202 * error code in case of failure. Note, the caller has to have the
203 * @ubi->device_mutex locked.
205 int ubi_create_volume(struct ubi_device
*ubi
, struct ubi_mkvol_req
*req
)
207 int i
, err
, vol_id
= req
->vol_id
, do_free
= 1;
208 struct ubi_volume
*vol
;
209 struct ubi_vtbl_record vtbl_rec
;
215 vol
= kzalloc(sizeof(struct ubi_volume
), GFP_KERNEL
);
219 spin_lock(&ubi
->volumes_lock
);
220 if (vol_id
== UBI_VOL_NUM_AUTO
) {
221 /* Find unused volume ID */
222 dbg_gen("search for vacant volume ID");
223 for (i
= 0; i
< ubi
->vtbl_slots
; i
++)
224 if (!ubi
->volumes
[i
]) {
229 if (vol_id
== UBI_VOL_NUM_AUTO
) {
230 dbg_err("out of volume IDs");
234 req
->vol_id
= vol_id
;
237 dbg_gen("create device %d, volume %d, %llu bytes, type %d, name %s",
238 ubi
->ubi_num
, vol_id
, (unsigned long long)req
->bytes
,
239 (int)req
->vol_type
, req
->name
);
241 /* Ensure that this volume does not exist */
243 if (ubi
->volumes
[vol_id
]) {
244 dbg_err("volume %d already exists", vol_id
);
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
&&
252 !strcmp(ubi
->volumes
[i
]->name
, req
->name
)) {
253 dbg_err("volume \"%s\" exists (ID %d)", req
->name
, i
);
257 /* Calculate how many eraseblocks are requested */
258 vol
->usable_leb_size
= ubi
->leb_size
- ubi
->leb_size
% req
->alignment
;
259 vol
->reserved_pebs
+= div_u64(req
->bytes
+ vol
->usable_leb_size
- 1,
260 vol
->usable_leb_size
);
262 /* Reserve physical eraseblocks */
263 if (vol
->reserved_pebs
> ubi
->avail_pebs
) {
264 dbg_err("not enough PEBs, only %d available", ubi
->avail_pebs
);
265 if (ubi
->corr_peb_count
)
266 dbg_err("%d PEBs are corrupted and not used",
267 ubi
->corr_peb_count
);
271 ubi
->avail_pebs
-= vol
->reserved_pebs
;
272 ubi
->rsvd_pebs
+= vol
->reserved_pebs
;
273 spin_unlock(&ubi
->volumes_lock
);
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
;
280 memcpy(vol
->name
, req
->name
, vol
->name_len
);
284 * Finish all pending erases because there may be some LEBs belonging
285 * to the same volume ID.
287 err
= ubi_wl_flush(ubi
);
291 vol
->eba_tbl
= kmalloc(vol
->reserved_pebs
* sizeof(int), GFP_KERNEL
);
297 for (i
= 0; i
< vol
->reserved_pebs
; i
++)
298 vol
->eba_tbl
[i
] = UBI_LEB_UNMAPPED
;
300 if (vol
->vol_type
== UBI_DYNAMIC_VOLUME
) {
301 vol
->used_ebs
= vol
->reserved_pebs
;
302 vol
->last_eb_bytes
= vol
->usable_leb_size
;
304 (long long)vol
->used_ebs
* vol
->usable_leb_size
;
306 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)
312 vol
->last_eb_bytes
= vol
->usable_leb_size
;
315 /* Register character device for the volume */
316 cdev_init(&vol
->cdev
, &ubi_vol_cdev_operations
);
317 vol
->cdev
.owner
= THIS_MODULE
;
318 dev
= MKDEV(MAJOR(ubi
->cdev
.dev
), vol_id
+ 1);
319 err
= cdev_add(&vol
->cdev
, dev
, 1);
321 ubi_err("cannot add character device");
325 vol
->dev
.release
= vol_release
;
326 vol
->dev
.parent
= &ubi
->dev
;
328 vol
->dev
.class = ubi_class
;
330 dev_set_name(&vol
->dev
, "%s_%d", ubi
->ubi_name
, vol
->vol_id
);
331 err
= device_register(&vol
->dev
);
333 ubi_err("cannot register device");
337 err
= volume_sysfs_init(ubi
, vol
);
341 /* Fill volume table record */
342 memset(&vtbl_rec
, 0, sizeof(struct ubi_vtbl_record
));
343 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
);
347 if (vol
->vol_type
== UBI_DYNAMIC_VOLUME
)
348 vtbl_rec
.vol_type
= UBI_VID_DYNAMIC
;
350 vtbl_rec
.vol_type
= UBI_VID_STATIC
;
351 memcpy(vtbl_rec
.name
, vol
->name
, vol
->name_len
);
353 err
= ubi_change_vtbl_record(ubi
, vol_id
, &vtbl_rec
);
357 spin_lock(&ubi
->volumes_lock
);
358 ubi
->volumes
[vol_id
] = vol
;
360 spin_unlock(&ubi
->volumes_lock
);
362 ubi_volume_notify(ubi
, vol
, UBI_VOLUME_ADDED
);
363 if (paranoid_check_volumes(ubi
))
364 dbg_err("check failed while creating volume %d", vol_id
);
369 * We have registered our device, we should not free the volume
370 * description object in this function in case of an error - it is
371 * freed by the release function.
373 * Get device reference to prevent the release function from being
374 * called just after sysfs has been closed.
377 get_device(&vol
->dev
);
378 volume_sysfs_close(vol
);
380 cdev_del(&vol
->cdev
);
385 spin_lock(&ubi
->volumes_lock
);
386 ubi
->rsvd_pebs
-= vol
->reserved_pebs
;
387 ubi
->avail_pebs
+= vol
->reserved_pebs
;
389 spin_unlock(&ubi
->volumes_lock
);
393 put_device(&vol
->dev
);
394 ubi_err("cannot create volume %d, error %d", vol_id
, err
);
399 * ubi_remove_volume - remove volume.
400 * @desc: volume descriptor
401 * @no_vtbl: do not change volume table if not zero
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
405 * code in case of failure. The caller has to have the @ubi->device_mutex
408 int ubi_remove_volume(struct ubi_volume_desc
*desc
, int no_vtbl
)
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
;
414 dbg_gen("remove device %d, volume %d", ubi
->ubi_num
, vol_id
);
415 ubi_assert(desc
->mode
== UBI_EXCLUSIVE
);
416 ubi_assert(vol
== ubi
->volumes
[vol_id
]);
421 spin_lock(&ubi
->volumes_lock
);
422 if (vol
->ref_count
> 1) {
424 * The volume is busy, probably someone is reading one of its
430 ubi
->volumes
[vol_id
] = NULL
;
431 spin_unlock(&ubi
->volumes_lock
);
434 err
= ubi_change_vtbl_record(ubi
, vol_id
, NULL
);
439 for (i
= 0; i
< vol
->reserved_pebs
; i
++) {
440 err
= ubi_eba_unmap_leb(ubi
, vol
, i
);
445 cdev_del(&vol
->cdev
);
446 volume_sysfs_close(vol
);
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
;
453 i
= ubi
->avail_pebs
>= i
? i
: ubi
->avail_pebs
;
454 ubi
->avail_pebs
-= i
;
456 ubi
->beb_rsvd_pebs
+= i
;
458 ubi_msg("reserve more %d PEBs", i
);
461 spin_unlock(&ubi
->volumes_lock
);
463 ubi_volume_notify(ubi
, vol
, UBI_VOLUME_REMOVED
);
464 if (!no_vtbl
&& paranoid_check_volumes(ubi
))
465 dbg_err("check failed while removing volume %d", vol_id
);
470 ubi_err("cannot remove volume %d, error %d", vol_id
, err
);
471 spin_lock(&ubi
->volumes_lock
);
472 ubi
->volumes
[vol_id
] = vol
;
474 spin_unlock(&ubi
->volumes_lock
);
479 * ubi_resize_volume - re-size volume.
480 * @desc: volume descriptor
481 * @reserved_pebs: new size in physical eraseblocks
483 * 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
485 * @ubi->device_mutex locked.
487 int ubi_resize_volume(struct ubi_volume_desc
*desc
, int reserved_pebs
)
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
;
498 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
);
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
);
508 /* If the size is the same, we have nothing to do */
509 if (reserved_pebs
== vol
->reserved_pebs
)
512 new_mapping
= kmalloc(reserved_pebs
* sizeof(int), GFP_KERNEL
);
516 for (i
= 0; i
< reserved_pebs
; i
++)
517 new_mapping
[i
] = UBI_LEB_UNMAPPED
;
519 spin_lock(&ubi
->volumes_lock
);
520 if (vol
->ref_count
> 1) {
521 spin_unlock(&ubi
->volumes_lock
);
525 spin_unlock(&ubi
->volumes_lock
);
527 /* Reserve physical eraseblocks */
528 pebs
= reserved_pebs
- vol
->reserved_pebs
;
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
);
534 if (ubi
->corr_peb_count
)
535 dbg_err("%d PEBs are corrupted and not used",
536 ubi
->corr_peb_count
);
537 spin_unlock(&ubi
->volumes_lock
);
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
];
546 vol
->eba_tbl
= new_mapping
;
547 spin_unlock(&ubi
->volumes_lock
);
550 /* Change volume table record */
551 memcpy(&vtbl_rec
, &ubi
->vtbl
[vol_id
], sizeof(struct ubi_vtbl_record
));
552 vtbl_rec
.reserved_pebs
= cpu_to_be32(reserved_pebs
);
553 err
= ubi_change_vtbl_record(ubi
, vol_id
, &vtbl_rec
);
558 for (i
= 0; i
< -pebs
; i
++) {
559 err
= ubi_eba_unmap_leb(ubi
, vol
, reserved_pebs
+ i
);
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
;
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
;
573 ubi_msg("reserve more %d PEBs", pebs
);
575 for (i
= 0; i
< reserved_pebs
; i
++)
576 new_mapping
[i
] = vol
->eba_tbl
[i
];
578 vol
->eba_tbl
= new_mapping
;
579 spin_unlock(&ubi
->volumes_lock
);
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
;
587 (long long)vol
->used_ebs
* vol
->usable_leb_size
;
590 ubi_volume_notify(ubi
, vol
, UBI_VOLUME_RESIZED
);
591 if (paranoid_check_volumes(ubi
))
592 dbg_err("check failed while re-sizing volume %d", vol_id
);
597 spin_lock(&ubi
->volumes_lock
);
598 ubi
->rsvd_pebs
-= pebs
;
599 ubi
->avail_pebs
+= pebs
;
600 spin_unlock(&ubi
->volumes_lock
);
608 * ubi_rename_volumes - re-name UBI volumes.
609 * @ubi: UBI device description object
610 * @rename_list: list of &struct ubi_rename_entry objects
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
616 int ubi_rename_volumes(struct ubi_device
*ubi
, struct list_head
*rename_list
)
619 struct ubi_rename_entry
*re
;
621 err
= ubi_vtbl_rename_volumes(ubi
, rename_list
);
625 list_for_each_entry(re
, rename_list
, list
) {
627 err
= ubi_remove_volume(re
->desc
, 1);
631 struct ubi_volume
*vol
= re
->desc
->vol
;
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
);
637 ubi_volume_notify(ubi
, vol
, UBI_VOLUME_RENAMED
);
641 if (!err
&& paranoid_check_volumes(ubi
))
647 * ubi_add_volume - add volume.
648 * @ubi: UBI device description object
649 * @vol: volume description object
651 * 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
655 int ubi_add_volume(struct ubi_device
*ubi
, struct ubi_volume
*vol
)
657 int err
, vol_id
= vol
->vol_id
;
660 dbg_gen("add volume %d", vol_id
);
662 /* Register character device for the volume */
663 cdev_init(&vol
->cdev
, &ubi_vol_cdev_operations
);
664 vol
->cdev
.owner
= THIS_MODULE
;
665 dev
= MKDEV(MAJOR(ubi
->cdev
.dev
), vol
->vol_id
+ 1);
666 err
= cdev_add(&vol
->cdev
, dev
, 1);
668 ubi_err("cannot add character device for volume %d, error %d",
673 vol
->dev
.release
= vol_release
;
674 vol
->dev
.parent
= &ubi
->dev
;
676 vol
->dev
.class = ubi_class
;
677 dev_set_name(&vol
->dev
, "%s_%d", ubi
->ubi_name
, vol
->vol_id
);
678 err
= device_register(&vol
->dev
);
682 err
= volume_sysfs_init(ubi
, vol
);
684 cdev_del(&vol
->cdev
);
685 volume_sysfs_close(vol
);
689 if (paranoid_check_volumes(ubi
))
690 dbg_err("check failed while adding volume %d", vol_id
);
694 cdev_del(&vol
->cdev
);
699 * ubi_free_volume - free volume.
700 * @ubi: UBI device description object
701 * @vol: volume description object
703 * This function frees all resources for volume @vol but does not remove it.
704 * Used only when the UBI device is detached.
706 void ubi_free_volume(struct ubi_device
*ubi
, struct ubi_volume
*vol
)
708 dbg_gen("free volume %d", vol
->vol_id
);
710 ubi
->volumes
[vol
->vol_id
] = NULL
;
711 cdev_del(&vol
->cdev
);
712 volume_sysfs_close(vol
);
715 #ifdef CONFIG_MTD_UBI_DEBUG
718 * paranoid_check_volume - check volume information.
719 * @ubi: UBI device description object
722 * Returns zero if volume is all right and a a negative error code if not.
724 static int paranoid_check_volume(struct ubi_device
*ubi
, int vol_id
)
726 int idx
= vol_id2idx(ubi
, vol_id
);
727 int reserved_pebs
, alignment
, data_pad
, vol_type
, name_len
, upd_marker
;
728 const struct ubi_volume
*vol
;
732 spin_lock(&ubi
->volumes_lock
);
733 reserved_pebs
= be32_to_cpu(ubi
->vtbl
[vol_id
].reserved_pebs
);
734 vol
= ubi
->volumes
[idx
];
738 ubi_err("no volume info, but volume exists");
741 spin_unlock(&ubi
->volumes_lock
);
745 if (vol
->reserved_pebs
< 0 || vol
->alignment
< 0 || vol
->data_pad
< 0 ||
747 ubi_err("negative values");
750 if (vol
->alignment
> ubi
->leb_size
|| vol
->alignment
== 0) {
751 ubi_err("bad alignment");
755 n
= vol
->alignment
& (ubi
->min_io_size
- 1);
756 if (vol
->alignment
!= 1 && n
) {
757 ubi_err("alignment is not multiple of min I/O unit");
761 n
= ubi
->leb_size
% vol
->alignment
;
762 if (vol
->data_pad
!= n
) {
763 ubi_err("bad data_pad, has to be %lld", n
);
767 if (vol
->vol_type
!= UBI_DYNAMIC_VOLUME
&&
768 vol
->vol_type
!= UBI_STATIC_VOLUME
) {
769 ubi_err("bad vol_type");
773 if (vol
->upd_marker
&& vol
->corrupted
) {
774 dbg_err("update marker and corrupted simultaneously");
778 if (vol
->reserved_pebs
> ubi
->good_peb_count
) {
779 ubi_err("too large reserved_pebs");
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
);
789 if (vol
->name_len
> UBI_VOL_NAME_MAX
) {
790 ubi_err("too long volume name, max is %d", UBI_VOL_NAME_MAX
);
794 n
= strnlen(vol
->name
, vol
->name_len
+ 1);
795 if (n
!= vol
->name_len
) {
796 ubi_err("bad name_len %lld", n
);
800 n
= (long long)vol
->used_ebs
* vol
->usable_leb_size
;
801 if (vol
->vol_type
== UBI_DYNAMIC_VOLUME
) {
802 if (vol
->corrupted
) {
803 ubi_err("corrupted dynamic volume");
806 if (vol
->used_ebs
!= vol
->reserved_pebs
) {
807 ubi_err("bad used_ebs");
810 if (vol
->last_eb_bytes
!= vol
->usable_leb_size
) {
811 ubi_err("bad last_eb_bytes");
814 if (vol
->used_bytes
!= n
) {
815 ubi_err("bad used_bytes");
819 if (vol
->used_ebs
< 0 || vol
->used_ebs
> vol
->reserved_pebs
) {
820 ubi_err("bad used_ebs");
823 if (vol
->last_eb_bytes
< 0 ||
824 vol
->last_eb_bytes
> vol
->usable_leb_size
) {
825 ubi_err("bad last_eb_bytes");
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");
835 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
);
838 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
;
843 vol_type
= UBI_STATIC_VOLUME
;
845 if (alignment
!= vol
->alignment
|| data_pad
!= vol
->data_pad
||
846 upd_marker
!= vol
->upd_marker
|| vol_type
!= vol
->vol_type
||
847 name_len
!= vol
->name_len
|| strncmp(name
, vol
->name
, name_len
)) {
848 ubi_err("volume info is different");
852 spin_unlock(&ubi
->volumes_lock
);
856 ubi_err("paranoid check failed for volume %d", vol_id
);
858 ubi_dbg_dump_vol_info(vol
);
859 ubi_dbg_dump_vtbl_record(&ubi
->vtbl
[vol_id
], vol_id
);
861 spin_unlock(&ubi
->volumes_lock
);
866 * paranoid_check_volumes - check information about all volumes.
867 * @ubi: UBI device description object
869 * Returns zero if volumes are all right and a a negative error code if not.
871 static int paranoid_check_volumes(struct ubi_device
*ubi
)
875 if (!ubi
->dbg
->chk_gen
)
878 for (i
= 0; i
< ubi
->vtbl_slots
; i
++) {
879 err
= paranoid_check_volume(ubi
, i
);