blob: 53d001b947f84440a642ed5b6371f5082163a77a [file] [log] [blame]
Willy Tarreau9bb0e202012-04-02 21:44:05 +02001/*
2 * network range to IP+mask converter
3 *
4 * Copyright 2011-2012 Willy Tarreau <w@1wt.eu>
5 *
6 * This program reads lines starting by two IP addresses and outputs them with
7 * the two IP addresses replaced by a netmask covering the range between these
8 * IPs (inclusive). When multiple ranges are needed, as many lines are emitted.
9 * The IP addresses may be delimited by spaces, tabs or commas. Quotes are
10 * stripped, and lines beginning with a sharp character ('#') are ignored. The
11 * IP addresses may be either in the dotted format or represented as a 32-bit
12 * integer value in network byte order.
13 *
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version
17 * 2 of the License, or (at your option) any later version.
18 */
19
20#include <sys/types.h>
21#include <sys/socket.h>
22#include <arpa/inet.h>
23#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
26
27#define MAXLINE 1024
28
29/* returns a string version of an IPv4 address in host order */
30static const char *get_ipv4_addr(unsigned int addr)
31{
32 struct in_addr a;
33
34 a.s_addr = ntohl(addr);
35 return inet_ntoa(a);
36}
37
38/* print all networks present between address <low> and address <high> in
39 * cidr format, followed by <eol>.
40 */
41static void convert_range(unsigned int low, unsigned int high, const char *eol)
42{
43 int bit;
44
45 if (low == high) {
46 /* single value */
47 printf("%s%s\n", get_ipv4_addr(low), eol);
48 return;
49 }
50 else if (low > high) {
51 int swap = low;
52 low = high;
53 high = swap;
54 }
55
56 if (low == high + 1) {
57 /* full range */
58 printf("0.0.0.0/0%s\n", eol);
59 return;
60 }
61 //printf("low=%08x high=%08x\n", low, high);
62
63 bit = 0;
64 while (bit < 32 && low + (1 << bit) - 1 <= high) {
65 /* enlarge mask */
66 if (low & (1 << bit)) {
67 /* can't aggregate anymore, dump and retry from the same bit */
68 printf("%s/%d%s\n", get_ipv4_addr(low), 32-bit, eol);
69 low += (1 << bit);
70 }
71 else {
72 /* try to enlarge the mask as much as possible first */
73 bit++;
74 //printf(" ++bit=%d\n", bit);
75 }
76 }
77 //printf("stopped 1 at low=%08x, bit=%d\n", low, bit);
78
79 bit = 31;
80 while (bit >= 0 && high - low + 1 != 0) {
81 /* shrink mask */
82 if ((high - low + 1) & (1 << bit)) {
83 /* large bit accepted, dump and go on from the same bit */
84 //printf("max: %08x/%d\n", low, 32-bit);
85 printf("%s/%d%s\n", get_ipv4_addr(low), 32-bit, eol);
86 low += (1 << bit);
87 }
88 else {
89 bit--;
90 //printf(" --bit=%d, low=%08x\n", bit, low);
91 }
92 }
93 //printf("stopped at low=%08x\n", low);
94}
95
96static void usage(const char *argv0)
97{
98 fprintf(stderr,
99 "Usage: %s < iplist.csv\n"
100 "\n"
101 "This program reads lines starting by two IP addresses and outputs them with\n"
102 "the two IP addresses replaced by a netmask covering the range between these\n"
103 "IPs (inclusive). When multiple ranges are needed, as many lines are emitted.\n"
104 "The IP addresses may be delimited by spaces, tabs or commas. Quotes are\n"
105 "stripped, and lines beginning with a sharp character ('#') are ignored. The\n"
106 "IP addresses may be either in the dotted format or represented as a 32-bit\n"
107 "integer value in network byte order.\n"
108 "\n", argv0);
109}
110
111main(int argc, char **argv)
112{
113 char line[MAXLINE];
114 int l, lnum;
115 char *lb, *le, *hb, *he, *err;
116 struct in_addr src_addr, dst_addr;
117 unsigned int sa, da;
118
119 if (argc > 1) {
120 usage(argv[0]);
121 exit(1);
122 }
123
124 lnum = 0;
125 while (fgets(line, sizeof(line), stdin) != NULL) {
126 l = strlen(line);
127 if (l && line[l - 1] == '\n')
128 line[--l] = '\0';
129
130 lnum++;
131 /* look for the first field which must be the low address of a range,
132 * in dotted IPv4 format or as an integer. spaces and commas are
133 * considered as delimiters, quotes are removed.
134 */
135 for (lb = line; *lb == ' ' || *lb == '\t' || *lb == ',' || *lb == '"'; lb++);
136 if (!*lb || *lb == '#')
137 continue;
138 for (le = lb + 1; *le != ' ' && *le != '\t' && *le != ',' && *le != '"' && *le; le++);
139 if (!*le)
140 continue;
141 /* we have the low address between lb(included) and le(excluded) */
142 *(le++) = 0;
143
144 for (hb = le; *hb == ' ' || *hb == '\t' || *hb == ',' || *hb == '"'; hb++);
145 if (!*hb || *hb == '#')
146 continue;
147 for (he = hb + 1; *he != ' ' && *he != '\t' && *he != ',' && *he != '"' && *he; he++);
148 if (!*he)
149 continue;
150 /* we have the high address between hb(included) and he(excluded) */
151 *(he++) = 0;
152
153 /* we want to remove a possible ending quote and a possible comma,
154 * not more.
155 */
156 while (*he == '"')
157 *(he++) = ' ';
158 while (*he == ',' || *he == ' ' || *he == '\t')
159 *(he++) = ' ';
160
161 /* if the trailing string is not empty, prefix it with a space */
162 if (*(he-1) == ' ')
163 he--;
164
165 if (inet_pton(AF_INET, lb, &src_addr) <= 0) {
166 /* parsing failed, retry with a plain numeric IP */
167 src_addr.s_addr = ntohl(strtoul(lb, &err, 10));
168 if (err && *err) {
169 fprintf(stderr, "Failed to parse source address <%s> at line %d, skipping line\n", lb, lnum);
170 continue;
171 }
172 }
173
174 if (inet_pton(AF_INET, hb, &dst_addr) <= 0) {
175 /* parsing failed, retry with a plain numeric IP */
176 dst_addr.s_addr = ntohl(strtoul(hb, &err, 10));
177 if (err && *err) {
178 fprintf(stderr, "Failed to parse destination address <%s> at line %d, skipping line\n", hb, lnum);
179 continue;
180 }
181 }
182
183 sa = htonl(src_addr.s_addr);
184 da = htonl(dst_addr.s_addr);
185 convert_range(sa, da, he);
186 }
187}