3
0

ipcalc.c 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Mini ipcalc implementation for busybox
  4. *
  5. * By Jordan Crouse <jordan@cosmicpenguin.net>
  6. * Stephan Linz <linz@li-pro.net>
  7. *
  8. * This is a complete reimplementation of the ipcalc program
  9. * from Red Hat. I didn't look at their source code, but there
  10. * is no denying that this is a loving reimplementation
  11. *
  12. * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  13. */
  14. //usage:#define ipcalc_trivial_usage
  15. //usage: "[OPTIONS] ADDRESS[[/]NETMASK] [NETMASK]"
  16. //usage:#define ipcalc_full_usage "\n\n"
  17. //usage: "Calculate IP network settings from a IP address\n"
  18. //usage: IF_FEATURE_IPCALC_LONG_OPTIONS(
  19. //usage: "\n -b,--broadcast Display calculated broadcast address"
  20. //usage: "\n -n,--network Display calculated network address"
  21. //usage: "\n -m,--netmask Display default netmask for IP"
  22. //usage: IF_FEATURE_IPCALC_FANCY(
  23. //usage: "\n -p,--prefix Display the prefix for IP/NETMASK"
  24. //usage: "\n -h,--hostname Display first resolved host name"
  25. //usage: "\n -s,--silent Don't ever display error messages"
  26. //usage: )
  27. //usage: )
  28. //usage: IF_NOT_FEATURE_IPCALC_LONG_OPTIONS(
  29. //usage: "\n -b Display calculated broadcast address"
  30. //usage: "\n -n Display calculated network address"
  31. //usage: "\n -m Display default netmask for IP"
  32. //usage: IF_FEATURE_IPCALC_FANCY(
  33. //usage: "\n -p Display the prefix for IP/NETMASK"
  34. //usage: "\n -h Display first resolved host name"
  35. //usage: "\n -s Don't ever display error messages"
  36. //usage: )
  37. //usage: )
  38. #include "libbb.h"
  39. /* After libbb.h, because on some systems it needs other includes */
  40. #include <arpa/inet.h>
  41. #define CLASS_A_NETMASK ntohl(0xFF000000)
  42. #define CLASS_B_NETMASK ntohl(0xFFFF0000)
  43. #define CLASS_C_NETMASK ntohl(0xFFFFFF00)
  44. static unsigned long get_netmask(unsigned long ipaddr)
  45. {
  46. ipaddr = htonl(ipaddr);
  47. if ((ipaddr & 0xC0000000) == 0xC0000000)
  48. return CLASS_C_NETMASK;
  49. else if ((ipaddr & 0x80000000) == 0x80000000)
  50. return CLASS_B_NETMASK;
  51. else if ((ipaddr & 0x80000000) == 0)
  52. return CLASS_A_NETMASK;
  53. else
  54. return 0;
  55. }
  56. #if ENABLE_FEATURE_IPCALC_FANCY
  57. static int get_prefix(unsigned long netmask)
  58. {
  59. unsigned long msk = 0x80000000;
  60. int ret = 0;
  61. netmask = htonl(netmask);
  62. while (msk) {
  63. if (netmask & msk)
  64. ret++;
  65. msk >>= 1;
  66. }
  67. return ret;
  68. }
  69. #else
  70. int get_prefix(unsigned long netmask);
  71. #endif
  72. #define NETMASK 0x01
  73. #define BROADCAST 0x02
  74. #define NETWORK 0x04
  75. #define NETPREFIX 0x08
  76. #define HOSTNAME 0x10
  77. #define SILENT 0x20
  78. #if ENABLE_FEATURE_IPCALC_LONG_OPTIONS
  79. static const char ipcalc_longopts[] ALIGN1 =
  80. "netmask\0" No_argument "m" // netmask from IP (assuming complete class A, B, or C network)
  81. "broadcast\0" No_argument "b" // broadcast from IP [netmask]
  82. "network\0" No_argument "n" // network from IP [netmask]
  83. # if ENABLE_FEATURE_IPCALC_FANCY
  84. "prefix\0" No_argument "p" // prefix from IP[/prefix] [netmask]
  85. "hostname\0" No_argument "h" // hostname from IP
  86. "silent\0" No_argument "s" // don’t ever display error messages
  87. # endif
  88. ;
  89. #endif
  90. int ipcalc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  91. int ipcalc_main(int argc UNUSED_PARAM, char **argv)
  92. {
  93. unsigned opt;
  94. bool have_netmask = 0;
  95. struct in_addr s_netmask, s_broadcast, s_network, s_ipaddr;
  96. /* struct in_addr { in_addr_t s_addr; } and in_addr_t
  97. * (which in turn is just a typedef to uint32_t)
  98. * are essentially the same type. A few macros for less verbosity: */
  99. #define netmask (s_netmask.s_addr)
  100. #define broadcast (s_broadcast.s_addr)
  101. #define network (s_network.s_addr)
  102. #define ipaddr (s_ipaddr.s_addr)
  103. char *ipstr;
  104. #if ENABLE_FEATURE_IPCALC_LONG_OPTIONS
  105. applet_long_options = ipcalc_longopts;
  106. #endif
  107. opt_complementary = "-1:?2"; /* minimum 1 arg, maximum 2 args */
  108. opt = getopt32(argv, "mbn" IF_FEATURE_IPCALC_FANCY("phs"));
  109. argv += optind;
  110. if (opt & SILENT)
  111. logmode = LOGMODE_NONE; /* suppress error_msg() output */
  112. opt &= ~SILENT;
  113. if (!(opt & (BROADCAST | NETWORK | NETPREFIX))) {
  114. /* if no options at all or
  115. * (no broadcast,network,prefix) and (two args)... */
  116. if (!opt || argv[1])
  117. bb_show_usage();
  118. }
  119. ipstr = argv[0];
  120. if (ENABLE_FEATURE_IPCALC_FANCY) {
  121. unsigned long netprefix = 0;
  122. char *prefixstr;
  123. prefixstr = ipstr;
  124. while (*prefixstr) {
  125. if (*prefixstr == '/') {
  126. *prefixstr++ = '\0';
  127. if (*prefixstr) {
  128. unsigned msk;
  129. netprefix = xatoul_range(prefixstr, 0, 32);
  130. netmask = 0;
  131. msk = 0x80000000;
  132. while (netprefix > 0) {
  133. netmask |= msk;
  134. msk >>= 1;
  135. netprefix--;
  136. }
  137. netmask = htonl(netmask);
  138. /* Even if it was 0, we will signify that we have a netmask. This allows */
  139. /* for specification of default routes, etc which have a 0 netmask/prefix */
  140. have_netmask = 1;
  141. }
  142. break;
  143. }
  144. prefixstr++;
  145. }
  146. }
  147. if (inet_aton(ipstr, &s_ipaddr) == 0) {
  148. bb_error_msg_and_die("bad IP address: %s", argv[0]);
  149. }
  150. if (argv[1]) {
  151. if (ENABLE_FEATURE_IPCALC_FANCY && have_netmask) {
  152. bb_error_msg_and_die("use prefix or netmask, not both");
  153. }
  154. if (inet_aton(argv[1], &s_netmask) == 0) {
  155. bb_error_msg_and_die("bad netmask: %s", argv[1]);
  156. }
  157. } else {
  158. /* JHC - If the netmask wasn't provided then calculate it */
  159. if (!ENABLE_FEATURE_IPCALC_FANCY || !have_netmask)
  160. netmask = get_netmask(ipaddr);
  161. }
  162. if (opt & NETMASK) {
  163. printf("NETMASK=%s\n", inet_ntoa(s_netmask));
  164. }
  165. if (opt & BROADCAST) {
  166. broadcast = (ipaddr & netmask) | ~netmask;
  167. printf("BROADCAST=%s\n", inet_ntoa(s_broadcast));
  168. }
  169. if (opt & NETWORK) {
  170. network = ipaddr & netmask;
  171. printf("NETWORK=%s\n", inet_ntoa(s_network));
  172. }
  173. if (ENABLE_FEATURE_IPCALC_FANCY) {
  174. if (opt & NETPREFIX) {
  175. printf("PREFIX=%i\n", get_prefix(netmask));
  176. }
  177. if (opt & HOSTNAME) {
  178. struct hostent *hostinfo;
  179. hostinfo = gethostbyaddr((char *) &ipaddr, sizeof(ipaddr), AF_INET);
  180. if (!hostinfo) {
  181. bb_herror_msg_and_die("can't find hostname for %s", argv[0]);
  182. }
  183. str_tolower(hostinfo->h_name);
  184. printf("HOSTNAME=%s\n", hostinfo->h_name);
  185. }
  186. }
  187. return EXIT_SUCCESS;
  188. }