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 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
|
/*
* Copyright (C) 2001-2003 Daniel Kelly
* Copyright (C) 2009 - 2011 Peter Pentchev
*
* 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.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
/* program that prints IP address ranges */
#define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "prips.h"
#include "except.h"
typedef enum {
FORMAT_HEX = 0,
FORMAT_DEC = 1,
FORMAT_DOT = 2
} AddrFormat;
#define FORMATS "hex", "dec", "dot"
const char *MAINTAINER = "Peter Pentchev <roam@ringlet.net>";
const char *VERSION =
"\rprips 0.9.9\n\
\rThis program comes with NO WARRANTY,\n\
\rto the extent permitted by law.\n\
\rYou may redistribute copies under \n\
\rthe terms of the GNU General Public License.\n";
static void usage(char *prog);
static AddrFormat get_format(char *format);
int main(int argc, char *argv[])
{
int ch;
const char *argstr = "d:f:i:e:cv";
uint32_t start = 0, end = 0, current;
int octet[4][256]; /* Holds all of the exceptions if -e is used */
int format = FORMAT_DOT; /* Dotted decimal by default */
int delimiter = 10; /* New line by default */
int increment = 1; /* Standard incrementer is one */
char *prefix, *offset;
/* flags */
int exception_flag = 0; /* If one, check for exclusions */
int print_as_cidr_flag= 0; /* If one, print range as addr/offset */
opterr = 0;
while ((ch = getopt(argc, argv, argstr)) != EOF) {
switch (ch) {
case 'c':
print_as_cidr_flag = 1;
break;
case 'd':
delimiter = atoi(optarg);
if(delimiter < 0 || delimiter > 255)
{
fprintf(stderr, "%s: delimiter must be between 0 and 255\n",
argv[0]);
exit(1);
}
break;
case 'f':
format = get_format(optarg);
break;
case 'i':
if((increment = atoi(optarg)) < 1)
{
fprintf(stderr, "%s: increment must be a positive integer\n",
argv[0]);
exit(1);
}
break;
case 'e':
set_exceptions(optarg, octet);
exception_flag = 1;
break;
case 'v':
printf("%s", VERSION);
exit(0);
case '?':
usage(argv[0]);
exit(1);
}
}
/*************************************************************/
/* Figure out what we have to work with. argc - optind is */
/* the number of arguments we have. If there is one argu- */
/* ment, we are dealing with CIDR, or a mistake. If ther */
/* are two arguments, we are dealing with start address and */
/* end address. We also make sure to test if the CIDR nota- */
/* tion is proper. */
/*************************************************************/
switch(argc - optind)
{
case 1: /* CIDR? */
prefix = strtok(argv[optind], "/");
if((offset = strtok(NULL, "/"))) /* CIDR */
{
start = numberize(prefix);
if(start == (uint32_t)-1)
{
fprintf(stderr, "%s: bad IP address\n", argv[0]);
exit(1);
}
end = add_offset(prefix, atoi(offset));
}
else
{
usage(argv[0]);
exit(1);
}
break;
case 2: /* start address, end address */
start = numberize(argv[optind]);
end = numberize(argv[optind+1]);
if(start == (uint32_t)-1 || end == (uint32_t)-1)
{
fprintf(stderr, "%s: bad IP address\n", argv[0]);
exit(1);
}
break;
default:
usage(argv[0]);
exit(1);
}
/***************************************************************/
/* OK- at this point we have the start and end address. If */
/* the start is greater than the end, we exit with an error. */
/* Otherwise, we start printing addresses that are not part of */
/* the exception list, if one exists. */
/***************************************************************/
if(start > end)
{
fprintf(stderr,
"%s: start address must be smaller than end address\n",
argv[0]);
exit(1);
}
if(print_as_cidr_flag) /* print start - end as start/offset */
printf("%s%c", cidrize(start, end), delimiter);
else
{
for(current = start; current <= end; current += increment)
{ if(!exception_flag || !except(¤t, octet))
{
switch(format)
{
case FORMAT_HEX:
printf("%lx%c", (long)current, delimiter);
break;
case FORMAT_DEC:
printf("%lu%c", (unsigned long)current, delimiter);
break;
default:
printf("%s%c", denumberize(current),
delimiter);
break;
}
}
}
}
return(0);
} /* end main */
static void usage(char *prog)
{
fprintf(stderr, "usage: %s [options] <start end | CIDR block>\n\
-c print range in CIDR notation\n\
-d <x> set the delimiter to the character with ASCII code 'x'\n\
where 0 <= x <= 255 \n\
-h display this help message and exit \n\
-f <x> set the format of addresses (hex, dec, or dot)\n\
-i <x> set the increment to 'x'\n\
-e <x.x.x,x.x> exclude a range from the output, e.g. -e ..4. will\n\
not print 192.168.4.[0-255]\n\
\n\
\rReport bugs to %s\n",
prog, MAINTAINER);
}
static AddrFormat get_format(char *format)
{
const char *list[] = {FORMATS};
size_t i;
for (i = 0; i < sizeof(list) / sizeof(list[0]); i++)
if( strcmp(format, list[i]) == 0)
break;
return(i);
}
|