home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / client / mysqladmin.c < prev    next >
C/C++ Source or Header  |  2000-11-21  |  29KB  |  1,113 lines

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This program is free software; you can redistribute it and/or modify
  4.    it under the terms of the GNU General Public License as published by
  5.    the Free Software Foundation; either version 2 of the License, or
  6.    (at your option) any later version.
  7.    
  8.    This program 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
  11.    GNU General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU General Public License
  14.    along with this program; if not, write to the Free Software
  15.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  16.  
  17. /* maintaince of mysql databases */
  18.  
  19.  
  20. #include <global.h>
  21. #include <my_sys.h>
  22. #include <m_string.h>
  23. #include <signal.h>
  24. #include "mysql.h"
  25. #include "errmsg.h"
  26. #include <getopt.h>
  27. #ifdef THREAD
  28. #include <my_pthread.h>                /* because of signal()    */
  29. #endif
  30.  
  31. #define ADMIN_VERSION "8.12"
  32. #define MAX_MYSQL_VAR 64
  33. #define MAX_TIME_TO_WAIT 3600            /* Wait for shutdown */
  34. #define MAX_TRUNC_LENGTH 3
  35.  
  36. char truncated_var_names[MAX_MYSQL_VAR][MAX_TRUNC_LENGTH];
  37. char ex_var_names[MAX_MYSQL_VAR][FN_REFLEN];
  38. ulonglong last_values[MAX_MYSQL_VAR];
  39. static int interval=0;
  40. static my_bool option_force=0,interrupted=0,new_line=0,option_silent=0,
  41.                opt_compress=0, opt_relative=0, opt_verbose=0, opt_vertical=0;
  42. static uint tcp_port = 0, option_wait = 0;
  43. static my_string unix_port=0;
  44.  
  45. /* When using extended-status relatively, ex_val_max_len is the estimated
  46.    maximum length for any relative value printed by extended-status. The
  47.    idea is to try to keep the length of output as short as possible. */
  48. static uint ex_val_max_len[MAX_MYSQL_VAR];
  49. static my_bool ex_status_printed = 0; /* First output is not relative. */
  50. static uint ex_var_count, max_var_length, max_val_length;
  51.  
  52. #include "sslopt-vars.h"
  53.  
  54. static void print_version(void);
  55. static void usage(void);
  56. static my_bool sql_connect(MYSQL *mysql,const char *host, const char *user,
  57.                const char *password,uint wait);
  58. static my_bool execute_commands(MYSQL *mysql,int argc, char **argv);
  59. static int drop_db(MYSQL *mysql,const char *db);
  60. static sig_handler endprog(int signal_number);
  61. static void nice_time(ulong sec,char *buff);
  62. static void print_header(MYSQL_RES *result);
  63. static void print_top(MYSQL_RES *result);
  64. static void print_row(MYSQL_RES *result,MYSQL_ROW cur, uint row);
  65. static void print_relative_row(MYSQL_RES *result, MYSQL_ROW cur, uint row);
  66. static void print_relative_row_vert(MYSQL_RES *result, MYSQL_ROW cur, uint row);
  67. static void print_relative_header();
  68. static void print_relative_line();
  69. static void truncate_names();
  70. static my_bool get_pidfile(MYSQL *mysql, char *pidfile);
  71. static void wait_pidfile(char *pidfile);
  72. static void store_values(MYSQL_RES *result);
  73.  
  74. /*
  75.   The order of commands must be the same as command_names,
  76.   except ADMIN_ERROR
  77. */
  78. enum commands { 
  79.   ADMIN_ERROR, 
  80.   ADMIN_CREATE,           ADMIN_DROP,            ADMIN_SHUTDOWN,
  81.   ADMIN_RELOAD,           ADMIN_REFRESH,         ADMIN_VER, 
  82.   ADMIN_PROCESSLIST,      ADMIN_STATUS,          ADMIN_KILL, 
  83.   ADMIN_DEBUG,            ADMIN_VARIABLES,       ADMIN_FLUSH_LOGS, 
  84.   ADMIN_FLUSH_HOSTS,      ADMIN_FLUSH_TABLES,    ADMIN_PASSWORD, 
  85.   ADMIN_PING,             ADMIN_EXTENDED_STATUS, ADMIN_FLUSH_STATUS, 
  86.   ADMIN_FLUSH_PRIVILEGES, ADMIN_START_SLAVE,     ADMIN_STOP_SLAVE, 
  87.   ADMIN_FLUSH_THREADS
  88. };
  89. static const char *command_names[]= {
  90.   "create",               "drop",                "shutdown",
  91.   "reload",               "refresh",             "version",
  92.   "processlist",          "status",              "kill",
  93.   "debug",                "variables",           "flush-logs",
  94.   "flush-hosts",          "flush-tables",        "password",
  95.   "ping",                 "extended-status",     "flush-status",
  96.   "flush-privileges",     "start-slave",         "stop-slave",  
  97.   "flush-threads", 
  98.   NullS
  99. };
  100.  
  101. static TYPELIB command_typelib=
  102. { array_elements(command_names)-1,"commands", command_names};
  103.  
  104. enum options { OPT_CHARSETS_DIR=256 };
  105.  
  106. static struct option long_options[] = {
  107.   {"compress",           no_argument,       0, 'C'},
  108.   {"character-sets-dir", required_argument, 0, OPT_CHARSETS_DIR},
  109.   {"debug",              optional_argument, 0, '#'},
  110.   {"force",              no_argument,       0, 'f'},
  111.   {"help",               no_argument,       0, '?'},
  112.   {"host",               required_argument, 0, 'h'},
  113.   {"password",           optional_argument, 0, 'p'},
  114. #ifdef __WIN__
  115.   {"pipe",               no_argument,       0, 'W'},
  116. #endif
  117.   {"port",               required_argument, 0, 'P'},
  118.   {"relative",           no_argument,       0, 'r'},
  119.   {"silent",             no_argument,       0, 's'},
  120.   {"socket",             required_argument, 0, 'S'},
  121.   {"sleep",              required_argument, 0, 'i'},
  122. #include "sslopt-longopts.h"
  123.   {"timeout",            required_argument, 0, 't'},
  124. #ifndef DONT_ALLOW_USER_CHANGE
  125.   {"user",               required_argument, 0, 'u'},
  126. #endif
  127.   {"verbose",            no_argument,       0, 'v'},
  128.   {"version",            no_argument,       0, 'V'},
  129.   {"vertical",           no_argument,       0, 'E'},
  130.   {"wait",               optional_argument, 0, 'w'},
  131.   {0, 0, 0, 0}
  132. };
  133.  
  134. static const char *load_default_groups[]= { "mysqladmin","client",0 };
  135.  
  136. int main(int argc,char *argv[])
  137. {
  138.   int    c, error = 0,option_index=0;
  139.   MYSQL mysql;
  140.   char    *host = NULL,*opt_password=0,*user=0,**commands;
  141.   my_bool tty_password=0;
  142.   MY_INIT(argv[0]);
  143.   mysql_init(&mysql);
  144.   load_defaults("my",load_default_groups,&argc,&argv);
  145.  
  146.   while ((c=getopt_long(argc,argv,"h:i:p::u:#::P:sS:Ct:fq?vVw::WrE",
  147.             long_options, &option_index)) != EOF)
  148.   {
  149.     switch(c) {
  150.     case 'C':
  151.       opt_compress=1;
  152.       break;
  153.     case 'h':
  154.       host = optarg;
  155.       break;
  156.     case 'q':                    /* Allow old 'q' option */
  157.     case 'f':
  158.       option_force++;
  159.       break;
  160.     case 'p':
  161.       if (optarg)
  162.       {
  163.     char *start=optarg;
  164.     my_free(opt_password,MYF(MY_ALLOW_ZERO_PTR));
  165.     opt_password=my_strdup(optarg,MYF(MY_FAE));
  166.     while (*optarg) *optarg++= 'x';        /* Destroy argument */
  167.     if (*start)
  168.       start[1]=0;                /* Cut length of argument */
  169.       }
  170.       else
  171.     tty_password=1;
  172.       break;
  173. #ifndef DONT_ALLOW_USER_CHANGE
  174.     case 'u':
  175.       user= my_strdup(optarg,MYF(0));
  176.       break;
  177. #endif
  178.     case 'i':
  179.       interval=atoi(optarg);
  180.       break;
  181.     case 'P':
  182.       tcp_port= (unsigned int) atoi(optarg);
  183.       break;
  184.     case 'r':
  185.       opt_relative = 1;
  186.       break;
  187.     case 'E':
  188.       opt_vertical = 1;
  189.       break;
  190.     case 's':
  191.       option_silent = 1;
  192.       break;
  193.     case 'S':
  194.       unix_port= optarg;
  195.       break;
  196.     case 'W':
  197. #ifdef __WIN__
  198.       unix_port=MYSQL_NAMEDPIPE;
  199. #endif
  200.       break;
  201.     case 't':
  202.       {
  203.     uint tmp=atoi(optarg);
  204.     mysql_options(&mysql,MYSQL_OPT_CONNECT_TIMEOUT, (char*) &tmp);
  205.     break;
  206.       }
  207.     case '#':
  208.       DBUG_PUSH(optarg ? optarg : "d:t:o,/tmp/mysqladmin.trace");
  209.       break;
  210.     case 'V':
  211.       print_version();
  212.       exit(0);
  213.       break;
  214.     case 'v':
  215.       opt_verbose=1;
  216.       break;
  217.     case 'w':
  218.       if (optarg)
  219.       {
  220.     if ((option_wait=atoi(optarg)) <= 0)
  221.       option_wait=1;
  222.       }
  223.       else
  224.     option_wait= ~0;
  225.       break;
  226. #include "sslopt-case.h"
  227.     default:
  228.       fprintf(stderr,"Illegal option character '%c'\n",opterr);
  229.       /* Fall throught */
  230.     case '?':
  231.     case 'I':                    /* Info */
  232.       error++;
  233.       break;
  234.     case OPT_CHARSETS_DIR:
  235. #if MYSQL_VERSION_ID > 32300
  236.       charsets_dir = optarg;
  237. #endif
  238.       break;
  239.     }
  240.   }
  241.   argc -= optind;
  242.   commands = argv + optind;
  243.   if (error || argc == 0)
  244.   {
  245.     usage();
  246.     exit(1);
  247.   }
  248.   if (tty_password)
  249.     opt_password = get_tty_password(NullS);
  250.  
  251.   VOID(signal(SIGINT,endprog));            /* Here if abort */
  252.   VOID(signal(SIGTERM,endprog));        /* Here if abort */
  253.  
  254.   if (opt_compress)
  255.     mysql_options(&mysql,MYSQL_OPT_COMPRESS,NullS);
  256. #ifdef HAVE_OPENSSL
  257.   if (opt_use_ssl)
  258.     mysql_ssl_set(&mysql, opt_ssl_key, opt_ssl_cert, opt_ssl_ca,
  259.           opt_ssl_capath);
  260. #endif /* HAVE_OPENSSL */
  261.   if (sql_connect(&mysql,host,user,opt_password,option_wait))
  262.     error = 1;
  263.   else
  264.   {
  265.     error = 0;
  266.     while (!interrupted)
  267.     {
  268.       new_line = 0;
  269.       if (execute_commands(&mysql,argc,commands) && !option_force)
  270.       {
  271.     if (option_wait && !interrupted)
  272.     {
  273.       mysql_close(&mysql);
  274.       if (!sql_connect(&mysql,host,user,opt_password,option_wait))
  275.         continue;                /* Retry */
  276.     }
  277.     error=1;
  278.     break;
  279.       }
  280.       if (interval)
  281.       {
  282.     sleep(interval);
  283.     if (new_line)
  284.       puts("");
  285.       }
  286.       else
  287.     break;
  288.     }
  289.     mysql_close(&mysql);
  290.   }
  291.   my_free(opt_password,MYF(MY_ALLOW_ZERO_PTR));
  292.   my_free(user,MYF(MY_ALLOW_ZERO_PTR));
  293.   free_defaults(argv);
  294.   my_end(0);
  295.   exit(error);
  296.   return 0;
  297. }
  298.  
  299.  
  300. static sig_handler endprog(int signal_number __attribute__((unused)))
  301. {
  302.   interrupted=1;
  303. }
  304.  
  305.  
  306. static my_bool sql_connect(MYSQL *mysql,const char *host, const char *user,
  307.             const char *password,uint wait)
  308. {
  309.   my_bool info=0;
  310.  
  311.   for (;;)
  312.   {
  313.     if (mysql_real_connect(mysql,host,user,password,NullS,tcp_port,unix_port,
  314.                0))
  315.     {
  316.       if (info)
  317.       {
  318.     fputs("\n",stderr);
  319.     (void) fflush(stderr);
  320.       }
  321.       return 0;
  322.     }
  323.   
  324.     if (!wait)
  325.     {
  326.       if (!option_silent)
  327.       {
  328.     if (!host)
  329.       host=LOCAL_HOST;
  330.     my_printf_error(0,"connect to server at '%s' failed\nerror: '%s'",
  331.             MYF(ME_BELL), host, mysql_error(mysql));
  332.     if (mysql_errno(mysql) == CR_CONNECTION_ERROR)
  333.     {
  334.       fprintf(stderr,
  335.           "Check that mysqld is running and that the socket: '%s' exists!\n",
  336.           unix_port ? unix_port : mysql_unix_port);
  337.     }
  338.     else if (mysql_errno(mysql) == CR_CONN_HOST_ERROR ||
  339.          mysql_errno(mysql) == CR_UNKNOWN_HOST)
  340.     {
  341.       fprintf(stderr,"Check that mysqld is running on %s",host);
  342.       fprintf(stderr," and that the port is %d.\n",
  343.           tcp_port ? tcp_port: mysql_port);
  344.       fprintf(stderr,"You can check this by doing 'telnet %s %d'\n",
  345.           host, tcp_port ? tcp_port: mysql_port);
  346.     }
  347.       }
  348.       return 1;
  349.     }
  350.     if (wait != (uint) ~0)
  351.       wait--;                /* One less retry */
  352.     if ((mysql_errno(mysql) != CR_CONN_HOST_ERROR) &&
  353.     (mysql_errno(mysql) != CR_CONNECTION_ERROR))
  354.     {     
  355.       fprintf(stderr,"Got error: %s\n", mysql_error(mysql));
  356.       if (!option_force)
  357.     return 1;
  358.       sleep(5);
  359.     }
  360.     else if (!info)
  361.     {
  362.       info=1;
  363.       fputs("Waiting for MySQL server to answer",stderr);
  364.       (void) fflush(stderr);
  365.       sleep(5);
  366.     }
  367.     else
  368.     {
  369.       putc('.',stderr); 
  370.       (void) fflush(stderr);
  371.       sleep(5);
  372.     }
  373.   }
  374. }
  375.  
  376.  
  377. static my_bool execute_commands(MYSQL *mysql,int argc, char **argv)
  378. {
  379.   char *status;
  380.  
  381.   for (; argc > 0 ; argv++,argc--)
  382.   {
  383.     switch (find_type(argv[0],&command_typelib,2)) {
  384.     case ADMIN_CREATE:
  385.     {
  386.       char buff[FN_REFLEN+20];
  387.       if (argc < 2)
  388.       {
  389.     my_printf_error(0,"Too few arguments to create",MYF(ME_BELL));
  390.     return 1;
  391.       }
  392.       sprintf(buff,"create database %.*s",FN_REFLEN,argv[1]);
  393.       if (mysql_query(mysql,buff))
  394.     return 1;
  395.       else
  396.       {
  397.     argc--; argv++;
  398.       }
  399.       break;
  400.     }
  401.     case ADMIN_DROP:
  402.     {
  403.       if (argc < 2)
  404.       {
  405.     my_printf_error(0,"Too few arguments to drop",MYF(ME_BELL));
  406.     return 1;
  407.       }
  408.       if (drop_db(mysql,argv[1]))
  409.     return 1;
  410.       else
  411.       {
  412.     argc--; argv++;
  413.       }
  414.       break;
  415.     }
  416.     case ADMIN_SHUTDOWN:
  417.     {
  418.       char pidfile[FN_REFLEN];
  419.       my_bool got_pidfile=0;
  420.       /* Only wait for pidfile on local connections */
  421.       /* If pidfile doesn't exist, continue without pid file checking */
  422.       if (mysql->unix_socket)
  423.     got_pidfile= !get_pidfile(mysql, pidfile);
  424.       if (mysql_shutdown(mysql))
  425.       {
  426.     my_printf_error(0,"shutdown failed; error: '%s'",MYF(ME_BELL),
  427.             mysql_error(mysql));
  428.     return 1;
  429.       }
  430.       mysql_close(mysql);    /* Close connection to avoid error messages */
  431.       if (got_pidfile)
  432.       {
  433.     if (opt_verbose)
  434.       printf("Shutdown signal sent to server;  Waiting for pid file to disappear\n");
  435.     wait_pidfile(pidfile); /* Wait until pid file is gone */
  436.       }
  437.       break;
  438.     }
  439.     case ADMIN_FLUSH_PRIVILEGES:
  440.     case ADMIN_RELOAD:
  441.       if (mysql_refresh(mysql,REFRESH_GRANT) < 0)
  442.       {
  443.     my_printf_error(0,"reload failed; error: '%s'",MYF(ME_BELL),
  444.             mysql_error(mysql));
  445.     return 1;
  446.       }
  447.       break;
  448.     case ADMIN_REFRESH:
  449.       if (mysql_refresh(mysql,
  450.             (uint) ~(REFRESH_GRANT | REFRESH_STATUS |
  451.                  REFRESH_READ_LOCK | REFRESH_SLAVE |
  452.                  REFRESH_MASTER)) < 0)
  453.       {
  454.     my_printf_error(0,"refresh failed; error: '%s'",MYF(ME_BELL),
  455.             mysql_error(mysql));
  456.     return 1;
  457.       }
  458.       break;
  459.     case ADMIN_FLUSH_THREADS:
  460.       if (mysql_refresh(mysql,(uint) REFRESH_THREADS) < 0)
  461.       {
  462.     my_printf_error(0,"refresh failed; error: '%s'",MYF(ME_BELL),
  463.             mysql_error(mysql));
  464.     return 1;
  465.       }
  466.       break;
  467.     case ADMIN_VER:
  468.       new_line=1;
  469.       print_version();
  470.       puts("Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB");
  471.       puts("This software comes with ABSOLUTELY NO WARRANTY. This is free software,\nand you are welcome to modify and redistribute it under the GPL license\n");
  472.       printf("Server version\t\t%s\n", mysql_get_server_info(mysql));
  473.       printf("Protocol version\t%d\n", mysql_get_proto_info(mysql));
  474.       printf("Connection\t\t%s\n",mysql_get_host_info(mysql));
  475.       if (mysql->unix_socket)
  476.     printf("UNIX socket\t\t%s\n", mysql->unix_socket);
  477.       else
  478.     printf("TCP port\t\t%d\n", mysql->port);
  479.       status=mysql_stat(mysql);
  480.       {
  481.     char *pos,buff[40];
  482.     ulong sec;
  483.     pos=strchr(status,' ');
  484.     *pos++=0;
  485.     printf("%s\t\t\t",status);            /* print label */
  486.     if ((status=str2int(pos,10,0,LONG_MAX,(long*) &sec)))
  487.     {
  488.       nice_time(sec,buff);
  489.       puts(buff);                /* print nice time */
  490.       while (*status == ' ') status++;    /* to next info */
  491.     }
  492.       }
  493.       putc('\n',stdout);
  494.       if (status)
  495.     puts(status);
  496.       break;
  497.     case ADMIN_PROCESSLIST:
  498.     {
  499.       MYSQL_RES *result;
  500.       MYSQL_ROW row;
  501.  
  502.       if (mysql_query(mysql, (opt_verbose ? "show full processlist" :
  503.                   "show processlist")) ||
  504.       !(result = mysql_store_result(mysql)))
  505.       {
  506.     my_printf_error(0,"process list failed; error: '%s'",MYF(ME_BELL),
  507.             mysql_error(mysql));
  508.     return 1;
  509.       }
  510.       print_header(result);
  511.       while ((row=mysql_fetch_row(result)))
  512.     print_row(result,row,0);
  513.       print_top(result);
  514.       mysql_free_result(result);
  515.       new_line=1;
  516.       break;
  517.     }
  518.     case ADMIN_STATUS:
  519.       status=mysql_stat(mysql);
  520.       if (status)
  521.     puts(status);
  522.       break;
  523.     case ADMIN_KILL:
  524.       {
  525.     uint error=0;
  526.     char *pos;
  527.     if (argc < 2)
  528.     {
  529.       my_printf_error(0,"Too few arguments to 'kill'",MYF(ME_BELL));
  530.       return 1;
  531.     }
  532.     pos=argv[1];
  533.     for (;;)
  534.     {
  535.       if (mysql_kill(mysql,(ulong) atol(pos)))
  536.       {
  537.         my_printf_error(0,"kill failed on %ld; error: '%s'",MYF(ME_BELL),
  538.                 atol(pos), mysql_error(mysql));
  539.         error=1;
  540.       }
  541.       if (!(pos=strchr(pos,',')))
  542.         break;
  543.       pos++;
  544.     }
  545.     argc--; argv++;
  546.     if (error)
  547.       return error;
  548.     break;
  549.       }
  550.     case ADMIN_DEBUG:
  551.       if (mysql_dump_debug_info(mysql))
  552.       {
  553.     my_printf_error(0,"debug failed; error: '%s'",MYF(ME_BELL),
  554.             mysql_error(mysql));
  555.     return 1;
  556.       }
  557.       break;
  558.     case ADMIN_VARIABLES:
  559.     {
  560.       MYSQL_RES *res;
  561.       MYSQL_ROW row;
  562.  
  563.       new_line=1;
  564.       if (mysql_query(mysql,"show variables") ||
  565.       !(res=mysql_store_result(mysql)))
  566.       {
  567.     my_printf_error(0,"unable to show variables; error: '%s'",MYF(ME_BELL),
  568.             mysql_error(mysql));
  569.     return 1;
  570.       }
  571.       print_header(res);
  572.       while ((row=mysql_fetch_row(res)))
  573.     print_row(res,row,0);
  574.       print_top(res);
  575.       mysql_free_result(res);
  576.       break;
  577.     }
  578.     case ADMIN_EXTENDED_STATUS:
  579.     {
  580.       MYSQL_RES *res;
  581.       MYSQL_ROW row;
  582.       uint rownr = 0;
  583.       void (*func) (MYSQL_RES*, MYSQL_ROW, uint); 
  584.  
  585.       new_line = 1;
  586.       if (mysql_query(mysql, "show status") ||
  587.       !(res = mysql_store_result(mysql)))
  588.       {
  589.     my_printf_error(0, "unable to show status; error: '%s'", MYF(ME_BELL),
  590.             mysql_error(mysql));
  591.     return 1;
  592.       }
  593.       if (!opt_vertical)
  594.     print_header(res);
  595.       else
  596.       {
  597.     if (!ex_status_printed)
  598.     {
  599.       store_values(res);
  600.       truncate_names();   /* Does some printing also */
  601.     }
  602.     else
  603.     {
  604.       print_relative_line();
  605.       print_relative_header();
  606.       print_relative_line();
  607.     }
  608.       }
  609.  
  610.       /*      void (*func) (MYSQL_RES*, MYSQL_ROW, uint); */
  611.       if (opt_relative && !opt_vertical)
  612.     func = print_relative_row;
  613.       else if (opt_vertical)
  614.     func = print_relative_row_vert;
  615.       else
  616.     func = print_row;
  617.  
  618.       while ((row = mysql_fetch_row(res)))
  619.     (*func)(res, row, rownr++);
  620.       if (opt_vertical)
  621.       {
  622.     if (ex_status_printed)
  623.     {
  624.       putchar('\n');
  625.       print_relative_line();
  626.     }
  627.       }
  628.       else
  629.     print_top(res);
  630.     
  631.       ex_status_printed = 1; /* From now on the output will be relative */
  632.       mysql_free_result(res);
  633.       break;
  634.     }
  635.     case ADMIN_FLUSH_LOGS:
  636.     {
  637.       if (mysql_refresh(mysql,REFRESH_LOG))
  638.       {
  639.     my_printf_error(0,"refresh failed; error: '%s'",MYF(ME_BELL),
  640.             mysql_error(mysql));
  641.     return 1;
  642.       }
  643.       break;
  644.     }
  645.     case ADMIN_FLUSH_HOSTS:
  646.     {
  647.       if (mysql_refresh(mysql,REFRESH_HOSTS))
  648.       {
  649.     my_printf_error(0,"refresh failed; error: '%s'",MYF(ME_BELL),
  650.             mysql_error(mysql));
  651.     return 1;
  652.       }
  653.       break;
  654.     }
  655.     case ADMIN_FLUSH_TABLES:
  656.     {
  657.       if (mysql_refresh(mysql,REFRESH_TABLES))
  658.       {
  659.     my_printf_error(0,"refresh failed; error: '%s'",MYF(ME_BELL),
  660.             mysql_error(mysql));
  661.     return 1;
  662.       }
  663.       break;
  664.     }
  665.     case ADMIN_FLUSH_STATUS:
  666.     {
  667.       if (mysql_refresh(mysql,REFRESH_STATUS))
  668.       {
  669.     my_printf_error(0,"refresh failed; error: '%s'",MYF(ME_BELL),
  670.             mysql_error(mysql));
  671.     return 1;
  672.       }
  673.       break;
  674.     }
  675.     case ADMIN_PASSWORD:
  676.     {
  677.       char buff[128],crypted_pw[33];
  678.  
  679.       if(argc < 2)
  680.       {
  681.     my_printf_error(0,"Too few arguments to change password",MYF(ME_BELL));
  682.     return 1;
  683.       }
  684.       if (argv[1][0])
  685.     make_scrambled_password(crypted_pw,argv[1]);
  686.       else
  687.     crypted_pw[0]=0;            /* No password */
  688.       sprintf(buff,"set password='%s',sql_log_off=0",crypted_pw);
  689.  
  690.       if (mysql_query(mysql,"set sql_log_off=1"))
  691.       {
  692.     my_printf_error(0, "Can't turn off logging; error: '%s'",
  693.             MYF(ME_BELL),mysql_error(mysql));
  694.     return 1;
  695.       }
  696.       if (mysql_query(mysql,buff))
  697.       {
  698.     my_printf_error(0,"unable to change password; error: '%s'",
  699.             MYF(ME_BELL),mysql_error(mysql));
  700.     return 1;
  701.       }
  702.       argc--; argv++;
  703.       break;
  704.     }
  705.  
  706.     case ADMIN_START_SLAVE:
  707.       if (mysql_query(mysql, "SLAVE START"))
  708.       {
  709.     my_printf_error(0, "Error starting slave: %s", MYF(ME_BELL),
  710.             mysql_error(mysql));
  711.     return 1;
  712.       }
  713.       else
  714.     puts("Slave started");
  715.       break;
  716.     case ADMIN_STOP_SLAVE:
  717.       if (mysql_query(mysql, "SLAVE STOP"))
  718.       {
  719.       my_printf_error(0, "Error stopping slave: %s", MYF(ME_BELL),
  720.               mysql_error(mysql));
  721.       return 1;
  722.       }
  723.       else
  724.     puts("Slave stopped");
  725.       break;
  726.       
  727.     case ADMIN_PING:
  728.       mysql->reconnect=0;    /* We want to know of reconnects */
  729.       if (!mysql_ping(mysql))
  730.         puts("mysqld is alive");
  731.       else
  732.       {
  733.     if (mysql_errno(mysql) == CR_SERVER_GONE_ERROR)
  734.     {
  735.       mysql->reconnect=1;
  736.       if (!mysql_ping(mysql))
  737.         puts("connection was down, but mysqld is now alive");
  738.     }
  739.     else
  740.     {
  741.       my_printf_error(0,"mysqld doesn't answer to ping, error: '%s'",
  742.               MYF(ME_BELL),mysql_error(mysql));
  743.       return 1;
  744.     }
  745.       }
  746.       mysql->reconnect=1;    /* Automatic reconnect is default */
  747.       break;
  748.     default:
  749.       my_printf_error(0,"Unknown command: '%s'",MYF(ME_BELL),argv[0]);
  750.       return 1;
  751.     }
  752.   }
  753.   return 0;
  754. }
  755.  
  756.  
  757. static void print_version(void)
  758. {
  759.   printf("%s  Ver %s Distrib %s, for %s on %s\n",my_progname,ADMIN_VERSION,
  760.      MYSQL_SERVER_VERSION,SYSTEM_TYPE,MACHINE_TYPE);
  761. }
  762.  
  763.  
  764. static void usage(void)
  765. {
  766.   print_version();
  767.   puts("Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB");
  768.   puts("This software comes with ABSOLUTELY NO WARRANTY. This is free software,\nand you are welcome to modify and redistribute it under the GPL license\n");
  769.   puts("Administration program for the mysqld daemon.");
  770.   printf("Usage: %s [OPTIONS] command command....\n", my_progname);
  771.   printf("\n\
  772.   -#, --debug=...       Output debug log. Often this is 'd:t:o,filename`\n\
  773.   -f, --force        Don't ask for confirmation on drop database; with\n\
  774.             multiple commands, continue even if an error occurs\n\
  775.   -?, --help        Display this help and exit\n\
  776.   --character-sets-dir=...\n\
  777.                         Set the character set directory\n\
  778.   -C, --compress        Use compression in server/client protocol\n\
  779.   -h, --host=#        Connect to host\n\
  780.   -p, --password[=...]    Password to use when connecting to server\n\
  781.             If password is not given it's asked from the tty\n");
  782. #ifdef __WIN__
  783.   puts("-W, --pipe        Use named pipes to connect to server");
  784. #endif
  785.   printf("\
  786.   -P  --port=...    Port number to use for connection\n\
  787.   -i, --sleep=sec    Execute commands again and again with a sleep between\n\
  788.   -r, --relative        Show difference between current and previous values\n\
  789.                         when used with -i. Currently works only with\n\
  790.                         extended-status\n\
  791.   -E, --vertical        Print output vertically. Is similar to --relative,\n\
  792.                         but prints output vertically.\n\
  793.   -s, --silent        Silently exit if one can't connect to server\n\
  794.   -S, --socket=...    Socket file to use for connection\n");
  795. #include "sslopt-usage.h"
  796.   printf("\
  797.   -t, --timeout=...    Timeout for connection to the mysqld server\n");
  798. #ifndef DONT_ALLOW_USER_CHANGE
  799.   printf("\
  800.   -u, --user=#        User for login if not current user\n");
  801. #endif
  802.   printf("\
  803.   -v, --verbose         Write more information\n\
  804.   -V, --version        Output version information and exit\n\
  805.   -w, --wait[=retries]  Wait and retry if connection is down\n");
  806.   print_defaults("my",load_default_groups);
  807.  
  808.   puts("\nWhere command is a one or more of: (Commands may be shortened)\n\
  809.   create databasename    Create a new database\n\
  810.   drop databasename    Delete a database and all its tables\n\
  811.   extended-status       Gives an extended status message from the server\n\
  812.   flush-hosts           Flush all cached hosts\n\
  813.   flush-logs            Flush all logs\n\
  814.   flush-status        Clear status variables\n\
  815.   flush-tables          Flush all tables\n\
  816.   flush-threads         Flush the thread cache\n\
  817.   flush-privileges      Reload grant tables (same as reload)\n\
  818.   kill id,id,...    Kill mysql threads");
  819. #if MYSQL_VERSION_ID >= 32200
  820.   puts("\
  821.   password new-password Change old password to new-password");
  822. #endif
  823.   puts("\
  824.   ping            Check if mysqld is alive\n\
  825.   processlist        Show list of active threads in server\n\
  826.   reload        Reload grant tables\n\
  827.   refresh        Flush all tables and close and open logfiles\n\
  828.   shutdown        Take server down\n\
  829.   status        Gives a short status message from the server\n\
  830.   variables             Prints variables available\n\
  831.   version        Get version info from server");
  832. }
  833.  
  834. static int drop_db(MYSQL *mysql, const char *db)
  835. {
  836.   char name_buff[FN_REFLEN+20], buf[10];
  837.   if (!option_force)
  838.   {
  839.     puts("Dropping the database is potentially a very bad thing to do.");
  840.     puts("Any data stored in the database will be destroyed.\n");
  841.     printf("Do you really want to drop the '%s' database [y/N]\n",db);
  842.     VOID(fgets(buf,sizeof(buf)-1,stdin));
  843.     if ((*buf != 'y') && (*buf != 'Y'))
  844.     {
  845.       puts("\nOK, aborting database drop!");
  846.       return -1;
  847.     }
  848.   }
  849.   sprintf(name_buff,"drop database %.*s",FN_REFLEN,db);
  850.   if (mysql_query(mysql,name_buff))
  851.   {
  852.     my_printf_error(0,"drop of '%s' failed;\nerror: '%s'",MYF(ME_BELL),
  853.             db,mysql_error(mysql));
  854.     return 1;
  855.   }
  856.   printf("Database \"%s\" dropped\n",db);
  857.   return 0;
  858. }
  859.  
  860.  
  861. static void nice_time(ulong sec,char *buff)
  862. {
  863.   ulong tmp;
  864.  
  865.   if (sec >= 3600L*24)
  866.   {
  867.     tmp=sec/(3600L*24);
  868.     sec-=3600L*24*tmp;
  869.     buff=int2str(tmp,buff,10);
  870.     buff=strmov(buff,tmp > 1 ? " days " : " day ");
  871.   }
  872.   if (sec >= 3600L)
  873.   {
  874.     tmp=sec/3600L;
  875.     sec-=3600L*tmp;
  876.     buff=int2str(tmp,buff,10);
  877.     buff=strmov(buff,tmp > 1 ? " hours " : " hour ");
  878.   }
  879.   if (sec >= 60)
  880.   {
  881.     tmp=sec/60;
  882.     sec-=60*tmp;
  883.     buff=int2str(tmp,buff,10);
  884.     buff=strmov(buff," min ");
  885.   }
  886.   strmov(int2str(sec,buff,10)," sec");
  887. }
  888.  
  889.  
  890. static void print_header(MYSQL_RES *result)
  891. {
  892.   MYSQL_FIELD *field;
  893.  
  894.   print_top(result);
  895.   mysql_field_seek(result,0);
  896.   putchar('|');
  897.   while ((field = mysql_fetch_field(result)))
  898.   {
  899.     printf(" %-*s|",field->max_length+1,field->name);
  900.   }
  901.   putchar('\n');
  902.   print_top(result);
  903. }
  904.  
  905.  
  906. static void print_top(MYSQL_RES *result)
  907. {
  908.   uint i,length;
  909.   MYSQL_FIELD *field;
  910.  
  911.   putchar('+');
  912.   mysql_field_seek(result,0);
  913.   while((field = mysql_fetch_field(result)))
  914.   {
  915.     if ((length=(uint) strlen(field->name)) > field->max_length)
  916.       field->max_length=length;
  917.     else
  918.       length=field->max_length;
  919.     for (i=length+2 ; i--> 0 ; )
  920.       putchar('-');
  921.     putchar('+');
  922.   }
  923.   putchar('\n');
  924. }
  925.  
  926.  
  927. /* 3.rd argument, uint row, is not in use. Don't remove! */
  928. static void print_row(MYSQL_RES *result, MYSQL_ROW cur,
  929.               uint row __attribute__((unused)))
  930. {
  931.   uint i,length;
  932.   MYSQL_FIELD *field;
  933.  
  934.   putchar('|');
  935.   mysql_field_seek(result,0);
  936.   for (i=0 ; i < mysql_num_fields(result); i++)
  937.   {
  938.     field = mysql_fetch_field(result);
  939.     length=field->max_length;
  940.     printf(" %-*s|",length+1,cur[i] ? (char*) cur[i] : "");
  941.   }
  942.   putchar('\n');
  943. }
  944.  
  945.  
  946. static void print_relative_row(MYSQL_RES *result, MYSQL_ROW cur, uint row)
  947. {
  948.   ulonglong tmp;
  949.   char buff[22];
  950.   MYSQL_FIELD *field;
  951.  
  952.   mysql_field_seek(result, 0);
  953.   field = mysql_fetch_field(result);
  954.   printf("| %-*s|", field->max_length + 1, cur[0]);
  955.  
  956.   field = mysql_fetch_field(result);
  957.   tmp = cur[1] ? strtoull(cur[1], NULL, 0) : (ulonglong) 0;
  958.   printf(" %-*s|\n", field->max_length + 1,
  959.      llstr((tmp - last_values[row]), buff));
  960.   last_values[row] = tmp;
  961. }
  962.  
  963.  
  964. static void print_relative_row_vert(MYSQL_RES *result __attribute__((unused)),
  965.                     MYSQL_ROW cur,
  966.                     uint row __attribute__((unused)))
  967. {
  968.   uint length;
  969.   ulonglong tmp;
  970.   char buff[22];
  971.   
  972.   if (!row)
  973.     putchar('|');
  974.  
  975.   tmp = cur[1] ? strtoull(cur[1], NULL, 0) : (ulonglong) 0;
  976.   printf(" %-*s|", ex_val_max_len[row] + 1, 
  977.      llstr((tmp - last_values[row]), buff));
  978.  
  979.   /* Find the minimum row length needed to output the relative value */
  980.   if ((length=(uint) strlen(buff) > ex_val_max_len[row]) && ex_status_printed)
  981.     ex_val_max_len[row] = length;
  982.   last_values[row] = tmp;
  983. }
  984.  
  985.  
  986. static void store_values(MYSQL_RES *result)
  987. {
  988.   uint i;
  989.   MYSQL_ROW row;
  990.   MYSQL_FIELD *field;
  991.  
  992.   field = mysql_fetch_field(result);
  993.   max_var_length = field->max_length;
  994.   field = mysql_fetch_field(result);
  995.   max_val_length = field->max_length;
  996.  
  997.   for (i = 0; (row = mysql_fetch_row(result)); i++)
  998.   {
  999.     strmov(ex_var_names[i], row[0]);
  1000.     last_values[i]=strtoull(row[1],NULL,10);
  1001.     ex_val_max_len[i]=2;        /* Default print width for values */
  1002.   }
  1003.   ex_var_count = i;
  1004.   return;
  1005. }
  1006.  
  1007.  
  1008. static void print_relative_header()
  1009. {
  1010.   uint i;
  1011.  
  1012.   putchar('|');
  1013.   for (i = 0; i < ex_var_count; i++)
  1014.     printf(" %-*s|", ex_val_max_len[i] + 1, truncated_var_names[i]);
  1015.   putchar('\n');
  1016. }
  1017.  
  1018.  
  1019. static void print_relative_line()
  1020. {
  1021.   uint i;
  1022.  
  1023.   putchar('+');
  1024.   for (i = 0; i < ex_var_count; i++)
  1025.   {
  1026.     uint j;
  1027.     for (j = 0; j < ex_val_max_len[i] + 2; j++)
  1028.       putchar('-');
  1029.     putchar('+');
  1030.   }
  1031.   putchar('\n');
  1032. }
  1033.  
  1034.  
  1035. static void truncate_names()
  1036. {
  1037.   uint i;
  1038.   char *ptr,top_line[MAX_TRUNC_LENGTH+4+NAME_LEN+22+1],buff[22];
  1039.  
  1040.   ptr=top_line;
  1041.   *ptr++='+';
  1042.   ptr=strfill(ptr,max_var_length+2,'-');
  1043.   *ptr++='+';
  1044.   ptr=strfill(ptr,MAX_TRUNC_LENGTH+2,'-');
  1045.   *ptr++='+';
  1046.   ptr=strfill(ptr,max_val_length+2,'-');
  1047.   *ptr++='+';
  1048.   *ptr=0;
  1049.   puts(top_line);
  1050.   
  1051.   for (i = 0 ; i < ex_var_count; i++)
  1052.   {
  1053.     uint sfx=1,j;
  1054.     printf("| %-*s|", max_var_length + 1, ex_var_names[i]);
  1055.     ptr = ex_var_names[i];
  1056.     /* Make sure no two same truncated names will become */
  1057.     for (j = 0; j < i; j++)
  1058.       if (*truncated_var_names[j] == *ptr)
  1059.     sfx++;
  1060.  
  1061.     truncated_var_names[i][0]= *ptr;        /* Copy first var char */
  1062.     int10_to_str(sfx, truncated_var_names[i]+1,10);
  1063.     printf(" %-*s|", MAX_TRUNC_LENGTH + 1, truncated_var_names[i]);
  1064.     printf(" %-*s|\n", max_val_length + 1, llstr(last_values[i],buff));
  1065.   }
  1066.   puts(top_line);
  1067.   return;
  1068. }
  1069.  
  1070.  
  1071. static my_bool get_pidfile(MYSQL *mysql, char *pidfile)
  1072. {
  1073.   MYSQL_RES* result;
  1074.  
  1075.   if (mysql_query(mysql, "SHOW VARIABLES LIKE 'pid_file'"))
  1076.   {
  1077.     my_printf_error(0,"query failed; error: '%s'",MYF(ME_BELL),
  1078.             mysql_error(mysql));
  1079.   }
  1080.   result = mysql_store_result(mysql);
  1081.   if (result)
  1082.   {
  1083.     MYSQL_ROW row=mysql_fetch_row(result);
  1084.     if (row)
  1085.       strmov(pidfile, row[1]);
  1086.     mysql_free_result(result);
  1087.     return row == 0;                /* Error if row = 0 */
  1088.   }
  1089.   return 1;                    /* Error */
  1090. }
  1091.  
  1092.  
  1093. static void wait_pidfile(char *pidfile)
  1094. {
  1095.   char buff[FN_REFLEN];
  1096.   int fd;
  1097.   uint count=0;
  1098.  
  1099.   system_filename(buff,pidfile);
  1100.   while ((fd = open(buff, O_RDONLY)) >= 0 && count++ < MAX_TIME_TO_WAIT)
  1101.   {
  1102.     close(fd);
  1103.     sleep(1);
  1104.   }
  1105.   if (fd >= 0)
  1106.   {
  1107.     close(fd);
  1108.     fprintf(stderr,
  1109.         "Warning;  Aborted waiting on pid file: '%s' after %d seconds\n",
  1110.         buff, count-1);
  1111.   }
  1112. }
  1113.