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

MySQL数据库

开发平台:

Visual C++

  1. #!@PERL@
  2. ## Emacs, this is -*- perl -*- mode? :-)
  3. ##
  4. ##        Permission setter for MySQL
  5. ##
  6. ##        mady by Luuk de Boer (luuk@wxs.nl) 1998.
  7. ##        it's made under GPL ...:-))
  8. ##
  9. ##
  10. ############################################################################
  11. ## History
  12. ##
  13. ## 1.0 first start of the program
  14. ## 1.1 some changes from monty and after that
  15. ##     initial release in mysql 3.22.10 (nov 1998)
  16. ## 1.2 begin screen now in a loop + quit is using 0 instead of 9
  17. ##     after ideas of Paul DuBois.
  18. ## 1.2a Add Grant, References, Index and Alter privilege handling (Monty)
  19. ## 1.3 Applied patch provided by Martin Mokrejs <mmokrejs@natur.cuni.cz>
  20. ##     (General code cleanup, use the GRANT statement instead of updating
  21. ##     the privilege tables directly, added option to revoke privileges)
  22. #### TODO
  23. #
  24. # empty ... suggestions ... mail them to me ...
  25. $version="1.3";
  26. use DBI;
  27. use Getopt::Long;
  28. use strict;
  29. use vars qw($dbh $sth $hostname $opt_user $opt_password $opt_help $opt_host
  30.     $opt_socket $opt_port $host $version);
  31. my $sqlhost = "";
  32. my $user = "";
  33. $dbh=$host=$opt_user= $opt_password= $opt_help= $opt_host= $opt_socket= "";
  34. $opt_port=0;
  35. read_my_cnf(); # Read options from ~/.my.cnf
  36. GetOptions("user=s","password=s","help","host=s","socket=s","port=i");
  37. usage() if ($opt_help); # the help function
  38. if ($opt_host eq '')
  39. {
  40.   $sqlhost = "localhost";
  41. }
  42. else
  43. {
  44.   $sqlhost = $opt_host;
  45. }
  46. # ask for a password if no password is set already
  47. if ($opt_password eq '')
  48. {
  49.   system "stty -echo";
  50.   print "Password for user $opt_user to connect to MySQL: ";
  51.   $opt_password = <STDIN>;
  52.   chomp($opt_password);
  53.   system "stty echo";
  54.   print "n";
  55. }
  56. # make the connection to MySQL
  57. $dbh= DBI->connect("DBI:mysql:mysql:host=$sqlhost:port=$opt_port:mysql_socket=$opt_socket",$opt_user,$opt_password, {PrintError => 0}) ||
  58.   die("Can't make a connection to the mysql server.n The error: $DBI::errstr");
  59. # the start of the program
  60. &q1();
  61. exit(0); # the end...
  62. #####
  63. # below all subroutines of the program
  64. #####
  65. ###
  66. # the beginning of the program
  67. ###
  68. sub q1 { # first question ...
  69.   my ($answer,$end);
  70.   while (! $end) {
  71.     print "#"x70;
  72.     print "n";
  73.     print "## Welcome to the permission setter $version for MySQL.n";
  74.     print "## made by Luuk de Boern";
  75.     print "#"x70;
  76.     print "n";
  77.     print "What would you like to do:n";
  78.     print "  1. Set password for an existing user.n";
  79.     print "  2. Create a database + user privilege for that databasen";
  80. print "     and host combination (user can only do SELECT)n";
  81.     print "  3. Create/append user privilege for an existing databasen";
  82. print "     and host combination (user can only do SELECT)n";
  83.     print "  4. Create/append broader user privileges for an existingn";
  84. print "     database and host combinationn";
  85. print "     (user can do SELECT,INSERT,UPDATE,DELETE)n";
  86.     print "  5. Create/append quite extended user privileges for ann";
  87. print "     existing database and host combination (user can don";
  88. print "     SELECT,INSERT,UPDATE,DELETE,CREATE,DROP,INDEX,n";
  89. print "     LOCK TABLES,CREATE TEMPORARY TABLES)n";
  90.     print "  6. Create/append database administrative privileges for ann";
  91. print "     existing database and host combination (user can don";
  92. print "     SELECT,INSERT,UPDATE,DELETE,CREATE,DROP,INDEX,LOCK TABLES,n";
  93. print "     CREATE TEMPORARY TABLES,SHOW DATABASES,PROCESS)n";
  94.     print "  7. Create/append full privileges for an existing databasen";
  95. print "     and host combination (user has FULL privilege)n";
  96.     print "  8. Remove all privileges for for an existing database andn";
  97. print "     host combination.n";
  98.     print "     (user will have all permission fields set to N)n";
  99.     print "  0. exit this programn";
  100.     print "nMake your choice [1,2,3,4,5,6,7,0]: ";
  101.     while (<STDIN>) {
  102.       $answer = $_;
  103.       chomp($answer);
  104.       if ($answer =~ /^[12345678]$/) {
  105.         if ($answer == 1) {
  106.    setpwd();
  107.         } elsif ($answer =~ /^[2345678]$/) {
  108.    addall($answer);
  109. } else {
  110.           print "Sorry, something went wrong. With such option number you should not get here.nn";
  111.           $end = 1;
  112.         }
  113.       } elsif ($answer == 0) {
  114.         print "We hope we can help you next time nn";
  115. $end = 1;
  116.       } else {
  117.         print "Your answer was $answern";
  118.         print "and that's wrong .... Try againn";
  119.       }
  120.       last;
  121.     }
  122.   }
  123. }
  124. ###
  125. # set a password for a user
  126. ###
  127. sub setpwd
  128. {
  129.   my ($user,$pass,$host) = "";
  130.   print "nnSetting a (new) password for a user.n";
  131.   $user = user();
  132.   $pass = newpass($user);
  133.   $host = hosts($user);
  134.   print "#"x70;
  135.   print "nn";
  136.   print "That was it ... here is an overview of what you gave to me:n";
  137.   print "The username  : $usern";
  138. #  print "The password : $passn";
  139.   print "The host : $hostn";
  140.   print "#"x70;
  141.   print "nn";
  142.   print "Are you pretty sure you would like to implement this [yes/no]: ";
  143.   my $no = <STDIN>;
  144.   chomp($no);
  145.   if ($no =~ /n/i)
  146.   {
  147.     print "Okay .. that was it then ... See yann";
  148.     return(0);
  149.   }
  150.   else
  151.   {
  152.     print "Okay ... let's go then ...nn";
  153.   }
  154.   $user = $dbh->quote($user);
  155.   $host = $dbh->quote($host);
  156.   if ($pass eq '')
  157.   {
  158.     $pass = "''";
  159.   }
  160.   else
  161.   {
  162.     $pass = "PASSWORD(". $dbh->quote($pass) . ")";
  163.   }
  164.   my $sth = $dbh->prepare("update user set Password=$pass where User = $user and Host = $host") || die $dbh->errstr;
  165.   $sth->execute || die $dbh->errstr;
  166.   $sth->finish;
  167.   print "The password is set for user $user.nn";
  168. }
  169. ###
  170. # all things which will be added are done here
  171. ###
  172. sub addall {
  173.   my ($todo) = @_;
  174.   my ($answer,$good,$db,$user,$pass,$host,$priv);
  175.   if ($todo == 2) {
  176.     $db = newdatabase();
  177.   } else {
  178.     $db = database();
  179.   }
  180.   $user = newuser();
  181.   $pass = newpass("$user");
  182.   $host = newhosts();
  183.   print "#"x70;
  184.   print "nn";
  185.   print "That was it ... here is an overview of what you gave to me:n";
  186.   print "The database name : $dbn";
  187.   print "The username  : $usern";
  188. #  print "The password : $passn";
  189.   print "The host(s) : $hostn";
  190.   print "#"x70;
  191.   print "nn";
  192.   print "Are you pretty sure you would like to implement this [yes/no]: ";
  193.   my $no = <STDIN>;
  194.   chomp($no);
  195.   if ($no =~ /n/i) {
  196.     print "Okay .. that was it then ... See yann";
  197.     return(0);
  198.   } else {
  199.     print "Okay ... let's go then ...nn";
  200.   }
  201.   if ($todo == 2) {
  202.     # create the database
  203.     if ($db) {
  204.     my $sth = $dbh->do("CREATE DATABASE $db") || $dbh->errstr;
  205.     } else {
  206.       print STDERR "What do you want? You wanted to create new database and add new user, right?n";
  207.       die "But then specify databasename, pleasen";
  208.   }
  209.   }
  210.   if ( ( !$todo ) or not ( $todo =~ m/^[2-8]$/ ) ) {
  211.     print STDERR "Sorry, select option $todo isn't known inside the program .. See yan";
  212.     quit();
  213.   }
  214.   my @hosts = split(/,/,$host);
  215.   if (!$user) {
  216.      die "username not specified: $usern";
  217.   }
  218.   if (!$db) {
  219.      die "databasename is not specified nor *n";
  220.   }
  221.   foreach $host (@hosts) {
  222.     # user privileges: SELECT
  223.     if (($todo == 2) || ($todo == 3)) {
  224.       $sth = $dbh->do("GRANT SELECT ON $db.* TO $user@"$host" IDENTIFIED BY '$pass'") || die $dbh->errstr;
  225.     } elsif ($todo == 4) {
  226.       # user privileges: SELECT,INSERT,UPDATE,DELETE
  227.       $sth = $dbh->do("GRANT SELECT,INSERT,UPDATE,DELETE ON $db.* TO $user@"$host" IDENTIFIED BY '$pass'") || die $dbh->errstr;
  228.     } elsif ($todo == 5) {
  229.       # user privileges: SELECT,INSERT,UPDATE,DELETE,CREATE,DROP,INDEX,LOCK TABLES,CREATE TEMPORARY TABLES
  230.       $sth = $dbh->do("GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP,INDEX,LOCK TABLES,CREATE TEMPORARY TABLES ON $db.* TO $user@"$host" IDENTIFIED BY '$pass'") || die $dbh->errstr;
  231.     } elsif ($todo == 6) {
  232.        # admin privileges: GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP,INDEX,LOCK TABLES,CREATE TEMPORARY TABLES,SHOW DATABASES,PROCESS
  233.        $sth = $dbh->do("GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP,INDEX,LOCK TABLES,CREATE TEMPORARY TABLES,SHOW DATABASES,PROCESS ON $db.* TO $user@"$host" IDENTIFIED BY '$pass'") || die $dbh->errstr;
  234.     } elsif ($todo == 7) {
  235.        # all privileges
  236.        $sth = $dbh->do("GRANT ALL ON $db.* TO '$user'@'$host' IDENTIFIED BY '$pass'") || die $dbh->errstr;
  237.     } elsif ($todo == 8) {
  238.        # all privileges set to N
  239.        $sth = $dbh->do("REVOKE ALL ON *.* FROM '$user'@'$host'") || die $dbh->errstr;
  240.     }
  241.     }
  242.   $dbh->do("FLUSH PRIVILEGES") || print STDERR "Can't flush privilegesn";
  243.   print "Everything is inserted and mysql privileges have been reloaded.nn";
  244. }
  245. ###
  246. # ask for a new database name
  247. ###
  248. sub newdatabase {
  249.   my ($answer,$good,$db);
  250.   print "nnWhich database would you like to add: ";
  251.   while (<STDIN>) {
  252.     $answer = $_;
  253.     $good = 0;
  254.     chomp($answer);
  255.     if ($answer) {
  256.       my $sth = $dbh->prepare("SHOW DATABASES") || die $dbh->errstr;
  257.       $sth->execute || die $dbh->errstr;
  258.       while (my @r = $sth->fetchrow_array) {
  259.         if ($r[0] eq $answer) {
  260.           print "nnSorry, this database name is already in use; try something else: ";
  261.           $good = 1;
  262.         }
  263.       }
  264.     } else {
  265.       print "You must type something ...nTry again: ";
  266.       next;
  267.     }
  268.     last if ($good == 0);
  269.   }
  270.   $db = $answer;
  271.   print "The new database $db will be createdn";
  272.   return($db);
  273. }
  274. ###
  275. # select a database
  276. ###
  277. sub database {
  278.   my ($answer,$good,$db);
  279.   print "nnWhich database from existing databases would you like to select: n";
  280.   print "You can choose from: n";
  281.   my $sth = $dbh->prepare("show databases") || die $dbh->errstr;
  282.   $sth->execute || die $dbh->errstr;
  283.   while (my @r = $sth->fetchrow_array) {
  284.     print "  - $r[0] n";
  285.   }
  286.   print "Which database will it be (case sensitive). Type * for any: n";
  287.   while (<STDIN>) {
  288.     $answer = $_;
  289.     $good = 0;
  290.     chomp($answer);
  291.     if ($answer) {
  292.       if ($answer eq "*") {
  293.         print "OK, the user entry will NOT be limited to any database";
  294.         return("*");
  295.       }
  296.       my $sth = $dbh->prepare("show databases") || die $dbh->errstr;
  297.       $sth->execute || die $dbh->errstr;
  298.       while (my @r = $sth->fetchrow_array) {
  299.         if ($r[0] eq $answer) {
  300.           $good = 1;
  301.           $db = $r[0];
  302.           last;
  303.         }
  304.       }
  305.     } else {
  306.         print "Type either database name or * meaning any databasename. That means";
  307.         print " any of those above but also any which will be created in future!";
  308.         print " This option gives a user chance to operate on databse mysql, which";
  309.         print " contains privilege settings. That is really risky!n";
  310.       next;
  311.     }
  312.     if ($good == 1) {
  313.       last;
  314.     } else {
  315.       print "You must select one from the list.nTry again: ";
  316.       next;
  317.     }
  318.   }
  319.   print "The database $db will be used.n";
  320.   return($db);
  321. }
  322. ###
  323. # ask for a new username
  324. ###
  325. sub newuser
  326. {
  327.   my $user = "";
  328.   my $answer = "";
  329.   print "nWhat username is to be created: ";
  330.   while(<STDIN>)
  331.   {
  332.     $answer = $_;
  333.     chomp($answer);
  334.     if ($answer)
  335.     {
  336.       $user = $answer;
  337.     }
  338.     else
  339.     {
  340.       print "You must type something ...nTry again: ";
  341.       next;
  342.     }
  343.     last;
  344.   }
  345.   print "Username = $usern";
  346.   return($user);
  347. }
  348. ###
  349. # ask for a user which is already in the user table
  350. ###
  351. sub user
  352. {
  353.   my ($answer,$user);
  354.   print "nFor which user do you want to specify a password: ";
  355.   while(<STDIN>)
  356.   {
  357.     $answer = $_;
  358.     chomp($answer);
  359.     if ($answer)
  360.     {
  361.       my $sth = $dbh->prepare("select User from user where User = '$answer'") || die $dbh->errstr;
  362.       $sth->execute || die $dbh->errstr;
  363.       my @r = $sth->fetchrow_array;
  364.       if ($r[0])
  365.       {
  366.         $user = $r[0];
  367.       }
  368.       else
  369.       {
  370.        print "Sorry, user $answer isn't known in the user table.nTry again: ";
  371.        next;
  372.      }
  373.     }
  374.     else
  375.     {
  376.       print "You must type something ...nTry again: ";
  377.       next;
  378.     }
  379.     last;
  380.   }
  381.   print "Username = $usern";
  382.   return($user);
  383. }
  384. ###
  385. # ask for a new password
  386. ###
  387. sub newpass
  388. {
  389.   my ($user) = @_;
  390.   my ($pass,$answer,$good,$yes);
  391.   print "Would you like to set a password for $user [y/n]: ";
  392.   $yes = <STDIN>;
  393.   chomp($yes);
  394.   if ($yes =~ /y/)
  395.   {
  396.     system "stty -echo";
  397.     print "What password do you want to specify for $user: ";
  398.     while(<STDIN>)
  399.     {
  400.       $answer = $_;
  401.       chomp($answer);
  402.       system "stty echo";
  403.       print "n";
  404.       if ($answer)
  405.       {
  406.         system "stty -echo";
  407.         print "Type the password again: ";
  408.         my $second = <STDIN>;
  409.         chomp($second);
  410.         system "stty echo";
  411.         print "n";
  412.         if ($answer ne $second)
  413.         {
  414.           print "Passwords aren't the same; we begin from scratch again.n";
  415.           system "stty -echo";
  416.           print "Password please: ";
  417.           next;
  418.         }
  419.         else
  420.         {
  421.           $pass = $answer;
  422.         }
  423.       }
  424.       else
  425.       {
  426.         print "You must type something ...nTry again: ";
  427.         next;
  428.       }
  429.       last;
  430.     }
  431. #    print "The password for $user is $pass.n";
  432.   }
  433.   else
  434.   {
  435.     print "We won't set a password so the user doesn't have to use itn";
  436.     $pass = "";
  437.   }
  438.   return($pass);
  439. }
  440. ###
  441. # ask for new hosts
  442. ###
  443. sub newhosts
  444. {
  445.   my ($host,$answer,$good);
  446.   print "We now need to know from what host(s) the user will connect.n";
  447.   print "Keep in mind that % means 'from any host' ...n";
  448.   print "The host please: ";
  449.   while(<STDIN>)
  450.   {
  451.     $answer = $_;
  452.     chomp($answer);
  453.     if ($answer)
  454.     {
  455.       $host .= ",$answer";
  456.       print "Would you like to add another host [yes/no]: ";
  457.       my $yes = <STDIN>;
  458.       chomp($yes);
  459.       if ($yes =~ /y/i)
  460.       {
  461.         print "Okay, give us the host please: ";
  462.         next;
  463.       }
  464.       else
  465.       {
  466.         print "Okay we keep it with this ...n";
  467.       }
  468.     }
  469.     else
  470.     {
  471.       print "You must type something ...nTry again: ";
  472.       next;
  473.     }
  474.     last;
  475.   }
  476.   $host =~ s/^,//;
  477.   print "The following host(s) will be used: $host.n";
  478.   return($host);
  479. }
  480. ###
  481. # ask for a host which is already in the user table
  482. ###
  483. sub hosts
  484. {
  485.   my ($user) = @_;
  486.   my ($answer,$good,$host);
  487.   print "We now need to know which host for $user we have to change.n";
  488.   print "Choose from the following hosts: n";
  489.   $user = $dbh->quote($user);
  490.   my $sth = $dbh->prepare("select Host,User from user where User = $user") || die $dbh->errstr;
  491.   $sth->execute || die $dbh->errstr;
  492.   while (my @r = $sth->fetchrow_array)
  493.   {
  494.     print "  - $r[0] n";
  495.   }
  496.   print "The host please (case sensitive): ";
  497.   while(<STDIN>)
  498.   {
  499.     $answer = $_;
  500.     chomp($answer);
  501.     if ($answer)
  502.     {
  503.       $sth = $dbh->prepare("select Host,User from user where Host = '$answer' and User = $user") || die $dbh->errstr;
  504.       $sth->execute || die $dbh->errstr;
  505.       my @r = $sth->fetchrow_array;
  506.       if ($r[0])
  507.       {
  508.         $host = $answer;
  509.         last;
  510.       }
  511.       else
  512.       {
  513.         print "You have to select a host from the list ...nTry again: ";
  514.         next;
  515.       }
  516.     }
  517.     else
  518.     {
  519.       print "You have to type something ...nTry again: ";
  520.       next;
  521.     }
  522.     last;
  523.   }
  524.   print "The following host will be used: $host.n";
  525.   return($host);
  526. }
  527. ###
  528. # a nice quit (first disconnect and then exit
  529. ###
  530. sub quit
  531. {
  532.   $dbh->disconnect;
  533.   exit(0);
  534. }
  535. ###
  536. # Read variables password, port and socket from .my.cnf under the client
  537. # or perl groups
  538. ###
  539. sub read_my_cnf
  540. {
  541.   open(TMP,$ENV{'HOME'} . "/.my.cnf") || return 1;
  542.   while (<TMP>)
  543.   {
  544.     if (/^[(client|perl)]/i)
  545.     {
  546.       while ((defined($_=<TMP>)) && !/^[w+]/)
  547.       {
  548. print $_;
  549. if (/^hosts*=s*(S+)/i)
  550. {
  551.   $opt_host = $1;
  552. }
  553. elsif (/^users*=s*(S+)/i)
  554. {
  555.   $opt_user = $1;
  556. }
  557. elsif (/^passwords*=s*(S+)/i)
  558. {
  559.   $opt_password = $1;
  560. }
  561. elsif (/^ports*=s*(S+)/i)
  562. {
  563.   $opt_port = $1;
  564. }
  565. elsif (/^sockets*=s*(S+)/i)
  566. {
  567.   $opt_socket = $1;
  568. }
  569.       }
  570.     }
  571.   }
  572.   close(TMP);
  573. }
  574. ###
  575. # the help text
  576. ###
  577. sub usage
  578. {
  579.   print <<EOL;
  580. ----------------------------------------------------------------------
  581.                  The permission setter for MySQL.
  582.                       version: $version
  583.                  made by: Luuk de Boer <luuk@wxs.nl>
  584. ----------------------------------------------------------------------
  585. The permission setter is a little program which can help you add users
  586. or databases or change passwords in MySQL. Keep in mind that we don't
  587. check permissions which already been set in MySQL. So if you can't
  588. connect to MySQL using the permission you just added, take a look at
  589. the permissions which have already been set in MySQL.
  590. The permission setter first reads your .my.cnf file in your Home
  591. directory if it exists.
  592. Options for the permission setter:
  593. --help : print this help message and exit.
  594. The options shown below are used for making the connection to the MySQL
  595. server. Keep in mind that the permissions for the user specified via
  596. these options must be sufficient to add users / create databases / set
  597. passwords.
  598. --user : is the username to connect with.
  599. --password : the password of the username.
  600. --host : the host to connect to.
  601. --socket : the socket to connect to.
  602. --port : the port number of the host to connect to.
  603. If you don't give a password and no password is set in your .my.cnf
  604. file, then the permission setter will ask for a password.
  605. EOL
  606. exit(0);
  607. }