resolveip.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:5k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /* Resolves IP's to hostname and hostnames to IP's */
  14. #define RESOLVE_VERSION "2.3"
  15. #include <my_global.h>
  16. #include <m_ctype.h>
  17. #include <my_sys.h>
  18. #include <m_string.h>
  19. #include <sys/types.h>
  20. #include <sys/socket.h>
  21. #ifndef HAVE_BROKEN_NETINET_INCLUDES
  22. #include <netinet/in.h>
  23. #endif
  24. #include <arpa/inet.h>
  25. #include <netdb.h>
  26. #include <my_net.h>
  27. #include <my_getopt.h>
  28. #if !defined(_AIX) && !defined(HAVE_UNIXWARE7_THREADS) && !defined(HAVE_UNIXWARE7_POSIX) && !defined(h_errno)
  29. extern int h_errno;
  30. #endif
  31. static my_bool silent;
  32. static struct my_option my_long_options[] =
  33. {
  34.   {"help", '?', "Displays this help and exits.",
  35.    0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  36.   {"info", 'I', "Synonym for --help.",
  37.    0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  38.   {"silent", 's', "Be more silent.", (gptr*) &silent, (gptr*) &silent,
  39.    0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  40.   {"version", 'V', "Displays version information and exits.",
  41.    0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  42.   { 0, 0, 0, 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0}
  43. };
  44. static void print_version(void)
  45. {
  46.   printf("%s Ver %s, for %s (%s)n",my_progname,RESOLVE_VERSION,
  47.  SYSTEM_TYPE,MACHINE_TYPE);
  48. }
  49. static void usage(void)
  50. {
  51.   print_version();
  52.   puts("This software comes with ABSOLUTELY NO WARRANTY. This is free software,nand you are welcome to modify and redistribute it under the GPL licensen");
  53.   puts("Get hostname based on IP-address or IP-address based on hostname.n");
  54.   printf("Usage: %s [OPTIONS] hostname or IP-addressn",my_progname);
  55.   my_print_help(my_long_options);
  56.   my_print_variables(my_long_options);
  57. }
  58. static my_bool
  59. get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
  60.        char *argument __attribute__((unused)))
  61. {
  62.   switch (optid) {
  63.   case 'V': print_version(); exit(0);
  64.   case 'I':
  65.   case '?':
  66.     usage();
  67.     exit(0);
  68.   }
  69.   return 0;
  70. }
  71. /*static my_string load_default_groups[]= { "resolveip","client",0 }; */
  72. static int get_options(int *argc,char ***argv)
  73. {
  74.   int ho_error;
  75.   if ((ho_error=handle_options(argc, argv, my_long_options, get_one_option)))
  76.     exit(ho_error);
  77.   if (*argc == 0)
  78.   {
  79.     usage();
  80.     return 1;
  81.   }
  82.   return 0;
  83. } /* get_options */
  84. int main(int argc, char **argv)
  85. {
  86.   struct hostent *hpaddr;
  87.   in_addr_t taddr;
  88.   char *ip,**q;
  89.   int error=0;
  90.   MY_INIT(argv[0]);
  91.   if (get_options(&argc,&argv))
  92.     exit(1);
  93.   while (argc--)
  94.   {
  95.     ip = *argv++;    
  96.     if (my_isdigit(&my_charset_latin1,ip[0]))
  97.     {
  98.       taddr = inet_addr(ip);
  99.       if (taddr == htonl(INADDR_BROADCAST))
  100.       {
  101. puts("Broadcast");
  102. continue;
  103.       }
  104.       if (taddr == htonl(INADDR_ANY)) 
  105.       {
  106. if (!taddr) 
  107.   puts("Null-IP-Addr");
  108. else
  109.   puts("Old-Bcast");
  110. continue;
  111.       }
  112.       hpaddr = gethostbyaddr((char*) &(taddr), sizeof(struct in_addr),AF_INET);
  113.       if (hpaddr) 
  114.       {
  115. if (silent)
  116.   puts(hpaddr->h_name);
  117. else
  118. {
  119.   printf ("Host name of %s is %s", ip,hpaddr->h_name);
  120. #ifndef __NETWARE__
  121.   /* this information is not available on NetWare */
  122.   for (q = hpaddr->h_aliases; *q != 0; q++)
  123.     (void) printf(", %s", *q);
  124. #endif /* __NETWARE__ */
  125.   puts("");
  126. }
  127.       }
  128.       else
  129.       {
  130. error=2;
  131. fprintf(stderr,"%s: Unable to find hostname for '%s'n",my_progname,
  132. ip);
  133.       }
  134.     }
  135.     else
  136.     {
  137.       hpaddr = gethostbyname(ip);
  138.       if (!hpaddr)
  139.       {
  140. const char *err;
  141. fprintf(stderr,"%s: Unable to find hostid for '%s'",my_progname,ip);
  142. switch (h_errno) {
  143. case HOST_NOT_FOUND: err="host not found"; break;
  144. case TRY_AGAIN: err="try again"; break;
  145. case NO_RECOVERY: err="no recovery"; break;
  146. case NO_DATA: err="no_data"; break;
  147. default: err=0;
  148. }
  149. if (err)
  150.   fprintf(stderr,": %sn",err);
  151. else
  152.   fprintf(stderr,"n");
  153. error=2;
  154.       }
  155.       else if (silent)
  156.       {
  157. struct in_addr in;
  158. memcpy((char*) &in.s_addr, (char*) *hpaddr->h_addr_list,
  159.        sizeof (in.s_addr));
  160. puts(inet_ntoa(in));
  161.       }
  162.       else
  163.       {
  164. char **p;
  165. for (p = hpaddr->h_addr_list; *p != 0; p++)
  166. {
  167.   struct in_addr in;
  168.   memcpy(&in.s_addr, *p, sizeof (in.s_addr));
  169.   printf ("IP address of %s is %sn",ip,inet_ntoa(in));
  170. }
  171.       }
  172.     }
  173.   }
  174.   exit(error);
  175. }