blob: aafb7869b6897faee9dc2261b7dc6794265340cb [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Glenn L McGrathc11986d2002-11-10 23:42:27 +00002/*
3 * Mini ipcalc implementation for busybox
4 *
5 * By Jordan Crouse <jordan@cosmicpenguin.net>
6 * Stephan Linz <linz@li-pro.net>
7 *
Eric Andersenaff114c2004-04-14 17:51:38 +00008 * This is a complete reimplementation of the ipcalc program
9 * from Red Hat. I didn't look at their source code, but there
Glenn L McGrathc11986d2002-11-10 23:42:27 +000010 * is no denying that this is a loving reimplementation
Bernhard Reutner-Fischerb1629b12006-05-19 19:29:19 +000011 *
12 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Glenn L McGrathc11986d2002-11-10 23:42:27 +000013 */
14
Rob Landleyff97ee92006-06-02 19:03:01 +000015#include "busybox.h"
Glenn L McGrathc11986d2002-11-10 23:42:27 +000016#include <ctype.h>
17#include <getopt.h>
18#include <sys/socket.h>
Glenn L McGrathc11986d2002-11-10 23:42:27 +000019#include <arpa/inet.h>
20
Glenn L McGrathc11986d2002-11-10 23:42:27 +000021#define IPCALC_MSG(CMD,ALTCMD) if (mode & SILENT) {ALTCMD;} else {CMD;}
22
Eric Andersen7207b882003-07-05 07:59:30 +000023#define CLASS_A_NETMASK ntohl(0xFF000000)
24#define CLASS_B_NETMASK ntohl(0xFFFF0000)
25#define CLASS_C_NETMASK ntohl(0xFFFFFF00)
26
Glenn L McGrathc11986d2002-11-10 23:42:27 +000027static unsigned long get_netmask(unsigned long ipaddr)
28{
Eric Andersen7207b882003-07-05 07:59:30 +000029 ipaddr = htonl(ipaddr);
30
31 if ((ipaddr & 0xC0000000) == 0xC0000000)
32 return CLASS_C_NETMASK;
33 else if ((ipaddr & 0x80000000) == 0x80000000)
34 return CLASS_B_NETMASK;
35 else if ((ipaddr & 0x80000000) == 0)
36 return CLASS_A_NETMASK;
37 else
38 return 0;
Glenn L McGrathc11986d2002-11-10 23:42:27 +000039}
40
Glenn L McGrath530ea422003-09-02 06:59:57 +000041#ifdef CONFIG_FEATURE_IPCALC_FANCY
42static int get_prefix(unsigned long netmask)
43{
Glenn L McGrath14092a12003-09-12 00:44:50 +000044 unsigned long msk = 0x80000000;
Eric Andersena4375042004-04-13 19:25:57 +000045 int ret = 0;
Glenn L McGrath530ea422003-09-02 06:59:57 +000046
Glenn L McGrath14092a12003-09-12 00:44:50 +000047 netmask = htonl(netmask);
48 while(msk) {
49 if (netmask & msk)
50 ret++;
51 msk >>= 1;
Eric Andersena4375042004-04-13 19:25:57 +000052 }
53 return ret;
Glenn L McGrath530ea422003-09-02 06:59:57 +000054}
Rob Landleyff97ee92006-06-02 19:03:01 +000055#else
56int get_prefix(unsigned long netmask);
Glenn L McGrath530ea422003-09-02 06:59:57 +000057#endif
58
Glenn L McGrathc11986d2002-11-10 23:42:27 +000059#define NETMASK 0x01
60#define BROADCAST 0x02
61#define NETWORK 0x04
Glenn L McGrath530ea422003-09-02 06:59:57 +000062#define NETPREFIX 0x08
63#define HOSTNAME 0x10
Glenn L McGrathd6bdd5d2003-09-05 02:37:15 +000064#define SILENT 0x20
Glenn L McGrathc11986d2002-11-10 23:42:27 +000065
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +000066#if ENABLE_FEATURE_IPCALC_LONG_OPTIONS
Glenn L McGrath530ea422003-09-02 06:59:57 +000067 static const struct option long_options[] = {
Eric Andersena4375042004-04-13 19:25:57 +000068 {"netmask", no_argument, NULL, 'm'},
69 {"broadcast", no_argument, NULL, 'b'},
70 {"network", no_argument, NULL, 'n'},
Glenn L McGrath530ea422003-09-02 06:59:57 +000071#ifdef CONFIG_FEATURE_IPCALC_FANCY
Eric Andersena4375042004-04-13 19:25:57 +000072 {"prefix", no_argument, NULL, 'p'},
73 {"hostname", no_argument, NULL, 'h'},
74 {"silent", no_argument, NULL, 's'},
Glenn L McGrathc11986d2002-11-10 23:42:27 +000075#endif
76 {NULL, 0, NULL, 0}
77 };
Glenn L McGrathc11986d2002-11-10 23:42:27 +000078#else
Rob Landleyff97ee92006-06-02 19:03:01 +000079#define long_options 0
Glenn L McGrathc11986d2002-11-10 23:42:27 +000080#endif
Rob Landleyff97ee92006-06-02 19:03:01 +000081
82
83
84int ipcalc_main(int argc, char **argv)
85{
86 unsigned long mode;
87 int have_netmask = 0;
88 in_addr_t netmask, broadcast, network, ipaddr;
89 struct in_addr a;
90 char *ipstr;
91
92 if (ENABLE_FEATURE_IPCALC_LONG_OPTIONS)
93 bb_applet_long_options = long_options;
94
95 mode = bb_getopt_ulflags(argc, argv, "mbn" USE_FEATURE_IPCALC_FANCY("phs"));
Mike Frysingerb7f88e02005-09-24 23:48:18 +000096
97 argc -= optind;
98 argv += optind;
Glenn L McGrath530ea422003-09-02 06:59:57 +000099 if (mode & (BROADCAST | NETWORK | NETPREFIX)) {
Mike Frysingerb7f88e02005-09-24 23:48:18 +0000100 if (argc > 2 || argc <= 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000101 bb_show_usage();
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000102 } else {
Mike Frysingerb7f88e02005-09-24 23:48:18 +0000103 if (argc != 1)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000104 bb_show_usage();
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000105 }
106
Rob Landleyff97ee92006-06-02 19:03:01 +0000107 ipstr = argv[0];
108 if (ENABLE_FEATURE_IPCALC_FANCY) {
109 unsigned long netprefix = 0;
110 char *prefixstr;
Glenn L McGrath530ea422003-09-02 06:59:57 +0000111
Rob Landleyff97ee92006-06-02 19:03:01 +0000112 prefixstr = ipstr;
Glenn L McGrath14092a12003-09-12 00:44:50 +0000113
Rob Landleyff97ee92006-06-02 19:03:01 +0000114 while(*prefixstr) {
115 if (*prefixstr == '/') {
116 *prefixstr = (char)0;
117 prefixstr++;
118 if (*prefixstr) {
119 unsigned int msk;
120
121 if (safe_strtoul(prefixstr, &netprefix) || netprefix > 32) {
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000122 IPCALC_MSG(bb_error_msg_and_die("bad IP prefix: %s", prefixstr),
Rob Landleyff97ee92006-06-02 19:03:01 +0000123 exit(EXIT_FAILURE));
124 }
125 netmask = 0;
126 msk = 0x80000000;
127 while (netprefix > 0) {
128 netmask |= msk;
129 msk >>= 1;
130 netprefix--;
131 }
132 netmask = htonl(netmask);
133 /* Even if it was 0, we will signify that we have a netmask. This allows */
134 /* for specification of default routes, etc which have a 0 netmask/prefix */
135 have_netmask = 1;
Eric Andersena4375042004-04-13 19:25:57 +0000136 }
Rob Landleyff97ee92006-06-02 19:03:01 +0000137 break;
Eric Andersena4375042004-04-13 19:25:57 +0000138 }
Rob Landleyff97ee92006-06-02 19:03:01 +0000139 prefixstr++;
Eric Andersena4375042004-04-13 19:25:57 +0000140 }
Eric Andersena4375042004-04-13 19:25:57 +0000141 }
Glenn L McGrath14092a12003-09-12 00:44:50 +0000142 ipaddr = inet_aton(ipstr, &a);
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000143
Glenn L McGrath14092a12003-09-12 00:44:50 +0000144 if (ipaddr == 0) {
Mike Frysingerb7f88e02005-09-24 23:48:18 +0000145 IPCALC_MSG(bb_error_msg_and_die("bad IP address: %s", argv[0]),
Eric Andersena4375042004-04-13 19:25:57 +0000146 exit(EXIT_FAILURE));
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000147 }
Glenn L McGrath14092a12003-09-12 00:44:50 +0000148 ipaddr = a.s_addr;
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000149
Mike Frysingerb7f88e02005-09-24 23:48:18 +0000150 if (argc == 2) {
Rob Landleyff97ee92006-06-02 19:03:01 +0000151 if (ENABLE_FEATURE_IPCALC_FANCY && have_netmask) {
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000152 IPCALC_MSG(bb_error_msg_and_die("Use prefix or netmask, not both"),
Eric Andersena4375042004-04-13 19:25:57 +0000153 exit(EXIT_FAILURE));
154 }
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000155
Mike Frysingerb7f88e02005-09-24 23:48:18 +0000156 netmask = inet_aton(argv[1], &a);
Glenn L McGrath14092a12003-09-12 00:44:50 +0000157 if (netmask == 0) {
Mike Frysingerb7f88e02005-09-24 23:48:18 +0000158 IPCALC_MSG(bb_error_msg_and_die("bad netmask: %s", argv[1]),
Eric Andersena4375042004-04-13 19:25:57 +0000159 exit(EXIT_FAILURE));
160 }
Glenn L McGrath14092a12003-09-12 00:44:50 +0000161 netmask = a.s_addr;
162 } else {
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000163
Rob Landleyff97ee92006-06-02 19:03:01 +0000164 /* JHC - If the netmask wasn't provided then calculate it */
165 if (!ENABLE_FEATURE_IPCALC_FANCY || !have_netmask)
Eric Andersena4375042004-04-13 19:25:57 +0000166 netmask = get_netmask(ipaddr);
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000167 }
168
169 if (mode & NETMASK) {
170 printf("NETMASK=%s\n", inet_ntoa((*(struct in_addr *) &netmask)));
171 }
172
173 if (mode & BROADCAST) {
174 broadcast = (ipaddr & netmask) | ~netmask;
175 printf("BROADCAST=%s\n", inet_ntoa((*(struct in_addr *) &broadcast)));
176 }
177
178 if (mode & NETWORK) {
179 network = ipaddr & netmask;
180 printf("NETWORK=%s\n", inet_ntoa((*(struct in_addr *) &network)));
181 }
Glenn L McGrath530ea422003-09-02 06:59:57 +0000182
Rob Landleyff97ee92006-06-02 19:03:01 +0000183 if (ENABLE_FEATURE_IPCALC_FANCY) {
184 if (mode & NETPREFIX) {
185 printf("PREFIX=%i\n", get_prefix(netmask));
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000186 }
187
Rob Landleyff97ee92006-06-02 19:03:01 +0000188 if (mode & HOSTNAME) {
189 struct hostent *hostinfo;
190 int x;
191
192 hostinfo = gethostbyaddr((char *) &ipaddr, sizeof(ipaddr), AF_INET);
193 if (!hostinfo) {
194 IPCALC_MSG(bb_herror_msg_and_die(
195 "cannot find hostname for %s", argv[0]),);
196 exit(EXIT_FAILURE);
197 }
198 for (x = 0; hostinfo->h_name[x]; x++) {
199 hostinfo->h_name[x] = tolower(hostinfo->h_name[x]);
200 }
201
202 printf("HOSTNAME=%s\n", hostinfo->h_name);
203 }
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000204 }
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000205
206 return EXIT_SUCCESS;
207}