1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
  
     | 
    
      /*
 * Copyright (c) Ezequiel Garcia, 2014
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 as published by
 * the Free Software Foundation.
 *
 * 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., 51
 * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
 */
/*
 * An utility to create/remove block devices on top of UBI volumes.
 */
#define PROGRAM_NAME "ubiblock"
#include <fcntl.h>
#include <stdio.h>
#include <stdint.h>
#include <getopt.h>
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/stat.h>
#include <libubi.h>
#include "common.h"
struct args {
	const char *node;
	int create;
};
static struct args args;
static const char doc[] = PROGRAM_NAME " version " VERSION
			 " - a tool to create/remove block device interface from UBI volumes.";
static const char optionsstr[] =
"-c, --create               create block on top of a volume\n"
"-r, --remove               remove block from volume\n"
"-h, --help                 print help message\n"
"-V, --version              print program version";
static const char usage[] =
"Usage: " PROGRAM_NAME " [-c,-r] <UBI volume node file name>\n"
"Example: " PROGRAM_NAME " --create /dev/ubi0_0";
static const struct option long_options[] = {
	{ .name = "create",   .has_arg = 1, .flag = NULL, .val = 'c' },
	{ .name = "remove",   .has_arg = 1, .flag = NULL, .val = 'r' },
	{ .name = "help",     .has_arg = 0, .flag = NULL, .val = 'h' },
	{ .name = "version",  .has_arg = 0, .flag = NULL, .val = 'V' },
	{ NULL, 0, NULL, 0}
};
static int parse_opt(int argc, char * const argv[])
{
	while (1) {
		int key;
		key = getopt_long(argc, argv, "c:r:h?V", long_options, NULL);
		if (key == -1)
			break;
		switch (key) {
		case 'c':
			args.create = 1;
		case 'r':
			args.node = optarg;
			break;
		case 'h':
		case '?':
			printf("%s\n\n", doc);
			printf("%s\n\n", usage);
			printf("%s\n", optionsstr);
			exit(EXIT_SUCCESS);
		case 'V':
			common_print_version();
			exit(EXIT_SUCCESS);
		default:
			fprintf(stderr, "Use -h for help\n");
			return -1;
		}
	}
	if (!args.node)
		return errmsg("invalid arguments (use -h for help)");
	return 0;
}
int main(int argc, char * const argv[])
{
	int err, fd;
	libubi_t libubi;
	err = parse_opt(argc, argv);
	if (err)
		return -1;
	libubi = libubi_open();
	if (!libubi) {
		if (errno == 0)
			errmsg("UBI is not present in the system");
		return sys_errmsg("cannot open libubi");
	}
	err = ubi_probe_node(libubi, args.node);
	if (err == 1) {
		errmsg("\"%s\" is an UBI device node, not an UBI volume node",
		       args.node);
		goto out_libubi;
	} else if (err < 0) {
		if (errno == ENODEV)
			errmsg("\"%s\" is not an UBI volume node", args.node);
		else
			sys_errmsg("error while probing \"%s\"", args.node);
		goto out_libubi;
	}
	fd = open(args.node, O_RDWR);
	if (fd == -1) {
		sys_errmsg("cannot open UBI volume \"%s\"", args.node);
		goto out_libubi;
	}
	if (args.create) {
		err = ubi_vol_block_create(fd);
		if (err) {
			if (errno == ENOSYS)
				errmsg("UBI block is not present in the system");
			if (errno == ENOTTY)
				errmsg("UBI block not supported (check your kernel version)");
			sys_errmsg("cannot create block device");
			goto out_close;
		}
	} else {
		err = ubi_vol_block_remove(fd);
		if (err) {
			if (errno == ENOSYS)
				errmsg("UBI block is not present in the system");
			if (errno == ENOTTY)
				errmsg("UBI block not supported (check your kernel version)");
			sys_errmsg("cannot remove block device");
			goto out_close;
		}
	}
	close(fd);
	libubi_close(libubi);
	return 0;
out_close:
	close(fd);
out_libubi:
	libubi_close(libubi);
	return -1;
}
 
     |