resolveip.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:5k
源码类别:

MySQL数据库

开发平台:

Visual C++

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