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

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. #define MANAGER_PWGEN_VERSION "1.4"
  14. #include <my_global.h>
  15. #include <m_ctype.h>
  16. #include <my_sys.h>
  17. #include <m_string.h>
  18. #include <mysql_version.h>
  19. #include <errno.h>
  20. #include <my_getopt.h>
  21. #include <md5.h>
  22. const char* outfile=0,*user="root";
  23. static struct my_option my_long_options[] =
  24. {
  25.   {"output-file", 'o', "Write the output to the file with the given name.",
  26.    (gptr*) &outfile, (gptr*) &outfile, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0,
  27.    0, 0},
  28.   {"user", 'u', "Put given user in the password file.", (gptr*) &user,
  29.    (gptr*) &user, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  30.   {"help", '?', "Display this message and exit.", 0, 0, 0, GET_NO_ARG, NO_ARG,
  31.    0, 0, 0, 0, 0, 0},
  32.   {"version", 'V', "Display version info.", 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0,
  33.    0, 0, 0, 0},
  34.   {0, 0, 0, 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0}
  35. };
  36. static void die(const char* fmt, ...)
  37. {
  38.   va_list args;
  39.   DBUG_ENTER("die");
  40.   va_start(args, fmt);
  41.   if (fmt)
  42.   {
  43.     fprintf(stderr, "%s: ", my_progname);
  44.     vfprintf(stderr, fmt, args);
  45.     fprintf(stderr, "n");
  46.     fflush(stderr);
  47.   }
  48.   va_end(args);
  49.   exit(1);
  50. }
  51. static void print_version(void)
  52. {
  53.   printf("%s  Ver %s Distrib %s, for %s (%s)n",my_progname,
  54.  MANAGER_PWGEN_VERSION,
  55.  MYSQL_SERVER_VERSION,SYSTEM_TYPE,MACHINE_TYPE);
  56. }
  57. void usage()
  58. {
  59.   print_version();
  60.   printf("MySQL AB, by Sashan");
  61.   printf("This software comes with ABSOLUTELY NO WARRANTYnn");
  62.   printf("Generates a password file to be used by mysqltest.nn");
  63.   printf("Usage: %s [OPTIONS]n", my_progname);
  64.   my_print_help(my_long_options);
  65.   my_print_variables(my_long_options);
  66. }
  67. static my_bool
  68. get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
  69.        char *argument __attribute__((unused)))
  70. {
  71.   switch (optid) {
  72.   case '?':
  73.     usage();
  74.     exit(0);
  75.   case 'V':
  76.     print_version();
  77.     exit(0);
  78.   }
  79.   return 0;
  80. }
  81. int parse_args(int argc, char** argv)
  82. {
  83.   int ho_error;
  84.   if ((ho_error=handle_options(&argc, &argv, my_long_options, get_one_option)))
  85.     exit(ho_error);
  86.   return 0;
  87. }
  88. void get_pass(char* pw, int len)
  89. {
  90.   FILE* fp;
  91.   char* pw_end=pw+len;
  92.   /*
  93.     /dev/random is more secure than  rand() because the seed is easy to
  94.     predict, so we resort to rand() only if /dev/random is not available
  95.   */
  96.   if ((fp=fopen("/dev/random","r")))
  97.   {
  98.     fread(pw,len,1,fp);
  99.     fclose(fp);
  100.     while (pw<pw_end)
  101.     {
  102.       char tmp= 'a'+((uint)*pw % 26);
  103.       *pw++= tmp;
  104.     }
  105.   }
  106.   else
  107.   {
  108.     srand(time(NULL));
  109.     while (pw<pw_end)
  110.     {
  111.       char tmp= 'a'+((uint)*pw % 26);
  112.       *pw++= tmp;
  113.     }
  114.   }
  115.   *pw_end=0;
  116. }
  117. int main(int argc, char** argv)
  118. {
  119.   FILE* fp;
  120.   my_MD5_CTX context;
  121.   uchar digest[16];
  122.   char pw[17];
  123.   uint i;
  124.   MY_INIT(argv[0]);
  125.   parse_args(argc,argv);
  126.   if (!outfile)
  127.     die("Missing --output-file");
  128.   if (!(fp=fopen(outfile,"w")))
  129.     die("Could not open '%s'(errno=%d)",outfile,errno);
  130.   get_pass(pw,sizeof(pw)-1);
  131.   my_MD5Init(&context);
  132.   my_MD5Update(&context,(uchar*) pw,sizeof(pw)-1);
  133.   my_MD5Final(digest,&context);
  134.   fprintf(fp,"%s:",user);
  135.   for (i=0;i<sizeof(digest);i++)
  136.     fprintf(fp,"%02x",digest[i]);
  137.   fprintf(fp,"n");
  138.   fclose(fp);
  139.   printf("%sn",pw);
  140.   return 0;
  141. }