"Robert P. J. Day" | 63fc1a9 | 2006-07-02 19:47:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Glenn L McGrath | c11986d | 2002-11-10 23:42:27 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Mini ipcalc implementation for busybox |
| 4 | * |
| 5 | * By Jordan Crouse <jordan@cosmicpenguin.net> |
| 6 | * Stephan Linz <linz@li-pro.net> |
| 7 | * |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 8 | * 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 McGrath | c11986d | 2002-11-10 23:42:27 +0000 | [diff] [blame] | 10 | * is no denying that this is a loving reimplementation |
Bernhard Reutner-Fischer | b1629b1 | 2006-05-19 19:29:19 +0000 | [diff] [blame] | 11 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 12 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Glenn L McGrath | c11986d | 2002-11-10 23:42:27 +0000 | [diff] [blame] | 13 | */ |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 14 | //config:config IPCALC |
Denys Vlasenko | b097a84 | 2018-12-28 03:20:17 +0100 | [diff] [blame] | 15 | //config: bool "ipcalc (4.4 kb)" |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 16 | //config: default y |
| 17 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 18 | //config: ipcalc takes an IP address and netmask and calculates the |
| 19 | //config: resulting broadcast, network, and host range. |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 20 | //config: |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 21 | //config:config FEATURE_IPCALC_LONG_OPTIONS |
| 22 | //config: bool "Enable long options" |
| 23 | //config: default y |
| 24 | //config: depends on IPCALC && LONG_OPTS |
| 25 | //config: |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 26 | //config:config FEATURE_IPCALC_FANCY |
| 27 | //config: bool "Fancy IPCALC, more options, adds 1 kbyte" |
| 28 | //config: default y |
| 29 | //config: depends on IPCALC |
| 30 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 31 | //config: Adds the options hostname, prefix and silent to the output of |
| 32 | //config: "ipcalc". |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 33 | |
Denys Vlasenko | 90ad4ba | 2017-08-08 00:42:15 +0200 | [diff] [blame] | 34 | //applet:IF_IPCALC(APPLET_NOEXEC(ipcalc, ipcalc, BB_DIR_BIN, BB_SUID_DROP, ipcalc)) |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 35 | |
| 36 | //kbuild:lib-$(CONFIG_IPCALC) += ipcalc.o |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 37 | |
| 38 | //usage:#define ipcalc_trivial_usage |
Denys Vlasenko | 84d5edd | 2020-12-13 22:34:05 +0100 | [diff] [blame] | 39 | //usage: "[-bnm"IF_FEATURE_IPCALC_FANCY("phs")"] ADDRESS" |
Ron Yorston | 72dcbe4 | 2015-07-12 21:19:28 +0100 | [diff] [blame] | 40 | //usage: IF_FEATURE_IPCALC_FANCY("[/PREFIX]") " [NETMASK]" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 41 | //usage:#define ipcalc_full_usage "\n\n" |
Denys Vlasenko | 73adef1 | 2017-08-08 00:49:48 +0200 | [diff] [blame] | 42 | //usage: "Calculate and display network settings from IP address\n" |
| 43 | //usage: "\n -b Broadcast address" |
| 44 | //usage: "\n -n Network address" |
| 45 | //usage: "\n -m Default netmask for IP" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 46 | //usage: IF_FEATURE_IPCALC_FANCY( |
Denys Vlasenko | 73adef1 | 2017-08-08 00:49:48 +0200 | [diff] [blame] | 47 | //usage: "\n -p Prefix for IP/NETMASK" |
| 48 | //usage: "\n -h Resolved host name" |
| 49 | //usage: "\n -s No error messages" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 50 | //usage: ) |
| 51 | |
Dan Fandrich | fdd7b56 | 2010-06-18 22:37:42 -0700 | [diff] [blame] | 52 | #include "libbb.h" |
Denys Vlasenko | 134d0eb | 2010-06-19 20:07:23 +0200 | [diff] [blame] | 53 | /* After libbb.h, because on some systems it needs other includes */ |
Glenn L McGrath | c11986d | 2002-11-10 23:42:27 +0000 | [diff] [blame] | 54 | #include <arpa/inet.h> |
| 55 | |
Denys Vlasenko | fb132e4 | 2010-10-29 11:46:52 +0200 | [diff] [blame] | 56 | #define CLASS_A_NETMASK ntohl(0xFF000000) |
| 57 | #define CLASS_B_NETMASK ntohl(0xFFFF0000) |
| 58 | #define CLASS_C_NETMASK ntohl(0xFFFFFF00) |
Eric Andersen | 7207b88 | 2003-07-05 07:59:30 +0000 | [diff] [blame] | 59 | |
Glenn L McGrath | c11986d | 2002-11-10 23:42:27 +0000 | [diff] [blame] | 60 | static unsigned long get_netmask(unsigned long ipaddr) |
| 61 | { |
Eric Andersen | 7207b88 | 2003-07-05 07:59:30 +0000 | [diff] [blame] | 62 | ipaddr = htonl(ipaddr); |
| 63 | |
| 64 | if ((ipaddr & 0xC0000000) == 0xC0000000) |
| 65 | return CLASS_C_NETMASK; |
| 66 | else if ((ipaddr & 0x80000000) == 0x80000000) |
| 67 | return CLASS_B_NETMASK; |
| 68 | else if ((ipaddr & 0x80000000) == 0) |
| 69 | return CLASS_A_NETMASK; |
| 70 | else |
| 71 | return 0; |
Glenn L McGrath | c11986d | 2002-11-10 23:42:27 +0000 | [diff] [blame] | 72 | } |
| 73 | |
Denis Vlasenko | e324184 | 2007-08-13 10:36:25 +0000 | [diff] [blame] | 74 | #if ENABLE_FEATURE_IPCALC_FANCY |
Glenn L McGrath | 530ea42 | 2003-09-02 06:59:57 +0000 | [diff] [blame] | 75 | static int get_prefix(unsigned long netmask) |
| 76 | { |
Glenn L McGrath | 14092a1 | 2003-09-12 00:44:50 +0000 | [diff] [blame] | 77 | unsigned long msk = 0x80000000; |
Eric Andersen | a437504 | 2004-04-13 19:25:57 +0000 | [diff] [blame] | 78 | int ret = 0; |
Glenn L McGrath | 530ea42 | 2003-09-02 06:59:57 +0000 | [diff] [blame] | 79 | |
Glenn L McGrath | 14092a1 | 2003-09-12 00:44:50 +0000 | [diff] [blame] | 80 | netmask = htonl(netmask); |
Denis Vlasenko | bf0a201 | 2006-12-26 10:42:51 +0000 | [diff] [blame] | 81 | while (msk) { |
Glenn L McGrath | 14092a1 | 2003-09-12 00:44:50 +0000 | [diff] [blame] | 82 | if (netmask & msk) |
| 83 | ret++; |
| 84 | msk >>= 1; |
Eric Andersen | a437504 | 2004-04-13 19:25:57 +0000 | [diff] [blame] | 85 | } |
| 86 | return ret; |
Glenn L McGrath | 530ea42 | 2003-09-02 06:59:57 +0000 | [diff] [blame] | 87 | } |
Rob Landley | ff97ee9 | 2006-06-02 19:03:01 +0000 | [diff] [blame] | 88 | #else |
| 89 | int get_prefix(unsigned long netmask); |
Glenn L McGrath | 530ea42 | 2003-09-02 06:59:57 +0000 | [diff] [blame] | 90 | #endif |
| 91 | |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 92 | |
Glenn L McGrath | c11986d | 2002-11-10 23:42:27 +0000 | [diff] [blame] | 93 | #define NETMASK 0x01 |
| 94 | #define BROADCAST 0x02 |
| 95 | #define NETWORK 0x04 |
Glenn L McGrath | 530ea42 | 2003-09-02 06:59:57 +0000 | [diff] [blame] | 96 | #define NETPREFIX 0x08 |
| 97 | #define HOSTNAME 0x10 |
Glenn L McGrath | d6bdd5d | 2003-09-05 02:37:15 +0000 | [diff] [blame] | 98 | #define SILENT 0x20 |
Glenn L McGrath | c11986d | 2002-11-10 23:42:27 +0000 | [diff] [blame] | 99 | |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 100 | #if ENABLE_FEATURE_IPCALC_LONG_OPTIONS |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 101 | static const char ipcalc_longopts[] ALIGN1 = |
Steve Bennett | 823b636 | 2010-04-07 19:16:12 +0200 | [diff] [blame] | 102 | "netmask\0" No_argument "m" // netmask from IP (assuming complete class A, B, or C network) |
| 103 | "broadcast\0" No_argument "b" // broadcast from IP [netmask] |
| 104 | "network\0" No_argument "n" // network from IP [netmask] |
Denis Vlasenko | c61852a | 2006-11-29 11:09:43 +0000 | [diff] [blame] | 105 | # if ENABLE_FEATURE_IPCALC_FANCY |
Steve Bennett | 823b636 | 2010-04-07 19:16:12 +0200 | [diff] [blame] | 106 | "prefix\0" No_argument "p" // prefix from IP[/prefix] [netmask] |
| 107 | "hostname\0" No_argument "h" // hostname from IP |
| 108 | "silent\0" No_argument "s" // don’t ever display error messages |
Denis Vlasenko | c61852a | 2006-11-29 11:09:43 +0000 | [diff] [blame] | 109 | # endif |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 110 | ; |
Denys Vlasenko | 036585a | 2017-08-08 16:38:18 +0200 | [diff] [blame] | 111 | # define GETOPT32 getopt32long |
| 112 | # define LONGOPTS ,ipcalc_longopts |
| 113 | #else |
| 114 | # define GETOPT32 getopt32 |
| 115 | # define LONGOPTS |
Glenn L McGrath | c11986d | 2002-11-10 23:42:27 +0000 | [diff] [blame] | 116 | #endif |
Denis Vlasenko | c61852a | 2006-11-29 11:09:43 +0000 | [diff] [blame] | 117 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 118 | int ipcalc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denys Vlasenko | 12ca080 | 2010-02-04 18:41:18 +0100 | [diff] [blame] | 119 | int ipcalc_main(int argc UNUSED_PARAM, char **argv) |
Rob Landley | ff97ee9 | 2006-06-02 19:03:01 +0000 | [diff] [blame] | 120 | { |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 121 | unsigned opt; |
Denys Vlasenko | 12ca080 | 2010-02-04 18:41:18 +0100 | [diff] [blame] | 122 | bool have_netmask = 0; |
| 123 | struct in_addr s_netmask, s_broadcast, s_network, s_ipaddr; |
| 124 | /* struct in_addr { in_addr_t s_addr; } and in_addr_t |
| 125 | * (which in turn is just a typedef to uint32_t) |
| 126 | * are essentially the same type. A few macros for less verbosity: */ |
| 127 | #define netmask (s_netmask.s_addr) |
| 128 | #define broadcast (s_broadcast.s_addr) |
| 129 | #define network (s_network.s_addr) |
| 130 | #define ipaddr (s_ipaddr.s_addr) |
Rob Landley | ff97ee9 | 2006-06-02 19:03:01 +0000 | [diff] [blame] | 131 | char *ipstr; |
| 132 | |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 133 | opt = GETOPT32(argv, "^" |
| 134 | "mbn" IF_FEATURE_IPCALC_FANCY("phs") |
| 135 | "\0" "-1:?2"/*min 1, max 2 args*/ |
| 136 | LONGOPTS |
| 137 | ); |
Mike Frysinger | b7f88e0 | 2005-09-24 23:48:18 +0000 | [diff] [blame] | 138 | argv += optind; |
Denys Vlasenko | 12ca080 | 2010-02-04 18:41:18 +0100 | [diff] [blame] | 139 | if (opt & SILENT) |
| 140 | logmode = LOGMODE_NONE; /* suppress error_msg() output */ |
Steve Bennett | 823b636 | 2010-04-07 19:16:12 +0200 | [diff] [blame] | 141 | opt &= ~SILENT; |
| 142 | if (!(opt & (BROADCAST | NETWORK | NETPREFIX))) { |
| 143 | /* if no options at all or |
| 144 | * (no broadcast,network,prefix) and (two args)... */ |
| 145 | if (!opt || argv[1]) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 146 | bb_show_usage(); |
Glenn L McGrath | c11986d | 2002-11-10 23:42:27 +0000 | [diff] [blame] | 147 | } |
| 148 | |
Rob Landley | ff97ee9 | 2006-06-02 19:03:01 +0000 | [diff] [blame] | 149 | ipstr = argv[0]; |
| 150 | if (ENABLE_FEATURE_IPCALC_FANCY) { |
| 151 | unsigned long netprefix = 0; |
| 152 | char *prefixstr; |
Glenn L McGrath | 530ea42 | 2003-09-02 06:59:57 +0000 | [diff] [blame] | 153 | |
Rob Landley | ff97ee9 | 2006-06-02 19:03:01 +0000 | [diff] [blame] | 154 | prefixstr = ipstr; |
Glenn L McGrath | 14092a1 | 2003-09-12 00:44:50 +0000 | [diff] [blame] | 155 | |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 156 | while (*prefixstr) { |
Rob Landley | ff97ee9 | 2006-06-02 19:03:01 +0000 | [diff] [blame] | 157 | if (*prefixstr == '/') { |
Denys Vlasenko | 12ca080 | 2010-02-04 18:41:18 +0100 | [diff] [blame] | 158 | *prefixstr++ = '\0'; |
Rob Landley | ff97ee9 | 2006-06-02 19:03:01 +0000 | [diff] [blame] | 159 | if (*prefixstr) { |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 160 | unsigned msk; |
| 161 | netprefix = xatoul_range(prefixstr, 0, 32); |
Rob Landley | ff97ee9 | 2006-06-02 19:03:01 +0000 | [diff] [blame] | 162 | netmask = 0; |
| 163 | msk = 0x80000000; |
| 164 | while (netprefix > 0) { |
| 165 | netmask |= msk; |
| 166 | msk >>= 1; |
| 167 | netprefix--; |
| 168 | } |
| 169 | netmask = htonl(netmask); |
| 170 | /* Even if it was 0, we will signify that we have a netmask. This allows */ |
| 171 | /* for specification of default routes, etc which have a 0 netmask/prefix */ |
| 172 | have_netmask = 1; |
Eric Andersen | a437504 | 2004-04-13 19:25:57 +0000 | [diff] [blame] | 173 | } |
Rob Landley | ff97ee9 | 2006-06-02 19:03:01 +0000 | [diff] [blame] | 174 | break; |
Eric Andersen | a437504 | 2004-04-13 19:25:57 +0000 | [diff] [blame] | 175 | } |
Rob Landley | ff97ee9 | 2006-06-02 19:03:01 +0000 | [diff] [blame] | 176 | prefixstr++; |
Eric Andersen | a437504 | 2004-04-13 19:25:57 +0000 | [diff] [blame] | 177 | } |
Eric Andersen | a437504 | 2004-04-13 19:25:57 +0000 | [diff] [blame] | 178 | } |
Glenn L McGrath | c11986d | 2002-11-10 23:42:27 +0000 | [diff] [blame] | 179 | |
Denys Vlasenko | 12ca080 | 2010-02-04 18:41:18 +0100 | [diff] [blame] | 180 | if (inet_aton(ipstr, &s_ipaddr) == 0) { |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 181 | bb_error_msg_and_die("bad IP address: %s", argv[0]); |
Glenn L McGrath | c11986d | 2002-11-10 23:42:27 +0000 | [diff] [blame] | 182 | } |
| 183 | |
Denys Vlasenko | 12ca080 | 2010-02-04 18:41:18 +0100 | [diff] [blame] | 184 | if (argv[1]) { |
Rob Landley | ff97ee9 | 2006-06-02 19:03:01 +0000 | [diff] [blame] | 185 | if (ENABLE_FEATURE_IPCALC_FANCY && have_netmask) { |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 186 | bb_simple_error_msg_and_die("use prefix or netmask, not both"); |
Eric Andersen | a437504 | 2004-04-13 19:25:57 +0000 | [diff] [blame] | 187 | } |
Denys Vlasenko | 12ca080 | 2010-02-04 18:41:18 +0100 | [diff] [blame] | 188 | if (inet_aton(argv[1], &s_netmask) == 0) { |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 189 | bb_error_msg_and_die("bad netmask: %s", argv[1]); |
Eric Andersen | a437504 | 2004-04-13 19:25:57 +0000 | [diff] [blame] | 190 | } |
Glenn L McGrath | 14092a1 | 2003-09-12 00:44:50 +0000 | [diff] [blame] | 191 | } else { |
Rob Landley | ff97ee9 | 2006-06-02 19:03:01 +0000 | [diff] [blame] | 192 | /* JHC - If the netmask wasn't provided then calculate it */ |
| 193 | if (!ENABLE_FEATURE_IPCALC_FANCY || !have_netmask) |
Eric Andersen | a437504 | 2004-04-13 19:25:57 +0000 | [diff] [blame] | 194 | netmask = get_netmask(ipaddr); |
Glenn L McGrath | c11986d | 2002-11-10 23:42:27 +0000 | [diff] [blame] | 195 | } |
| 196 | |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 197 | if (opt & NETMASK) { |
Denys Vlasenko | 12ca080 | 2010-02-04 18:41:18 +0100 | [diff] [blame] | 198 | printf("NETMASK=%s\n", inet_ntoa(s_netmask)); |
Glenn L McGrath | c11986d | 2002-11-10 23:42:27 +0000 | [diff] [blame] | 199 | } |
| 200 | |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 201 | if (opt & BROADCAST) { |
Glenn L McGrath | c11986d | 2002-11-10 23:42:27 +0000 | [diff] [blame] | 202 | broadcast = (ipaddr & netmask) | ~netmask; |
Denys Vlasenko | 12ca080 | 2010-02-04 18:41:18 +0100 | [diff] [blame] | 203 | printf("BROADCAST=%s\n", inet_ntoa(s_broadcast)); |
Glenn L McGrath | c11986d | 2002-11-10 23:42:27 +0000 | [diff] [blame] | 204 | } |
| 205 | |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 206 | if (opt & NETWORK) { |
Glenn L McGrath | c11986d | 2002-11-10 23:42:27 +0000 | [diff] [blame] | 207 | network = ipaddr & netmask; |
Denys Vlasenko | 12ca080 | 2010-02-04 18:41:18 +0100 | [diff] [blame] | 208 | printf("NETWORK=%s\n", inet_ntoa(s_network)); |
Glenn L McGrath | c11986d | 2002-11-10 23:42:27 +0000 | [diff] [blame] | 209 | } |
Glenn L McGrath | 530ea42 | 2003-09-02 06:59:57 +0000 | [diff] [blame] | 210 | |
Rob Landley | ff97ee9 | 2006-06-02 19:03:01 +0000 | [diff] [blame] | 211 | if (ENABLE_FEATURE_IPCALC_FANCY) { |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 212 | if (opt & NETPREFIX) { |
Rob Landley | ff97ee9 | 2006-06-02 19:03:01 +0000 | [diff] [blame] | 213 | printf("PREFIX=%i\n", get_prefix(netmask)); |
Glenn L McGrath | c11986d | 2002-11-10 23:42:27 +0000 | [diff] [blame] | 214 | } |
| 215 | |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 216 | if (opt & HOSTNAME) { |
Rob Landley | ff97ee9 | 2006-06-02 19:03:01 +0000 | [diff] [blame] | 217 | struct hostent *hostinfo; |
Rob Landley | ff97ee9 | 2006-06-02 19:03:01 +0000 | [diff] [blame] | 218 | |
| 219 | hostinfo = gethostbyaddr((char *) &ipaddr, sizeof(ipaddr), AF_INET); |
| 220 | if (!hostinfo) { |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 221 | bb_herror_msg_and_die("can't find hostname for %s", argv[0]); |
Rob Landley | ff97ee9 | 2006-06-02 19:03:01 +0000 | [diff] [blame] | 222 | } |
Denis Vlasenko | fcc6347 | 2008-04-10 02:09:40 +0000 | [diff] [blame] | 223 | str_tolower(hostinfo->h_name); |
Denis Vlasenko | 5b3adae | 2008-04-19 21:57:57 +0000 | [diff] [blame] | 224 | |
Rob Landley | ff97ee9 | 2006-06-02 19:03:01 +0000 | [diff] [blame] | 225 | printf("HOSTNAME=%s\n", hostinfo->h_name); |
| 226 | } |
Glenn L McGrath | c11986d | 2002-11-10 23:42:27 +0000 | [diff] [blame] | 227 | } |
Glenn L McGrath | c11986d | 2002-11-10 23:42:27 +0000 | [diff] [blame] | 228 | |
| 229 | return EXIT_SUCCESS; |
| 230 | } |