123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253 |
- /*
- * Copyright (c) International Business Machines Corp., 2006
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
- * the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- *
- * Author: Artem B. Bityutskiy
- *
- * Test test checks basic volume creation and deletion capabilities.
- */
- #include <stdio.h>
- #include <errno.h>
- #include <string.h>
- #include "libubi.h"
- #define PROGRAM_NAME "mkvol_basic"
- #include "common.h"
- #include "helpers.h"
- static libubi_t libubi;
- static struct ubi_dev_info dev_info;
- const char *node;
- /**
- * mkvol_alignment - create volumes with different alignments.
- *
- * Thus function returns %0 in case of success and %-1 in case of failure.
- */
- static int mkvol_alignment(void)
- {
- struct ubi_mkvol_request req;
- int i, vol_id, ebsz;
- const char *name = PROGRAM_NAME ":mkvol_alignment()";
- int alignments[] = ALIGNMENTS(dev_info.leb_size);
- for (i = 0; i < sizeof(alignments)/sizeof(int); i++) {
- req.vol_id = UBI_VOL_NUM_AUTO;
- /* Alignment should actually be multiple of min. I/O size */
- req.alignment = alignments[i];
- req.alignment -= req.alignment % dev_info.min_io_size;
- if (req.alignment == 0)
- req.alignment = dev_info.min_io_size;
- /* Bear in mind alignment reduces EB size */
- ebsz = dev_info.leb_size - dev_info.leb_size % req.alignment;
- req.bytes = (long long)dev_info.avail_lebs * ebsz;
- req.vol_type = UBI_DYNAMIC_VOLUME;
- req.name = name;
- req.flags = 0;
- if (ubi_mkvol(libubi, node, &req)) {
- failed("ubi_mkvol");
- errorm("alignment %d", req.alignment);
- return -1;
- }
- vol_id = req.vol_id;
- if (check_volume(vol_id, &req))
- goto remove;
- if (ubi_rmvol(libubi, node, vol_id)) {
- failed("ubi_rmvol");
- return -1;
- }
- }
- return 0;
- remove:
- ubi_rmvol(libubi, node, vol_id);
- return -1;
- }
- /**
- * mkvol_basic - simple test that checks basic volume creation capability.
- *
- * Thus function returns %0 in case of success and %-1 in case of failure.
- */
- static int mkvol_basic(void)
- {
- struct ubi_mkvol_request req;
- struct ubi_vol_info vol_info;
- int vol_id, ret;
- const char *name = PROGRAM_NAME ":mkvol_basic()";
- /* Create dynamic volume of maximum size */
- req.vol_id = UBI_VOL_NUM_AUTO;
- req.alignment = 1;
- req.bytes = dev_info.avail_bytes;
- req.vol_type = UBI_DYNAMIC_VOLUME;
- req.name = name;
- req.flags = 0;
- if (ubi_mkvol(libubi, node, &req)) {
- failed("ubi_mkvol");
- return -1;
- }
- vol_id = req.vol_id;
- if (check_volume(vol_id, &req))
- goto remove;
- if (ubi_rmvol(libubi, node, vol_id)) {
- failed("ubi_rmvol");
- return -1;
- }
- /* Create static volume of maximum size */
- req.vol_id = UBI_VOL_NUM_AUTO;
- req.alignment = 1;
- req.bytes = dev_info.avail_bytes;
- req.vol_type = UBI_STATIC_VOLUME;
- req.name = name;
- if (ubi_mkvol(libubi, node, &req)) {
- failed("ubi_mkvol");
- return -1;
- }
- vol_id = req.vol_id;
- if (check_volume(vol_id, &req))
- goto remove;
- if (ubi_rmvol(libubi, node, vol_id)) {
- failed("ubi_rmvol");
- return -1;
- }
- /* Make sure volume does not exist */
- ret = ubi_get_vol_info1(libubi, dev_info.dev_num, vol_id, &vol_info);
- if (ret == 0) {
- errorm("removed volume %d exists", vol_id);
- goto remove;
- }
- return 0;
- remove:
- ubi_rmvol(libubi, node, vol_id);
- return -1;
- }
- /**
- * mkvol_multiple - test multiple volumes creation
- *
- * Thus function returns %0 if the test passed and %-1 if not.
- */
- static int mkvol_multiple(void)
- {
- struct ubi_mkvol_request req;
- int i, ret, max = dev_info.max_vol_count;
- const char *name = PROGRAM_NAME ":mkvol_multiple()";
- /* Create maximum number of volumes */
- for (i = 0; i < max; i++) {
- char nm[strlen(name) + 50];
- req.vol_id = UBI_VOL_NUM_AUTO;
- req.alignment = 1;
- req.bytes = 1;
- req.vol_type = UBI_STATIC_VOLUME;
- req.flags = 0;
- sprintf(nm, "%s:%d", name, i);
- req.name = nm;
- if (ubi_mkvol(libubi, node, &req)) {
- if (errno == ENFILE || errno == ENOSPC) {
- max = i;
- break;
- }
- failed("ubi_mkvol");
- errorm("vol_id %d", i);
- goto remove;
- }
- if (check_volume(req.vol_id, &req)) {
- errorm("vol_id %d", i);
- goto remove;
- }
- }
- for (i = 0; i < max; i++) {
- struct ubi_vol_info vol_info;
- if (ubi_rmvol(libubi, node, i)) {
- failed("ubi_rmvol");
- return -1;
- }
- /* Make sure volume does not exist */
- ret = ubi_get_vol_info1(libubi, dev_info.dev_num, i, &vol_info);
- if (ret == 0) {
- errorm("removed volume %d exists", i);
- goto remove;
- }
- }
- return 0;
- remove:
- for (i = 0; i < dev_info.max_vol_count + 1; i++)
- ubi_rmvol(libubi, node, i);
- return -1;
- }
- int main(int argc, char * const argv[])
- {
- if (initial_check(argc, argv))
- return 1;
- node = argv[1];
- libubi = libubi_open();
- if (libubi == NULL) {
- failed("libubi_open");
- return 1;
- }
- if (ubi_get_dev_info(libubi, node, &dev_info)) {
- failed("ubi_get_dev_info");
- goto close;
- }
- if (mkvol_basic())
- goto close;
- if (mkvol_alignment())
- goto close;
- if (mkvol_multiple())
- goto close;
- libubi_close(libubi);
- return 0;
- close:
- libubi_close(libubi);
- return 1;
- }
|