ipcalc.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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 tarball for details.
  13. */
  14. #include <sys/socket.h>
  15. #include <arpa/inet.h>
  16. #include "libbb.h"
  17. #define CLASS_A_NETMASK ntohl(0xFF000000)
  18. #define CLASS_B_NETMASK ntohl(0xFFFF0000)
  19. #define CLASS_C_NETMASK ntohl(0xFFFFFF00)
  20. static unsigned long get_netmask(unsigned long ipaddr)
  21. {
  22. ipaddr = htonl(ipaddr);
  23. if ((ipaddr & 0xC0000000) == 0xC0000000)
  24. return CLASS_C_NETMASK;
  25. else if ((ipaddr & 0x80000000) == 0x80000000)
  26. return CLASS_B_NETMASK;
  27. else if ((ipaddr & 0x80000000) == 0)
  28. return CLASS_A_NETMASK;
  29. else
  30. return 0;
  31. }
  32. #if ENABLE_FEATURE_IPCALC_FANCY
  33. static int get_prefix(unsigned long netmask)
  34. {
  35. unsigned long msk = 0x80000000;
  36. int ret = 0;
  37. netmask = htonl(netmask);
  38. while (msk) {
  39. if (netmask & msk)
  40. ret++;
  41. msk >>= 1;
  42. }
  43. return ret;
  44. }
  45. #else
  46. int get_prefix(unsigned long netmask);
  47. #endif
  48. #define NETMASK 0x01
  49. #define BROADCAST 0x02
  50. #define NETWORK 0x04
  51. #define NETPREFIX 0x08
  52. #define HOSTNAME 0x10
  53. #define SILENT 0x20
  54. #if ENABLE_FEATURE_IPCALC_LONG_OPTIONS
  55. static const char ipcalc_longopts[] ALIGN1 =
  56. "netmask\0" No_argument "m"
  57. "broadcast\0" No_argument "b"
  58. "network\0" No_argument "n"
  59. # if ENABLE_FEATURE_IPCALC_FANCY
  60. "prefix\0" No_argument "p"
  61. "hostname\0" No_argument "h"
  62. "silent\0" No_argument "s"
  63. # endif
  64. ;
  65. #endif
  66. int ipcalc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  67. int ipcalc_main(int argc, char **argv)
  68. {
  69. unsigned opt;
  70. int have_netmask = 0;
  71. in_addr_t netmask, broadcast, network, ipaddr;
  72. struct in_addr a;
  73. char *ipstr;
  74. #if ENABLE_FEATURE_IPCALC_LONG_OPTIONS
  75. applet_long_options = ipcalc_longopts;
  76. #endif
  77. opt = getopt32(argv, "mbn" IF_FEATURE_IPCALC_FANCY("phs"));
  78. argc -= optind;
  79. argv += optind;
  80. if (opt & (BROADCAST | NETWORK | NETPREFIX)) {
  81. if (argc > 2 || argc <= 0)
  82. bb_show_usage();
  83. } else {
  84. if (argc != 1)
  85. bb_show_usage();
  86. }
  87. if (opt & SILENT)
  88. logmode = LOGMODE_NONE; /* Suppress error_msg() output */
  89. ipstr = argv[0];
  90. if (ENABLE_FEATURE_IPCALC_FANCY) {
  91. unsigned long netprefix = 0;
  92. char *prefixstr;
  93. prefixstr = ipstr;
  94. while (*prefixstr) {
  95. if (*prefixstr == '/') {
  96. *prefixstr = (char)0;
  97. prefixstr++;
  98. if (*prefixstr) {
  99. unsigned msk;
  100. netprefix = xatoul_range(prefixstr, 0, 32);
  101. netmask = 0;
  102. msk = 0x80000000;
  103. while (netprefix > 0) {
  104. netmask |= msk;
  105. msk >>= 1;
  106. netprefix--;
  107. }
  108. netmask = htonl(netmask);
  109. /* Even if it was 0, we will signify that we have a netmask. This allows */
  110. /* for specification of default routes, etc which have a 0 netmask/prefix */
  111. have_netmask = 1;
  112. }
  113. break;
  114. }
  115. prefixstr++;
  116. }
  117. }
  118. ipaddr = inet_aton(ipstr, &a);
  119. if (ipaddr == 0) {
  120. bb_error_msg_and_die("bad IP address: %s", argv[0]);
  121. }
  122. ipaddr = a.s_addr;
  123. if (argc == 2) {
  124. if (ENABLE_FEATURE_IPCALC_FANCY && have_netmask) {
  125. bb_error_msg_and_die("use prefix or netmask, not both");
  126. }
  127. netmask = inet_aton(argv[1], &a);
  128. if (netmask == 0) {
  129. bb_error_msg_and_die("bad netmask: %s", argv[1]);
  130. }
  131. netmask = a.s_addr;
  132. } else {
  133. /* JHC - If the netmask wasn't provided then calculate it */
  134. if (!ENABLE_FEATURE_IPCALC_FANCY || !have_netmask)
  135. netmask = get_netmask(ipaddr);
  136. }
  137. if (opt & NETMASK) {
  138. printf("NETMASK=%s\n", inet_ntoa((*(struct in_addr *) &netmask)));
  139. }
  140. if (opt & BROADCAST) {
  141. broadcast = (ipaddr & netmask) | ~netmask;
  142. printf("BROADCAST=%s\n", inet_ntoa((*(struct in_addr *) &broadcast)));
  143. }
  144. if (opt & NETWORK) {
  145. network = ipaddr & netmask;
  146. printf("NETWORK=%s\n", inet_ntoa((*(struct in_addr *) &network)));
  147. }
  148. if (ENABLE_FEATURE_IPCALC_FANCY) {
  149. if (opt & NETPREFIX) {
  150. printf("PREFIX=%i\n", get_prefix(netmask));
  151. }
  152. if (opt & HOSTNAME) {
  153. struct hostent *hostinfo;
  154. hostinfo = gethostbyaddr((char *) &ipaddr, sizeof(ipaddr), AF_INET);
  155. if (!hostinfo) {
  156. bb_herror_msg_and_die("cannot find hostname for %s", argv[0]);
  157. }
  158. str_tolower(hostinfo->h_name);
  159. printf("HOSTNAME=%s\n", hostinfo->h_name);
  160. }
  161. }
  162. return EXIT_SUCCESS;
  163. }