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
|
/*
* libexplain - Explain errno values returned by libc functions
* Copyright (C) 2009, 2011 Peter Miller
* Written by Peter Miller <pmiller@opensource.org.au>
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/
#include <libexplain/ac/stdio.h>
#include <libexplain/ac/stdlib.h>
#include <libexplain/ac/unistd.h>
#include <libexplain/ac/getopt.h>
#include <libexplain/iocontrol.h>
#include <libexplain/version_print.h>
#include <ioctl-scan/probe.h>
#include <ioctl-scan/scan.h>
static void
usage(void)
{
fprintf(stderr, "Usage: ioctl-scan --block <device>\n");
fprintf(stderr, " ioctl-scan -V\n");
exit(EXIT_FAILURE);
}
#ifdef HAVE_GETOPT_LONG
static const struct option options[] =
{
{ "block", 1, 0, 'B' },
{ "dangerous-probe", 1, 0, 256 },
{ "version", 0, 0, 'V' },
{ 0, 0, 0, 0 }
};
#endif
int
main(int argc, char **argv)
{
for (;;)
{
#ifdef HAVE_GETOPT_LONG
int c = getopt_long(argc, argv, "B:V", options, 0);
#else
int c = getopt(argc, argv, "B:V");
#endif
if (c < 0)
break;
switch (c)
{
case 'B':
scan_block_device(optarg);
return 0;
case 256:
probe(optarg);
return 0;
case 'V':
explain_version_print();
return 0;
default:
usage();
/* NOTREACHED */
}
}
usage();
return 0;
}
|