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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
|
/*
* ipaddrcheck.c: an IPv4/IPv6 validator
*
* Maintainer: Daniil Baturin <daniil at baturin dot org>
*
* Copyright (C) 2013 SO3Group
*
* 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, see <http://www.gnu.org/licenses/>.
*
*/
#include <errno.h>
#include "config.h"
#include "ipaddrcheck_functions.h"
/* Option codes */
#define IS_VALID 10
#define IS_IPV4 20
#define IS_IPV4_CIDR 30
#define IS_IPV4_SINGLE 40
#define IS_IPV4_HOST 50
#define IS_IPV4_NET 60
#define IS_IPV4_BROADCAST 70
#define IS_IPV4_UNICAST 80
#define IS_IPV4_MULTICAST 90
#define IS_IPV4_RFC1918 100
#define IS_IPV4_LOOPBACK 110
#define IS_IPV4_LINKLOCAL 120
#define IS_IPV6 130
#define IS_IPV6_CIDR 140
#define IS_IPV6_SINGLE 150
#define IS_IPV6_HOST 160
#define IS_IPV6_NET 170
#define IS_IPV6_UNICAST 180
#define IS_IPV6_MULTICAST 190
#define IS_IPV6_LINKLOCAL 200
#define HAS_MASK 210
#define IS_VALID_INTF_ADDR 220
static const struct option options[] =
{
{ "is-valid", no_argument, NULL, 'a' },
{ "has-mask", no_argument, NULL, 'b' },
{ "is-ipv4", no_argument, NULL, 'c' },
{ "is-ipv4-cidr", no_argument, NULL, 'd' },
{ "is-ipv4-single", no_argument, NULL, 'e' },
{ "is-ipv4-host", no_argument, NULL, 'f' },
{ "is-ipv4-net", no_argument, NULL, 'g' },
{ "is-ipv4-broadcast", no_argument, NULL, 'h' },
{ "is-ipv4-multicast", no_argument, NULL, 'i' },
{ "is-ipv4-loopback", no_argument, NULL, 'j' },
{ "is-ipv4-link-local", no_argument, NULL, 'k' },
{ "is-ipv4-rfc1918", no_argument, NULL, 'l' },
{ "is-ipv6", no_argument, NULL, 'm' },
{ "is-ipv6-cidr", no_argument, NULL, 'n' },
{ "is-ipv6-single", no_argument, NULL, 'o' },
{ "is-ipv6-host", no_argument, NULL, 'p' },
{ "is-ipv6-net", no_argument, NULL, 'r' },
{ "is-ipv6-multicast", no_argument, NULL, 's' },
{ "is-ipv6-link-local", no_argument, NULL, 't' },
{ "is-valid-intf-address", no_argument, NULL, 'u' },
{ "legacy", no_argument, NULL, 'w' },
{ "version", no_argument, NULL, 'z' },
{ "help", no_argument, NULL, '?' },
{ NULL, no_argument, NULL, 0 }
};
/* Auxillary functions */
static void print_help(void);
static void print_version(void);
int main(int argc, char* argv[])
{
char *address_str = ""; /* IP address string obtained from arguments */
int action = 0; /* Action associated with given check option */
int* actions; /* Array of all given actions */
int action_count = 0; /* Actions array size */
int option_index = 0; /* Number of the current option for getopt call */
int optc; /* Option character for getopt call */
/* Parse options, convert to action codes, store in array */
/* Try to allocate memory for the actions array, abort if fail */
actions = (int*)calloc(argc, sizeof(int));
if( errno == ENOMEM )
{
fprintf(stderr, "Error: could not allocate memory!\n");
return(EXIT_FAILURE);
}
while( (optc = getopt_long(argc, argv, "abcdefghijklmnoprstuz?", options, &option_index)) != -1 )
{
switch(optc)
{
case 'a':
action = IS_VALID;
break;
case 'b':
action = HAS_MASK;
break;
case 'c':
action = IS_IPV4;
break;
case 'd':
action = IS_IPV4_CIDR;
break;
case 'e':
action = IS_IPV4_SINGLE;
break;
case 'f':
action = IS_IPV4_HOST;
break;
case 'g':
action = IS_IPV4_NET;
case 'h':
action = IS_IPV4_BROADCAST;
break;
case 'i':
action = IS_IPV4_MULTICAST;
break;
case 'j':
action = IS_IPV4_LOOPBACK;
break;
case 'k':
action = IS_IPV4_LINKLOCAL;
break;
case 'l':
action = IS_IPV4_RFC1918;
break;
case 'm':
action = IS_IPV6;
break;
case 'n':
action = IS_IPV6_CIDR;
break;
case 'o':
action = IS_IPV6_SINGLE;
break;
case 'p':
action = IS_IPV6_HOST;
break;
case 'r':
action = IS_IPV6_NET;
break;
case 's':
action = IS_IPV6_MULTICAST;
break;
case 't':
action = IS_IPV6_LINKLOCAL;
break;
case 'u':
action = IS_VALID_INTF_ADDR;
break;
case '?':
print_help();
return(0);
case 'z':
print_version();
return(0);
default:
fprintf(stderr, "Error: invalid option\n");
break;
}
action_count = optind-2;
actions[action_count] = action;
}
/* Get non-option arguments */
if( (argc - optind) == 1 )
{
address_str = argv[optind];
}
else
{
fprintf(stderr, "Error: wrong number of arguments, one argument required!\n");
print_help();
return(EXIT_FAILURE);
}
CIDR *address;
address = cidr_from_str(address_str);
int result = RESULT_SUCCESS;
/* Check if the address is valid at all,
if not there is no point in going further */
if( is_valid_address(address) != RESULT_SUCCESS )
{
return(EXIT_FAILURE);
}
printf("action_count: %d\n", action_count);
while( (action_count >= 0) && (result == RESULT_SUCCESS) )
{
switch(actions[action_count])
{
case IS_VALID:
result = is_valid_address(address);
break;
case HAS_MASK:
result = has_mask(address_str);
break;
case IS_IPV4:
result = is_ipv4(address);
break;
case IS_IPV4_CIDR:
result = is_ipv4_cidr(address_str);
break;
case IS_IPV4_SINGLE:
result = is_ipv4_single(address_str);
break;
case IS_IPV4_HOST:
result = is_ipv4_host(address);
break;
case IS_IPV4_NET:
/* XXX: Should we fail this check for single addresses? */
result = is_ipv4_net(address);
break;
case IS_IPV4_BROADCAST:
result = is_ipv4_broadcast(address);
break;
case IS_IPV4_MULTICAST:
result = is_ipv4_multicast(address);
break;
case IS_IPV4_LOOPBACK:
result = is_ipv4_loopback(address);
break;
case IS_IPV4_LINKLOCAL:
result = is_ipv4_link_local(address);
break;
case IS_IPV4_RFC1918:
result = is_ipv4_rfc1918(address);
break;
case IS_IPV6:
result = is_ipv6(address);
break;
case IS_IPV6_CIDR:
result = is_ipv6_cidr(address_str);
break;
case IS_IPV6_SINGLE:
result = is_ipv6_single(address_str);
break;
case IS_IPV6_HOST:
result = is_ipv6_host(address);
break;
case IS_IPV6_NET:
result = is_ipv6_net(address);
break;
case IS_IPV6_MULTICAST:
result = is_ipv6_multicast(address);
break;
case IS_IPV6_LINKLOCAL:
result = is_ipv6_link_local(address);
break;
}
printf("action: %d\n", actions[action_count]);
action_count--;
}
/* Clean up */
free(actions);
cidr_free(address);
if( result == RESULT_SUCCESS )
{
return(EXIT_SUCCESS);
}
else
{
return(EXIT_FAILURE);
}
}
/*
* Print help, no other side effects
*/
void print_help(void)
{
static const char *message = \
"--is-valid STR Check if STR is a valid IPv4 or IPv6 address\n\
or subnet\n\
--is-ipv4 STR Check if STR is a valid IPv4 address with mask \n\
--is-ipv4-cidr STR Check if STR is a valid CIDR-formatted address \n\
--is-ipv4-single Check if STR is a valid single address (i.e. with no mask) \n\
--is-ipv4-host Check if STR is a host address \n\
--is-ipv4-net Check if STR is a network address \n\
--is-ipv4-broadcast Check if STR is a broadcast address \n\
--is-ipv4-multicast Check if STR is a multicast address \n\
--is-ipv4-loopback Check if STR is a loopback address \n\
--is-ipv4-link-local Check if STR is a link-local address \n\
--is-ipv4-rfc1918 Check if STR is a private (RFC1918) address \n\
--is-ipv6 Check if STR is a valid IPv6 address \n\
--is-ipv6-cidr Check if STR is a CIDR-formatted IPv6 address \n\
--is-ipv6-single Check if STR is an IPv6 address with no mask \n\
--is-ipv6-host Check if STR is an IPv6 host address \n\
--is-ipv6-net Check if STR is an IPv6 network address \n\
--is-ipv6-multicast Check if STR is an IPv6 multicast address \n\
--is-ipv6-link-local Check if STR is an IPv6 link-local address \n\
--is-valid-intf-address Check if STR is an IPv4 or IPv6 address that can be used assigned to a network interface \n\
--version Print version information and exit \n\
--help Print this message and exit";
printf("%s", message);
}
/*
* Print version information, no other side effects
*/
void print_version(void)
{
printf("%s %s\n", PACKAGE_NAME, PACKAGE_VERSION);
printf("Copyright (C) SO3Group 2013.\n\
License GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl.html>\n\
This is free software: you are free to change and redistribute it.\n\
There is NO WARRANTY, to the extent permitted by law.\n");
}
|