blob: 78558495ece4d48f85ecf7544504be7e39475578 [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
Glenn L McGrathc11986d2002-11-10 23:42:27 +000015#include <sys/socket.h>
Glenn L McGrathc11986d2002-11-10 23:42:27 +000016#include <arpa/inet.h>
17
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000018#include "libbb.h"
19
Eric Andersen7207b882003-07-05 07:59:30 +000020#define CLASS_A_NETMASK ntohl(0xFF000000)
21#define CLASS_B_NETMASK ntohl(0xFFFF0000)
22#define CLASS_C_NETMASK ntohl(0xFFFFFF00)
23
Glenn L McGrathc11986d2002-11-10 23:42:27 +000024static unsigned long get_netmask(unsigned long ipaddr)
25{
Eric Andersen7207b882003-07-05 07:59:30 +000026 ipaddr = htonl(ipaddr);
27
28 if ((ipaddr & 0xC0000000) == 0xC0000000)
29 return CLASS_C_NETMASK;
30 else if ((ipaddr & 0x80000000) == 0x80000000)
31 return CLASS_B_NETMASK;
32 else if ((ipaddr & 0x80000000) == 0)
33 return CLASS_A_NETMASK;
34 else
35 return 0;
Glenn L McGrathc11986d2002-11-10 23:42:27 +000036}
37
Denis Vlasenkoe3241842007-08-13 10:36:25 +000038#if ENABLE_FEATURE_IPCALC_FANCY
Glenn L McGrath530ea422003-09-02 06:59:57 +000039static int get_prefix(unsigned long netmask)
40{
Glenn L McGrath14092a12003-09-12 00:44:50 +000041 unsigned long msk = 0x80000000;
Eric Andersena4375042004-04-13 19:25:57 +000042 int ret = 0;
Glenn L McGrath530ea422003-09-02 06:59:57 +000043
Glenn L McGrath14092a12003-09-12 00:44:50 +000044 netmask = htonl(netmask);
Denis Vlasenkobf0a2012006-12-26 10:42:51 +000045 while (msk) {
Glenn L McGrath14092a12003-09-12 00:44:50 +000046 if (netmask & msk)
47 ret++;
48 msk >>= 1;
Eric Andersena4375042004-04-13 19:25:57 +000049 }
50 return ret;
Glenn L McGrath530ea422003-09-02 06:59:57 +000051}
Rob Landleyff97ee92006-06-02 19:03:01 +000052#else
53int get_prefix(unsigned long netmask);
Glenn L McGrath530ea422003-09-02 06:59:57 +000054#endif
55
Denis Vlasenko13858992006-10-08 12:49:22 +000056
Glenn L McGrathc11986d2002-11-10 23:42:27 +000057#define NETMASK 0x01
58#define BROADCAST 0x02
59#define NETWORK 0x04
Glenn L McGrath530ea422003-09-02 06:59:57 +000060#define NETPREFIX 0x08
61#define HOSTNAME 0x10
Glenn L McGrathd6bdd5d2003-09-05 02:37:15 +000062#define SILENT 0x20
Glenn L McGrathc11986d2002-11-10 23:42:27 +000063
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +000064#if ENABLE_FEATURE_IPCALC_LONG_OPTIONS
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000065 static const char ipcalc_longopts[] ALIGN1 =
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +000066 "netmask\0" No_argument "m"
67 "broadcast\0" No_argument "b"
68 "network\0" No_argument "n"
Denis Vlasenkoc61852a2006-11-29 11:09:43 +000069# if ENABLE_FEATURE_IPCALC_FANCY
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +000070 "prefix\0" No_argument "p"
71 "hostname\0" No_argument "h"
72 "silent\0" No_argument "s"
Denis Vlasenkoc61852a2006-11-29 11:09:43 +000073# endif
Denis Vlasenko990d0f62007-07-24 15:54:42 +000074 ;
Glenn L McGrathc11986d2002-11-10 23:42:27 +000075#endif
Denis Vlasenkoc61852a2006-11-29 11:09:43 +000076
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000077int ipcalc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko12ca0802010-02-04 18:41:18 +010078int ipcalc_main(int argc UNUSED_PARAM, char **argv)
Rob Landleyff97ee92006-06-02 19:03:01 +000079{
Denis Vlasenko13858992006-10-08 12:49:22 +000080 unsigned opt;
Denys Vlasenko12ca0802010-02-04 18:41:18 +010081 bool have_netmask = 0;
82 struct in_addr s_netmask, s_broadcast, s_network, s_ipaddr;
83 /* struct in_addr { in_addr_t s_addr; } and in_addr_t
84 * (which in turn is just a typedef to uint32_t)
85 * are essentially the same type. A few macros for less verbosity: */
86#define netmask (s_netmask.s_addr)
87#define broadcast (s_broadcast.s_addr)
88#define network (s_network.s_addr)
89#define ipaddr (s_ipaddr.s_addr)
Rob Landleyff97ee92006-06-02 19:03:01 +000090 char *ipstr;
91
Denis Vlasenkoc61852a2006-11-29 11:09:43 +000092#if ENABLE_FEATURE_IPCALC_LONG_OPTIONS
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +000093 applet_long_options = ipcalc_longopts;
Denis Vlasenkoc61852a2006-11-29 11:09:43 +000094#endif
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000095 opt = getopt32(argv, "mbn" IF_FEATURE_IPCALC_FANCY("phs"));
Mike Frysingerb7f88e02005-09-24 23:48:18 +000096 argv += optind;
Denys Vlasenko12ca0802010-02-04 18:41:18 +010097 if (opt & SILENT)
98 logmode = LOGMODE_NONE; /* suppress error_msg() output */
Denis Vlasenko13858992006-10-08 12:49:22 +000099 if (opt & (BROADCAST | NETWORK | NETPREFIX)) {
Denys Vlasenko12ca0802010-02-04 18:41:18 +0100100 if (!argv[0] || !argv[1] || argv[2])
Manuel Novoa III cad53642003-03-19 09:13:01 +0000101 bb_show_usage();
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000102 } else {
Denys Vlasenko12ca0802010-02-04 18:41:18 +0100103 if (!argv[0] || argv[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
Denis Vlasenko13858992006-10-08 12:49:22 +0000114 while (*prefixstr) {
Rob Landleyff97ee92006-06-02 19:03:01 +0000115 if (*prefixstr == '/') {
Denys Vlasenko12ca0802010-02-04 18:41:18 +0100116 *prefixstr++ = '\0';
Rob Landleyff97ee92006-06-02 19:03:01 +0000117 if (*prefixstr) {
Denis Vlasenko13858992006-10-08 12:49:22 +0000118 unsigned msk;
119 netprefix = xatoul_range(prefixstr, 0, 32);
Rob Landleyff97ee92006-06-02 19:03:01 +0000120 netmask = 0;
121 msk = 0x80000000;
122 while (netprefix > 0) {
123 netmask |= msk;
124 msk >>= 1;
125 netprefix--;
126 }
127 netmask = htonl(netmask);
128 /* Even if it was 0, we will signify that we have a netmask. This allows */
129 /* for specification of default routes, etc which have a 0 netmask/prefix */
130 have_netmask = 1;
Eric Andersena4375042004-04-13 19:25:57 +0000131 }
Rob Landleyff97ee92006-06-02 19:03:01 +0000132 break;
Eric Andersena4375042004-04-13 19:25:57 +0000133 }
Rob Landleyff97ee92006-06-02 19:03:01 +0000134 prefixstr++;
Eric Andersena4375042004-04-13 19:25:57 +0000135 }
Eric Andersena4375042004-04-13 19:25:57 +0000136 }
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000137
Denys Vlasenko12ca0802010-02-04 18:41:18 +0100138 if (inet_aton(ipstr, &s_ipaddr) == 0) {
Denis Vlasenko13858992006-10-08 12:49:22 +0000139 bb_error_msg_and_die("bad IP address: %s", argv[0]);
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000140 }
141
Denys Vlasenko12ca0802010-02-04 18:41:18 +0100142 if (argv[1]) {
Rob Landleyff97ee92006-06-02 19:03:01 +0000143 if (ENABLE_FEATURE_IPCALC_FANCY && have_netmask) {
Denis Vlasenko13858992006-10-08 12:49:22 +0000144 bb_error_msg_and_die("use prefix or netmask, not both");
Eric Andersena4375042004-04-13 19:25:57 +0000145 }
Denys Vlasenko12ca0802010-02-04 18:41:18 +0100146 if (inet_aton(argv[1], &s_netmask) == 0) {
Denis Vlasenko13858992006-10-08 12:49:22 +0000147 bb_error_msg_and_die("bad netmask: %s", argv[1]);
Eric Andersena4375042004-04-13 19:25:57 +0000148 }
Glenn L McGrath14092a12003-09-12 00:44:50 +0000149 } else {
Rob Landleyff97ee92006-06-02 19:03:01 +0000150 /* JHC - If the netmask wasn't provided then calculate it */
151 if (!ENABLE_FEATURE_IPCALC_FANCY || !have_netmask)
Eric Andersena4375042004-04-13 19:25:57 +0000152 netmask = get_netmask(ipaddr);
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000153 }
154
Denis Vlasenko13858992006-10-08 12:49:22 +0000155 if (opt & NETMASK) {
Denys Vlasenko12ca0802010-02-04 18:41:18 +0100156 printf("NETMASK=%s\n", inet_ntoa(s_netmask));
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000157 }
158
Denis Vlasenko13858992006-10-08 12:49:22 +0000159 if (opt & BROADCAST) {
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000160 broadcast = (ipaddr & netmask) | ~netmask;
Denys Vlasenko12ca0802010-02-04 18:41:18 +0100161 printf("BROADCAST=%s\n", inet_ntoa(s_broadcast));
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000162 }
163
Denis Vlasenko13858992006-10-08 12:49:22 +0000164 if (opt & NETWORK) {
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000165 network = ipaddr & netmask;
Denys Vlasenko12ca0802010-02-04 18:41:18 +0100166 printf("NETWORK=%s\n", inet_ntoa(s_network));
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000167 }
Glenn L McGrath530ea422003-09-02 06:59:57 +0000168
Rob Landleyff97ee92006-06-02 19:03:01 +0000169 if (ENABLE_FEATURE_IPCALC_FANCY) {
Denis Vlasenko13858992006-10-08 12:49:22 +0000170 if (opt & NETPREFIX) {
Rob Landleyff97ee92006-06-02 19:03:01 +0000171 printf("PREFIX=%i\n", get_prefix(netmask));
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000172 }
173
Denis Vlasenko13858992006-10-08 12:49:22 +0000174 if (opt & HOSTNAME) {
Rob Landleyff97ee92006-06-02 19:03:01 +0000175 struct hostent *hostinfo;
Rob Landleyff97ee92006-06-02 19:03:01 +0000176
177 hostinfo = gethostbyaddr((char *) &ipaddr, sizeof(ipaddr), AF_INET);
178 if (!hostinfo) {
Denys Vlasenko6331cf02009-11-13 09:08:27 +0100179 bb_herror_msg_and_die("can't find hostname for %s", argv[0]);
Rob Landleyff97ee92006-06-02 19:03:01 +0000180 }
Denis Vlasenkofcc63472008-04-10 02:09:40 +0000181 str_tolower(hostinfo->h_name);
Denis Vlasenko5b3adae2008-04-19 21:57:57 +0000182
Rob Landleyff97ee92006-06-02 19:03:01 +0000183 printf("HOSTNAME=%s\n", hostinfo->h_name);
184 }
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000185 }
Glenn L McGrathc11986d2002-11-10 23:42:27 +0000186
187 return EXIT_SUCCESS;
188}