blob: ade4ed101559d8145cf5d2832da7037a2e893cb7 [file] [log] [blame]
Glenn L McGrathc11986d2002-11-10 23:42:27 +00001/* vi: set sw=4 ts=4 ai: */
2/*
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
15#include <stdio.h>
16#include <stdlib.h>
17#include <ctype.h>
18#include <getopt.h>
19#include <sys/socket.h>
20#include <netinet/in.h>
21#include <arpa/inet.h>
22
23#include "busybox.h"
24
25#define IPCALC_MSG(CMD,ALTCMD) if (mode & SILENT) {ALTCMD;} else {CMD;}
26
Eric Andersen7207b882003-07-05 07:59:30 +000027#define CLASS_A_NETMASK ntohl(0xFF000000)
28#define CLASS_B_NETMASK ntohl(0xFFFF0000)
29#define CLASS_C_NETMASK ntohl(0xFFFFFF00)
30
Glenn L McGrathc11986d2002-11-10 23:42:27 +000031static unsigned long get_netmask(unsigned long ipaddr)
32{
Eric Andersen7207b882003-07-05 07:59:30 +000033 ipaddr = htonl(ipaddr);
34
35 if ((ipaddr & 0xC0000000) == 0xC0000000)
36 return CLASS_C_NETMASK;
37 else if ((ipaddr & 0x80000000) == 0x80000000)
38 return CLASS_B_NETMASK;
39 else if ((ipaddr & 0x80000000) == 0)
40 return CLASS_A_NETMASK;
41 else
42 return 0;
Glenn L McGrathc11986d2002-11-10 23:42:27 +000043}
44
Glenn L McGrath530ea422003-09-02 06:59:57 +000045#ifdef CONFIG_FEATURE_IPCALC_FANCY
46static int get_prefix(unsigned long netmask)
47{
Glenn L McGrath14092a12003-09-12 00:44:50 +000048 unsigned long msk = 0x80000000;
Eric Andersena4375042004-04-13 19:25:57 +000049 int ret = 0;
Glenn L McGrath530ea422003-09-02 06:59:57 +000050
Glenn L McGrath14092a12003-09-12 00:44:50 +000051 netmask = htonl(netmask);
52 while(msk) {
53 if (netmask & msk)
54 ret++;
55 msk >>= 1;
Eric Andersena4375042004-04-13 19:25:57 +000056 }
57 return ret;
Glenn L McGrath530ea422003-09-02 06:59:57 +000058}
59#endif
60
Glenn L McGrathc11986d2002-11-10 23:42:27 +000061#define NETMASK 0x01
62#define BROADCAST 0x02
63#define NETWORK 0x04
Glenn L McGrath530ea422003-09-02 06:59:57 +000064#define NETPREFIX 0x08
65#define HOSTNAME 0x10
Glenn L McGrathd6bdd5d2003-09-05 02:37:15 +000066#define SILENT 0x20
Glenn L McGrathc11986d2002-11-10 23:42:27 +000067
Glenn L McGrath14092a12003-09-12 00:44:50 +000068
Glenn L McGrathc11986d2002-11-10 23:42:27 +000069int ipcalc_main(int argc, char **argv)
70{
Eric Andersene968ee32003-07-03 10:28:07 +000071 unsigned long mode;
Glenn L McGrathc11986d2002-11-10 23:42:27 +000072
Eric Andersenb225e2a2004-08-28 00:43:07 +000073 in_addr_t netmask;
74 in_addr_t broadcast;
75 in_addr_t network;
76 in_addr_t ipaddr;
Glenn L McGrath14092a12003-09-12 00:44:50 +000077 struct in_addr a;
Glenn L McGrathc11986d2002-11-10 23:42:27 +000078
Glenn L McGrathc11986d2002-11-10 23:42:27 +000079#ifdef CONFIG_FEATURE_IPCALC_FANCY
Glenn L McGrath530ea422003-09-02 06:59:57 +000080 unsigned long netprefix = 0;
81 int have_netmask = 0;
82 char *ipstr, *prefixstr;
83#endif
84
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +000085#if ENABLE_FEATURE_IPCALC_LONG_OPTIONS
Glenn L McGrath530ea422003-09-02 06:59:57 +000086 static const struct option long_options[] = {
Eric Andersena4375042004-04-13 19:25:57 +000087 {"netmask", no_argument, NULL, 'm'},
88 {"broadcast", no_argument, NULL, 'b'},
89 {"network", no_argument, NULL, 'n'},
Glenn L McGrath530ea422003-09-02 06:59:57 +000090#ifdef CONFIG_FEATURE_IPCALC_FANCY
Eric Andersena4375042004-04-13 19:25:57 +000091 {"prefix", no_argument, NULL, 'p'},
92 {"hostname", no_argument, NULL, 'h'},
93 {"silent", no_argument, NULL, 's'},
Glenn L McGrathc11986d2002-11-10 23:42:27 +000094#endif
95 {NULL, 0, NULL, 0}
96 };
97
Eric Andersene968ee32003-07-03 10:28:07 +000098 bb_applet_long_options = long_options;
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +000099#endif
Eric Andersene968ee32003-07-03 10:28:07 +0000100 mode = bb_getopt_ulflags(argc, argv,
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000101#ifdef CONFIG_FEATURE_IPCALC_FANCY
Eric Andersena4375042004-04-13 19:25:57 +0000102 "mbnphs"
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000103#else
Eric Andersena4375042004-04-13 19:25:57 +0000104 "mbn"
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000105#endif
Eric Andersena4375042004-04-13 19:25:57 +0000106 );
Mike Frysingerb7f88e02005-09-24 23:48:18 +0000107
108 argc -= optind;
109 argv += optind;
Glenn L McGrath530ea422003-09-02 06:59:57 +0000110 if (mode & (BROADCAST | NETWORK | NETPREFIX)) {
Mike Frysingerb7f88e02005-09-24 23:48:18 +0000111 if (argc > 2 || argc <= 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000112 bb_show_usage();
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000113 } else {
Mike Frysingerb7f88e02005-09-24 23:48:18 +0000114 if (argc != 1)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000115 bb_show_usage();
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000116 }
117
Glenn L McGrath530ea422003-09-02 06:59:57 +0000118#ifdef CONFIG_FEATURE_IPCALC_FANCY
Mike Frysingerb7f88e02005-09-24 23:48:18 +0000119 prefixstr = ipstr = argv[0];
Glenn L McGrath530ea422003-09-02 06:59:57 +0000120
Eric Andersena4375042004-04-13 19:25:57 +0000121 while(*prefixstr) {
122 if (*prefixstr == '/') {
123 *prefixstr = (char)0;
124 prefixstr++;
125 if (*prefixstr) {
Glenn L McGrath14092a12003-09-12 00:44:50 +0000126 unsigned int msk;
127
Eric Andersena4375042004-04-13 19:25:57 +0000128 if (safe_strtoul(prefixstr, &netprefix) || netprefix > 32) {
129 IPCALC_MSG(bb_error_msg_and_die("bad IP prefix: %s\n", prefixstr),
130 exit(EXIT_FAILURE));
131 }
Glenn L McGrath14092a12003-09-12 00:44:50 +0000132 netmask = 0;
133 msk = 0x80000000;
134 while (netprefix > 0) {
135 netmask |= msk;
136 msk >>= 1;
Eric Andersena4375042004-04-13 19:25:57 +0000137 netprefix--;
138 }
139 netmask = htonl(netmask);
140 /* Even if it was 0, we will signify that we have a netmask. This allows */
141 /* for specification of default routes, etc which have a 0 netmask/prefix */
142 have_netmask = 1;
143 }
144 break;
145 }
146 prefixstr++;
147 }
Glenn L McGrath14092a12003-09-12 00:44:50 +0000148 ipaddr = inet_aton(ipstr, &a);
Glenn L McGrath530ea422003-09-02 06:59:57 +0000149#else
Mike Frysingerb7f88e02005-09-24 23:48:18 +0000150 ipaddr = inet_aton(argv[0], &a);
Glenn L McGrath530ea422003-09-02 06:59:57 +0000151#endif
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000152
Glenn L McGrath14092a12003-09-12 00:44:50 +0000153 if (ipaddr == 0) {
Mike Frysingerb7f88e02005-09-24 23:48:18 +0000154 IPCALC_MSG(bb_error_msg_and_die("bad IP address: %s", argv[0]),
Eric Andersena4375042004-04-13 19:25:57 +0000155 exit(EXIT_FAILURE));
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000156 }
Glenn L McGrath14092a12003-09-12 00:44:50 +0000157 ipaddr = a.s_addr;
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000158
Mike Frysingerb7f88e02005-09-24 23:48:18 +0000159 if (argc == 2) {
Glenn L McGrath530ea422003-09-02 06:59:57 +0000160#ifdef CONFIG_FEATURE_IPCALC_FANCY
Eric Andersena4375042004-04-13 19:25:57 +0000161 if (have_netmask) {
162 IPCALC_MSG(bb_error_msg_and_die("Both prefix and netmask were specified, use one or the other.\n"),
163 exit(EXIT_FAILURE));
164 }
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000165
Glenn L McGrath14092a12003-09-12 00:44:50 +0000166#endif
Mike Frysingerb7f88e02005-09-24 23:48:18 +0000167 netmask = inet_aton(argv[1], &a);
Glenn L McGrath14092a12003-09-12 00:44:50 +0000168 if (netmask == 0) {
Mike Frysingerb7f88e02005-09-24 23:48:18 +0000169 IPCALC_MSG(bb_error_msg_and_die("bad netmask: %s", argv[1]),
Eric Andersena4375042004-04-13 19:25:57 +0000170 exit(EXIT_FAILURE));
171 }
Glenn L McGrath14092a12003-09-12 00:44:50 +0000172 netmask = a.s_addr;
173 } else {
174#ifdef CONFIG_FEATURE_IPCALC_FANCY
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000175
Glenn L McGrath14092a12003-09-12 00:44:50 +0000176 if (!have_netmask)
177#endif
Eric Andersena4375042004-04-13 19:25:57 +0000178 /* JHC - If the netmask wasn't provided then calculate it */
179 netmask = get_netmask(ipaddr);
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000180 }
181
182 if (mode & NETMASK) {
183 printf("NETMASK=%s\n", inet_ntoa((*(struct in_addr *) &netmask)));
184 }
185
186 if (mode & BROADCAST) {
187 broadcast = (ipaddr & netmask) | ~netmask;
188 printf("BROADCAST=%s\n", inet_ntoa((*(struct in_addr *) &broadcast)));
189 }
190
191 if (mode & NETWORK) {
192 network = ipaddr & netmask;
193 printf("NETWORK=%s\n", inet_ntoa((*(struct in_addr *) &network)));
194 }
Glenn L McGrath530ea422003-09-02 06:59:57 +0000195
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000196#ifdef CONFIG_FEATURE_IPCALC_FANCY
Eric Andersena4375042004-04-13 19:25:57 +0000197 if (mode & NETPREFIX) {
198 printf("PREFIX=%i\n", get_prefix(netmask));
199 }
Glenn L McGrath530ea422003-09-02 06:59:57 +0000200
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000201 if (mode & HOSTNAME) {
202 struct hostent *hostinfo;
203 int x;
204
205 hostinfo = gethostbyaddr((char *) &ipaddr, sizeof(ipaddr), AF_INET);
206 if (!hostinfo) {
Eric Andersene968ee32003-07-03 10:28:07 +0000207 IPCALC_MSG(bb_herror_msg_and_die(
Mike Frysingerb7f88e02005-09-24 23:48:18 +0000208 "cannot find hostname for %s", argv[0]),);
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000209 exit(EXIT_FAILURE);
210 }
211 for (x = 0; hostinfo->h_name[x]; x++) {
212 hostinfo->h_name[x] = tolower(hostinfo->h_name[x]);
213 }
214
215 printf("HOSTNAME=%s\n", hostinfo->h_name);
216 }
217#endif
218
219 return EXIT_SUCCESS;
220}