mysqlaccess
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:108k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #!/usr/bin/perl
  2. # ****************************
  3. package MySQLaccess;
  4. #use strict;
  5. use File::Temp qw(tempfile tmpnam);
  6. use Fcntl;
  7. BEGIN {
  8. # ****************************
  9. # static information...
  10. $VERSION     = "2.06, 20 Dec 2000";
  11. $0           =~ m%/([^/]+)$%o;
  12. $script      = $1;
  13.         $script      = 'MySQLAccess' unless $script;
  14. $script_conf = "$script.conf";
  15. $script_log  = $ENV{'HOME'}."/$script.log";
  16. # ****************************
  17. # information on MySQL
  18. $MYSQL     = '/usr/local/bin/mysql';    # path to mysql executable
  19. $SERVER    = '3.21';
  20. $MYSQL_OPT = ' --batch --unbuffered';
  21. $ACCESS_DB = 'mysql';  # name of DB with grant-tables
  22. $ACCESS_H  = 'host';  # 
  23. $ACCESS_U  = 'user';          # 
  24. $ACCESS_D  = 'db';               #
  25. # Add/Edit privileges
  26. $ACCESS_H_TMP = 'host_tmp';      
  27. $ACCESS_U_TMP = 'user_tmp';      
  28. $ACCESS_D_TMP = 'db_tmp';        
  29. $ACCESS_H_BCK = 'host_backup';   
  30. $ACCESS_U_BCK = 'user_backup';   
  31. $ACCESS_D_BCK = 'db_backup';     
  32.         $DIFF      = '/usr/bin/diff'; 
  33.         $MYSQLDUMP = '/usr/local/bin/mysqldump';
  34.                                          #path to mysqldump executable
  35.         $MYSQLADMIN= 'http://foobar.com/MySQLadmin';
  36.                                          #URL of CGI for manipulating
  37.                                          #the temporary grant-tables
  38. }
  39. END {
  40. unlink $MYSQL_CNF if defined $MYSQL_CNF and not $DEBUG;
  41. }
  42. $INFO = <<"_INFO";
  43. --------------------------------------------------------------------------
  44.    mysqlaccess (Version $VERSION)
  45.    ~~~~~~~~~~~
  46.    Copyright (C) 1997,1998 Yves.Carlier@rug.ac.be
  47.                            University of Ghent (RUG), Belgium
  48.                            Administratieve Informatieverwerking (AIV)
  49.    report the access-privileges for a USER from a HOST to a DB
  50.    Many thanks go to <monty@mysql.com> and <psmith@BayNetworks.COM>
  51.    for their suggestions, debugging and patches. 
  52.    use `$script -?' to get more information on available options.
  53.    From version 2.0x, $script can also be used through a WEB-browser
  54.    if it is ran as a CGI-script.  (See the release-notes)
  55. --------------------------------------------------------------------------
  56. _INFO
  57. $OPTIONS = <<_OPTIONS;
  58. Usage: $script [host [user [db]]] OPTIONS
  59.   -?, --help           display this helpscreen and exit
  60.   -v, --version        print information on the program `$script'
  61.   -u, --user=#         username for logging in to the db
  62.   -p, --password=#     validate password for user
  63.   -h, --host=#         name or IP-number of the host
  64.   -d, --db=#           name of the database
  65.   -U, --superuser=#    connect as superuser
  66.   -P, --spassword=#    password for superuser
  67.   -H, --rhost=#        remote MySQL-server to connect to
  68.       --old_server     connect to old MySQL-server (before v3.21) which 
  69.                        does not yet know how to handle full where clauses.
  70.   -b, --brief          single-line tabular report
  71.   -t, --table          report in table-format
  72.   --relnotes           print release-notes
  73.   --plan               print suggestions/ideas for future releases
  74.   --howto              some examples of how to run `$script'
  75.   --debug=N            enter debuglevel N (0..3)
  76.   --copy               reload temporary grant-tables from original ones
  77.   --preview            show differences in privileges after making
  78.                        changes in (temporary) grant-tables
  79.   --commit             copy grant-rules from temporary tables to grant-tables
  80.                        (!don't forget to do an mysqladmin reload)
  81.   --rollback           undo the last changes to the grant-tables.
  82.   Note:
  83.     + At least the user and the db must be given (even with wildcards)
  84.     + If no host is given, `localhost' is assumed
  85.     + Wilcards (*,?,%,_) are allowed for host, user and db, but be sure 
  86.       to escape them from your shell!! (ie type \* or '*')
  87. _OPTIONS
  88. $RELEASE = <<'_RELEASE';
  89.  
  90. Release Notes:
  91. -------------
  92.   0.1-beta1: internal
  93.   - first trial.
  94.  
  95.   0.1-beta2: (1997-02-27)
  96.   - complete rewrite of the granting-rules, based on the documentation
  97.     found in de FAQ.
  98.   - IP-number and name for a host are equiv.
  99.  
  100.   0.1-beta3: (1997-03-10)
  101.   - more information
  102.   - 'localhost' and the name/ip of the local machine are now equiv.
  103.   0.1-beta4: (1997-03-11)
  104.   - inform the user if he has not enough priv. to read the mysql db
  105.   1.0-beta1: (1997-03-12)
  106.   suggestions by Monty:
  107.   - connect as superuser with superpassword.
  108.   - mysqlaccess could also notice if all tables are empty. This means
  109.     that all user have full access!
  110.   - It would be nice if one could optionally start mysqlaccess without
  111.     any options just the arguments 'user db' or 'host user db', where
  112.     host is 'localhost' if one uses only two arguments.
  113.   1.0-beta2: (1997-03-14)
  114.   - bugfix: translation to reg.expr of _ and %.
  115.   - bugfix: error in matching regular expression and string given
  116.             by user which resulted in
  117.             'test_123' being matched with 'test'
  118.   1.0-beta3: (1997-03-14)
  119.   - bugfix: the user-field should not be treated as a sql-regexpr,
  120.             but as a plain string.
  121.   - bugfix: the host-table should not be used if the host isn't empty in db
  122.                                           or  if the host isn't emty in user
  123.             (Monty)
  124.  
  125.   1.0-beta4: (1997-03-14)
  126.   - bugfix: in an expression "$i = $j or $k", the '=' binds tighter than the or
  127.             which results in problems...
  128.             (by Monty)
  129.   - running mysqlaccess with "perl -w" gives less warnings...   ;-)
  130.   1.0-beta5: (1997-04-04)
  131.   - bugfix: The table sorting was only being applied to the "user" table; all
  132.             the tables need to be sorted.  Rewrote the sort algorithm, and
  133.             the table walk algorithm (no temp file anymore), and various
  134.             other cleanups.  I believe the access calculation is 100% correct.
  135.             (by Paul D. Smith <psmith@baynetworks.com>)
  136.   - Allow the debug level to be set on the cmd line with --debug=N.
  137.             (by Paul D. Smith <psmith@baynetworks.com>)
  138.   - More -w cleanups; should be totally -w-clean.
  139.             (by Paul D. Smith <psmith@baynetworks.com>)
  140.  
  141.   1.1-beta1: (1997-04-xx) 
  142.   1.1-beta2: (1997-04-11)
  143.   - new options:
  144.              --all_users : report access-rights for all possible users
  145.              --all_dbs   : report access-rights for all possible dbs
  146.              --all_hosts : report access-rights for all possible hosts
  147.              --brief     : as brief as possible, don't mention notes,warnings and rules
  148.              --password  : validate password for user 
  149.   - layout: long messages are wrapped on the report.
  150.   - functionality:
  151.             more descriptive notes and warnings
  152.             wildcards (*,?) are allowed in the user,host and db options
  153.             setting xxxx=* is equiv to using option --all_xxxx
  154.             note: make sure you escape your wildcards, so they don't get
  155.                   interpreted by the shell.  use * or '*'
  156.   - bugfix: Fieldnames which should be skipped on the output can now have
  157.             a first capital letter.
  158.   - bugfix: any option with a '.' (eg ip-number) was interpreted as
  159.             a wildcard-expression.
  160.   - bugfix: When no entry was found in the db-table, the default accessrights are
  161.             N, instead of the faulty Y in a previous version.
  162.  
  163.   1.1-beta-3  : (1997-04-xx)
  164.   1.1-beta-4  : (1997-04-xx)
  165.   1.1-beta-5  : (1997-04-xx)
  166.   1.1         : (1997-04-28)
  167.   - new options:
  168.             --rhost     : name of mysql-server to connect to
  169.             --plan      : print suggestions/ideas for future releases
  170.             --relnotes  : display release-notes
  171.             --howto     : display examples on how to use mysqlaccess
  172.             --brief     : single-line tabular output
  173.   - functionality/bugfix:
  174.     *      removed options --all_users,--all_dbs,--all_hosts, which 
  175.            were redundant with the wildcard-expressions for the corresponding
  176.            options. They made the processing of the commandline too painful 
  177.            and confusing ;-)
  178.            (suggested by psmith)
  179.     *      redefined the option --brief, which now gives a single-line 
  180.            tabular output
  181.     *      Now we check if the right version of the mysql-client is used,
  182.            since we might use an option not yet implemented in an
  183.            older version (--unbuffered, since 3.0.18)
  184.            Also the error-messages the mysql-client reports are 
  185.            better interpreted ;-)  
  186.     *      Wildcards can now be given following the SQL-expression 
  187.            (%,_) and the Regular-expression (*,?) syntax.
  188.   - speed: we now open a bidirectional pipe to the mysql-client, and keep 
  189.            it open throughout the whole run. Queries are written to,
  190.            and the answers read from the pipe.
  191.            (suggested by monty)
  192.   - bugfixes:
  193.     *      the Rules were not properly reset over iterations 
  194.     *      when in different tables the field-names were not identical, 
  195.            eg. Select_priv and select_priv, they were considered as 
  196.            definitions of 2 different access-rights.
  197.     *      the IP-number of a host with a name containing wildcards should
  198.            not be searched for in Name2IP and IP2Name.
  199.     *      various other small things, pointed out by <monty> and <psmith>
  200.   1.2         : (1997-05-13)
  201.   - bugfix:
  202.     * Fixed bug in acl with anonymous user:  Now if one gets accepted by the
  203.       user table as a empty user name, the user name is set to '' when 
  204.       checking against the 'db' and 'host' tables. (Bug fixed in MySQL3.20.19)
  205.   1.2-1       : (1997-xx-xx)
  206.   - bugfix:
  207.     * hashes should  be initialized with () instead of {} <psmith>
  208.     * "my" variable $name masks earlier declaration in same scope,
  209.       using perl 5.004 <????>
  210.   1.2-2       : (1997-06-10)
  211.     
  212.   2.0p1-3     : (1997-10-xx)
  213.   - new
  214.     * packages
  215.     * log-file for debug-output : /tmp/mysqlaccess.log
  216.     * default values are read from a configuration file $script.conf
  217.       first this file is looked for in the current directory; if not
  218.       found it is looked for in /etc/
  219.       Note that when default-values are given, these can't get overriden
  220.       by empty (blanc) values!
  221.     * CGI-BIN version with HTML and forms interface.  Simply place the
  222.       script in an ScriptAliased directory, make the configuration file
  223.       available in the that directory or in /etc, and point your browser
  224.       to the right URL. 
  225.     * copy the grant-rules to temporary tables, where you are safe to
  226.       play with them.
  227.     * preview changes in privileges after changing grant-rules,
  228.       before taking them into production
  229.     * copy the new grant-rules from the temporary tables back to the
  230.       grant-tables.
  231.     * Undo all changes made in the grant-tables (1-level undo).
  232.   -new options:
  233.     * --table   : as opposite of the --brief option.
  234.     * --copy    : (re)load temporary grant-tables from original ones.
  235.     * --preview : preview changes in privileges after changing
  236.                   some or more entries in the grant-tables.
  237.     * --commit  : copy grant-rules from temporary tables to grant-tables
  238.                   (!don't forget to do an mysqladmin reload)
  239.     * --rollback: undo the last changes to the grant-tables.
  240.   - bugfix:
  241.     * if the table db is empty, mysqlaccess freezed 
  242.       (by X Zhu <X.Zhu@Bradford.ac.uk>)
  243.   2.0         : (1997-10-09)
  244.   - fixed some "-w" warnings.
  245.   - complain when certain programs and paths can't be found.
  246.   2.01        : (1997-12-12)
  247.   - bugfix:
  248.     * rules for db-table where not calculated and reported correctly.
  249.   2.02        : (1998-01-xx)
  250.   - bugfix:
  251.     * Privileges of the user-table were not AND-ed properly with the
  252.       other privileges. (reported by monty)
  253.   - new option:
  254.     * --old_server: mysqlaccess will now use a full where clause when
  255.                     retrieving information from the MySQL-server.  If
  256.                     you are connecting to an old server (before v3.21)
  257.                     then use the option --old_server.
  258.   2.03         : (1998-02-27)
  259.   - bugfix:
  260.     * in Host::MatchTemplate: incorrect match if host-field was left empty.
  261.   2.04-alpha1  : (2000-02-11)
  262.   Closes vulnerability due to former implementation requiring passwords
  263.   to be passed on the command line.
  264.   - functionality
  265.     Option values for --password -p -spassword -P  may now be omitted from
  266.     command line, in which case the values will be prompted for.
  267.       (fix supplied by Steve Harvey <sgh@vex.net>)
  268.    2.05: (2000-02-17)   Monty
  269.    Moved the log file from /tmp to ~
  270.    2.06:  Don't print '+++USING FULL WHERE CLAUSE+++'
  271. _RELEASE
  272. $TODO = <<_TODO;
  273.  Plans:
  274.  -----
  275.   -a full where clause is use now.  How can we handle older servers?
  276.   -add some more functionality for DNS.
  277.   -select the warnings more carefuly.
  278.   >>  I think that the warnings should either be enhanced to _really_
  279.   >>  understand and report real problems accurately, or restricted to
  280.   >>  only printing things that it knows with 100% certainty. <psmith)
  281.   >>  Why do I have both '%' and 'any_other_host' in there?  Isn't that
  282.   >>  the same thing?  I think it's because I have an actual host '%' in
  283.   >>  one of my tables.  Probably the script should catch that and not
  284.   >>  duplicate output. <psmith>
  285. _TODO
  286. # From the FAQ: the Grant-algorithm
  287. # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  288. # The host table is mainly to maintain a list of "secure" servers.
  289. # At TCX hosts contain a list of all machines on local network. These are granted
  290. # all privileges.
  291. # Technically the user grant is calculated by:
  292. #
  293. #    1.First sort all entries by host by putting host without wildcards first,
  294. #      after this host with wildcards and entries with host = ".
  295. #      Under each host sort user by the same criterias.
  296. #    2.Get grant for user from the "db" table.
  297. #    3.If hostname is "empty" for the found entry, AND the privileges with
  298. #      the privileges for the host in "host" table.
  299. #      (Remove all which is not "Y" in both)
  300. #    4.OR (add) the privileges for the user from the "user" table.
  301. #     (add all privileges which is "Y" in "user")
  302. #
  303. #    When matching, use the first found match.
  304. #
  305. # -----------------------------------------------------------------------------------
  306. $HOWTO = <<_HOWTO;
  307. Examples of how to call $script:
  308. ~~~~~~~~
  309. 1)Calling $script with 2 arguments:
  310.   $ $script root mysql
  311.      ->report rights of user root logged on at the local host in db mysql
  312.   Access-rights
  313.   for USER 'root', from HOST 'localhost', to DB 'mysql'
  314.           +-----------------+---+ +-----------------+---+
  315.           | select_priv     | Y | | drop_priv       | Y |
  316.           | insert_priv     | Y | | reload_priv     | Y |
  317.           | update_priv     | Y | | shutdown_priv   | Y |
  318.           | delete_priv     | Y | | process_priv    | Y |
  319.           | create_priv     | Y | | file_priv       | Y |
  320.           +-----------------+---+ +-----------------+---+
  321.   BEWARE:  Everybody can access your DB as user 'root'
  322.         :  WITHOUT supplying a password.  Be very careful about it!!
  323.   The following rules are used:
  324.    db    : 'No matching rule'
  325.    host  : 'Not processed: host-field is not empty in db-table.'
  326.    user  : 'localhost','root','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'
  327. 2)Calling $script with 3 arguments:
  328.   $ $script foo.bar nobody Foo 
  329.      ->report rights of user root logged in at machine foobar to db Foo
  330.   Access-rights
  331.   for USER 'nobody', from HOST 'foo.bar', to DB 'Foo'
  332.           +-----------------+---+ +-----------------+---+
  333.           | select_priv     | Y | | drop_priv       | N |
  334.           | insert_priv     | Y | | reload_priv     | N |
  335.           | update_priv     | Y | | shutdown_priv   | N |
  336.           | delete_priv     | Y | | process_priv    | N |
  337.           | create_priv     | N | | file_priv       | N |
  338.           +-----------------+---+ +-----------------+---+
  339.   BEWARE:  Everybody can access your DB as user 'nobody'
  340.         :  WITHOUT supplying a password.  Be very careful about it!!
  341.   The following rules are used:
  342.    db    : 'foo.bar','Foo','nobody','Y','Y','Y','N','N','N'
  343.    host  : 'Not processed: host-field is not empty in db-table.'
  344.    user  : 'foo.bar','nobody','','N','N','N','Y','N','N','N','N','N','N'
  345. 3)Using wildcards:
  346.   $ $script  \* nobody Foo --brief
  347.      ->report access-rights of user nobody from all machines to db Foo,
  348.        and use a matrix-report.
  349.   Sel  Ins  Upd  Del  Crea Drop Reld Shut Proc File Host,User,DB        
  350.   ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- --------------------
  351.    Y    Y    Y    Y    N    N    N    N    N    N   localhost,nobody,Foo
  352.    N    N    N    N    N    N    N    N    N    N   %,nobody,Foo  
  353.    N    N    N    N    N    N    N    N    N    N   any_other_host,nobody,Foo
  354. _HOWTO
  355. # +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #
  356. #                       START OF THE PROGRAM                            #
  357. # +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #
  358. use Getopt::Long;
  359. use Sys::Hostname;
  360. use IPC::Open3;
  361. # ****************************
  362. # debugging flag
  363. # can be set to 0,1,2,3
  364. # a higher value gives more info
  365. # ! this can also be set on the command-line
  366. $DEBUG   = 0;
  367. # ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++>8
  368. #  Normaly nothing should be changed beneeth this line
  369. # ****************************
  370. # no caching on STDOUT
  371. $|=1;
  372. $MYSQL_CNF = tmpnam();
  373. %MYSQL_CNF = (client    => { },
  374.                       mysql     => { },
  375.                       mysqldump => { },
  376. );
  377. $NEW_USER = 'ANY_NEW_USER';
  378. $NEW_DB   = 'ANY_NEW_DB'  ;
  379. # %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% #
  380. #  mysqlaccess:                                              #
  381. #  ~~~~~~~~~~~                                               #
  382. #  Lets get to it,                                           #
  383. #  and start the program by processing the parameters        #
  384. # %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% #
  385. ($CMD,$CGI) = GetMode();
  386. # ****************************
  387. # the copyright message should
  388. # always be printed (once)
  389. MySQLaccess::Report::Print_Header();
  390. # *****************************
  391. # Read configuration-file
  392.   MySQLaccess::Debug::Print(1, "Reading configuration file...");
  393.   if (-f "./$script_conf") {
  394.      require "./$script_conf";
  395.   }
  396.   elsif (-f "/etc/$script_conf") {
  397.      require "/etc/$script_conf";
  398.   }
  399. # ****************************
  400. # Read in all parameters
  401. if ($MySQLaccess::CMD) { #command-line version
  402. # ----------------------------
  403. # Get options from commandline
  404. $Getopt::Long::ignorecase=0; #case sensitive options
  405. if ( grep(/-?/,@ARGV) ) { MySQLaccess::Report::Print_Usage(); exit 0; }
  406. GetOptions("help"          => $Param{'help'}
  407.           ,"host|h=s"      => $Param{'host'}
  408.           ,"user|u=s"      => $Param{'user'}
  409.           ,"password|p:s"  => $Param{'password'}
  410.           ,"db|d=s"        => $Param{'db'}
  411.           ,"superuser|U=s" => $Param{'superuser'}
  412.           ,"spassword|P:s" => $Param{'spassword'}
  413.           ,"rhost|H=s"     => $Param{'rhost'}
  414.                   ,"old_server"    => $Param{'old_server'}
  415.           ,"debug=i"       => $Param{'DEBUG'}
  416.           ,"brief|b"       => $Param{'brief'}
  417.           ,"table|t"       => $Param{'table'}
  418.           ,"relnotes"      => $Param{'relnotes'}
  419.           ,"plan"          => $Param{'plan'}
  420.           ,"howto"         => $Param{'howto'}
  421.           ,"version|v"     => $Param{'version'}
  422.                   ,"preview"       => $Param{'preview'}
  423.                   ,"copy"          => $Param{'copy'}
  424.                   ,"commit"        => $Param{'commit'}
  425.                   ,'rollback'      => $Param{'rollback'}
  426.   );
  427.         # -----------------------------
  428.         # set DEBUG
  429.         $DEBUG = $Param{'DEBUG'} if ($Param{'DEBUG'}>=$DEBUG);
  430. # -----------------------------
  431. # check for things which aren't
  432. # declared as options:
  433. # 2 arguments: (user,db) -> ('localhost','user','db')
  434. if ($#ARGV == 1) {
  435.    MySQLaccess::Debug::Print(2,"$script called with 2 arguments:");
  436.    $Param{'host'} = $Param{'host'} || 'localhost'; 
  437.    $Param{'user'} = $ARGV[0] || $Param{'user'};
  438.            $Param{'db'}   = $ARGV[1] || $Param{'db'}; 
  439. }
  440. # 3 arguments: (host,user,db)
  441. if ($#ARGV == 2) {
  442.    MySQLaccess::Debug::Print(2,"$script called with 3 arguments:");
  443.    $Param{'host'} = $ARGV[0] || $Param{'host'};
  444.    $Param{'user'} = $ARGV[1] || $Param{'user'};
  445.    $Param{'db'}   = $ARGV[2] || $Param{'db'};
  446. }
  447. # -------------------------------------
  448. # prompt for user password if requested
  449. if ( defined($Param{'password'}) && length($Param{'password'}) == 0 ) {
  450.            $Param{'password'} = PromptPass(
  451.                         "Password for MySQL user $Param{'user'}: ");
  452. }
  453. }
  454. if ($MySQLaccess::CGI) { #CGI-version
  455. require CGI;
  456.   $Q = new CGI;
  457. $Param{'help'} = $Q->param('help') ;
  458. $Param{'host'} = $Q->param('host') || $Q->param('h') || $Param{'host'};
  459. $Param{'user'} = $Q->param('user') || $Q->param('u') || $Param{'user'};
  460. $Param{'db'}   = $Q->param('db')   || $Q->param('d') || $Param{'db'};
  461. $Param{'password'}  = $Q->param('password')  || $Q->param('p') || $Param{'password'};
  462. $Param{'superuser'} = $Q->param('superuser') || $Q->param('U') || $Param{'superuser'};
  463. $Param{'spassword'} = $Q->param('spassword') || $Q->param('P') || $Param{'spassword'};
  464. $Param{'rhost'}     = $Q->param('rhost')     || $Q->param('H') || $Param{'rhost'};
  465. $Param{'old_server'}= $Q->param('old_server')|| $Param{'old_server'};
  466. $Param{'debug'}     = $Q->param('debug')     || $Param{'debug'};
  467. $Param{'brief'}     = $Q->param('brief')     || $Param{'brief'}; 
  468. $Param{'table'}     = $Q->param('table')     || $Param{'table'}; 
  469. $Param{'relnotes'}  = $Q->param('relnotes');
  470. $Param{'plan'}      = $Q->param('plan');
  471. $Param{'howto'}     = $Q->param('howto'); 
  472. $Param{'version'}   = $Q->param('version') ? $Q->param('version') : $Q->param('v');
  473. $Param{'edit'}      = $Q->param('edit'); 
  474. $Param{'preview'}   = $Q->param('preview'); 
  475. $Param{'copy'}      = $Q->param('copy'); 
  476. $Param{'commit'}    = $Q->param('commit'); 
  477. $Param{'rollback'}  = $Q->param('rollback'); 
  478.         # -----------------------------
  479.         # set DEBUG
  480.         $DEBUG = $Q->param('debug') if ($Q->param('debug')>=$DEBUG);
  481. }
  482. # ----------------------
  483. # brief and table-format 
  484. # exclude each-other
  485. # table-format is prefered
  486. if (defined($Param{'table'})) { undef($Param{'brief'}); }
  487. if (defined($Param{'preview'}) or
  488.     defined($Param{'copy'}) or
  489.     defined($Param{'commit'}) or
  490.     defined($Param{'rollback'}) ) { $Param{'edit'}='on'; }
  491. # ----------------------
  492. # if no host is given
  493. # assume we mean 'localhost'
  494. if (!defined($Param{'host'}))      { $Param{'host'}='localhost'; }
  495. # ----------------------
  496. # perform some checks
  497. # -> eliminate 'broken pipe' error
  498. push(@MySQLaccess::Grant::Error,'not_found_mysql')     if !(-x $MYSQL);
  499. push(@MySQLaccess::Grant::Error,'not_found_diff')      if !(-x $DIFF);
  500. push(@MySQLaccess::Grant::Error,'not_found_mysqldump') if !(-x $MYSQLDUMP);
  501. if (@MySQLaccess::Grant::Error) {
  502.    MySQLaccess::Report::Print_Error_Messages() ;
  503.    exit 0;
  504. }
  505. #-----------------------
  506. # get info/help if necc.
  507. $print_usage=1;
  508. if ( defined($Param{'version'}) ) {
  509.    MySQLaccess::Report::Print_Version();
  510.    $print_usage=0;
  511.    MySQLaccess::Report::Print_Footer();
  512.    MySQLaccess::DB::CloseConnection();
  513.    exit 0;
  514. #   exit 0;
  515. }
  516. if ( defined($Param{'relnotes'}) ) {
  517.    MySQLaccess::Report::Print_Relnotes();
  518.    $print_usage=0;
  519.    MySQLaccess::Report::Print_Footer();
  520.    MySQLaccess::DB::CloseConnection();
  521.    exit 0;
  522. #   exit 0;
  523. }
  524. if ( defined($Param{'plan'}) ) {
  525.    MySQLaccess::Report::Print_Plans();
  526.    $print_usage=0;
  527.    MySQLaccess::Report::Print_Footer();
  528.    MySQLaccess::DB::CloseConnection();
  529.    exit 0;
  530. #   exit 0;
  531. }
  532. if ( defined($Param{'howto'}) ) {
  533.    MySQLaccess::Report::Print_HowTo();
  534.    $print_usage=0;
  535.    MySQLaccess::Report::Print_Footer();
  536.    MySQLaccess::DB::CloseConnection();
  537.    exit 0;
  538. #   exit 0;
  539. }
  540. # -----------------------------
  541. # generate a help-screen in CMD-mode
  542. # or a blanc form in CGI-mode 
  543. if ( defined($Param{'help'}) 
  544.      or !defined($Param{'user'}) 
  545.      or !defined($Param{'host'})
  546.      or !defined($Param{'db'}) 
  547.    ) {
  548.    push(@MySQLaccess::Grant::Error,'user_required') unless defined($Param{'user'});
  549.    push(@MySQLaccess::Grant::Error,'db_required') unless defined($Param{'db'});
  550.    push(@MySQLaccess::Grant::Error,'host_required') unless defined($Param{'host'});
  551.    MySQLaccess::Report::Print_Usage() if $print_usage;
  552.    exit 0;
  553. }
  554. # ----------------------------
  555. # get hostname and local-ip
  556. # for localhost
  557. $localhost = MySQLaccess::Host::LocalHost();
  558. $local_ip  = MySQLaccess::Host::Name2IP($localhost);
  559. $MySQLaccess::Host::localhost = MySQLaccess::Host::LocalHost();
  560. $MySQLaccess::Host::local_ip  = MySQLaccess::Host::Name2IP($localhost);
  561. MySQLaccess::Debug::Print(3, "localhost name=$localhost, ip=$local_ip");
  562. #-----------------------------------
  563. # version of MySQL-server to connect
  564. # to determine use of full where clause
  565. $MySQLaccess::Host::SERVER = $Param{'old_server'} ? '3.20' : $SERVER;
  566. #---------------------------------
  567. # create the config file for mysql and mysqldump
  568. # to avoid passing authentication info on the command line
  569. #
  570. MergeConfigFiles();
  571. die "Unsafe config file found: $unsafeConfign"  if $unsafeConfig;
  572. if (defined($Param{'superuser'})) {
  573.    $MYSQL_CNF{'mysql'}{'user'} = $Param{'superuser'};
  574.    $MYSQL_CNF{'mysqldump'}{'user'} = $Param{'superuser'};
  575. }
  576. if (defined($Param{'spassword'})) {
  577.    if ( $CMD && length($Param{'spassword'}) == 0 ) {
  578.       $Param{'spassword'} =
  579.            PromptPass("Password for MySQL superuser $Param{'superuser'}: ");
  580.    }
  581.    if ( length($Param{'spassword'}) > 0 ) {
  582.       $MYSQL_CNF{'mysql'}{'password'} = $Param{'spassword'};
  583.       $MYSQL_CNF{'mysqldump'}{'password'} = $Param{'spassword'};
  584.    }
  585. }
  586. WriteTempConfigFile();
  587. #---------------------------------
  588. # Inform user if he has not enough
  589. # privileges to read the access-db
  590. if ( $nerror=MySQLaccess::DB::OpenConnection() ) {
  591.     MySQLaccess::Report::Print_Error_Access($nerror);
  592.     exit 0;
  593. }
  594. # -----------------------
  595. # Read MySQL ACL-files
  596. if ($nerror=MySQLaccess::Grant::ReadTables()) {
  597.     MySQLaccess::Report::Print_Error_Access($nerror);
  598.     exit 0;
  599. };
  600. if ($Param{'edit'} and $nerror=MySQLaccess::Grant::ReadTables('tmp')) {
  601.     MySQLaccess::Report::Print_Error_Access($nerror);
  602.     exit 0;
  603. }
  604. #---------------------------------
  605. # reload temporay grant-tables 
  606. # with data from original ones
  607. if ( defined($Param{'copy'}) ) {
  608.    $nerror=MySQLaccess::DB::LoadTmpTables();
  609.    if ($nerror) {
  610.       MySQLaccess::Report::Print_Error_Access($nerror);
  611.       exit 0;
  612.    }
  613.    my $msg = "The grant-rules are copied from the grant-tables ton"
  614.            . "the temporary tables.";
  615.    MySQLaccess::Report::Print_Message([$msg]);
  616. #   MySQLaccess::Report::Print_Footer();
  617. #   MySQLaccess::DB::CloseConnection();
  618. #   exit 0;
  619. }
  620. #---------------------------------
  621. # preview result of changes in the 
  622. # grant-tables
  623. if ( defined($Param{'preview'}) ) {
  624.    $aref=MySQLaccess::Grant::Diff_Privileges();
  625.    MySQLaccess::Report::Print_Diff_ACL($aref);
  626. #   MySQLaccess::Report::Print_Footer();
  627. #   MySQLaccess::DB::CloseConnection();
  628. #   exit 0;
  629. }
  630. #---------------------------------
  631. # reload grant-tables 
  632. # with data from temporary tables
  633. if ( defined($Param{'commit'}) ) {
  634.    if ($nerror = MySQLaccess::DB::CommitGrantTables()) {
  635.       MySQLaccess::Report::Print_Error_Access($nerror);
  636.       exit 0;
  637.    }
  638.    my $msg = "The grant-rules have been copied from the temporary tablesn"
  639.            . "to the grant-tables.";
  640.    my $msg1= "Don't forget to do an 'mysqladmin reload' before thesen"
  641.            . "changes take effect.";
  642.    my $msg2= "A backup-version of your original grant-rules are saved in then"
  643.            . "backup-tables, so you can always perform a 1-level rollback.";
  644.    MySQLaccess::Report::Print_Message([$msg,$msg1,$msg2]);
  645. #   MySQLaccess::Report::Print_Footer();
  646. #   MySQLaccess::DB::CloseConnection();
  647. #   exit 0;
  648. }
  649. #---------------------------------
  650. # restore previous grant-rules
  651. # with data from backup tables
  652. if ( defined($Param{'rollback'}) ) {
  653.    if ($nerror = MySQLaccess::DB::RollbackGrantTables()) {
  654.       MySQLaccess::Report::Print_Error_Access($nerror);
  655.       exit 0;
  656.    }
  657.    my $msg = "The old grant-rules have been copied back from the backup tablesn"
  658.            . "to the grant-tables.";
  659.    my $msg1= "Don't forget to do an 'mysqladmin reload' before thesen"
  660.            . "changes take effect.";
  661.    MySQLaccess::Report::Print_Message([$msg,$msg1]);
  662. #   MySQLaccess::Report::Print_Footer();
  663. #   MySQLaccess::DB::CloseConnection();
  664. #   exit 0;
  665. }
  666. #----------------------------------
  667. # show edit-taskbar
  668. if ( defined($Param{'edit'})) {
  669.    if ($MySQLaccess::CGI ) {
  670.    MySQLaccess::Report::Print_Edit();
  671.    $print_usage=0;
  672.    MySQLaccess::Report::Print_Footer();
  673.    MySQLaccess::DB::CloseConnection();
  674.    exit 0;
  675.    }
  676.    else {
  677.    MySQLaccess::Report::Print_Edit();
  678.    $print_usage=0;
  679.    MySQLaccess::Report::Print_Footer();
  680.    MySQLaccess::DB::CloseConnection();
  681.    exit 0;
  682.    }
  683. }
  684. # -----------------------------
  685. # Build list of users,dbs,hosts
  686. # to process...
  687. @all_dbs   = @{MySQLaccess::DB::Get_All_dbs($Param{'db'})};
  688. @all_users = @{MySQLaccess::DB::Get_All_users($Param{'user'})};
  689. @all_hosts = @{MySQLaccess::DB::Get_All_hosts($Param{'host'})};
  690. #if EDIT-mode
  691. #@all_dbs_tmp   = @{MySQLaccess::DB::Get_All_dbs($Param{'db'},'tmp')};
  692. #@all_users_tmp = @{MySQLaccess::DB::Get_All_users($Param{'user'},'tmp')};
  693. #@all_hosts_tmp = @{MySQLaccess::DB::Get_All_hosts($Param{'host'},'tmp')};
  694. # -----------------------------
  695. # Report access-rights for each
  696. # tuple (host,user,db)
  697. #$headers=0;
  698. my %Access = ();
  699. foreach $host (@all_hosts) {
  700.   foreach $user (@all_users) {
  701.     foreach $db (@all_dbs) {
  702.       MySQLaccess::Grant::Initialize();
  703.       %Access = MySQLaccess::Grant::Get_Access_Rights($host,$user,$db);
  704.       MySQLaccess::Report::Print_Access_rights($host,$user,$db,%Access);
  705.     }
  706.   }
  707. }
  708. # -----------------------------
  709. # End script
  710. MySQLaccess::Report::Print_Footer();
  711. MySQLaccess::DB::CloseConnection();
  712. exit 0;
  713. #############################################################
  714. #  FUNCTIONS  #
  715. ###############
  716. sub GetMode {
  717.    my $cmd=0;
  718.    my $cgi=0;
  719.    if (defined($ENV{'HTTP_HOST'})) { $cmd=0; $cgi=1; }
  720.    else                            { $cmd=1; $cgi=0; } 
  721.    return ($cmd,$cgi);
  722. }
  723. # ================================
  724. # sub PromptPass
  725. #  prompt tty for a password
  726. # ================================
  727. sub PromptPass {
  728.     my ($prompt) = @_;
  729.     my $password;
  730.     $ENV{PATH} = "/bin:/usr/bin";
  731.     $ENV{IFS} = " tn";
  732.     $ENV{SHELL} = "/bin/sh";
  733.     system "stty -echo";
  734.     print $prompt;
  735.     chomp($password = <STDIN>);
  736.     print "n";
  737.     system "stty echo";
  738.     $password;
  739. }
  740. # =================================
  741. # sub CheckUnsafeFile
  742. #  tell if a config file containing a password is unsafe
  743. # =================================
  744. sub CheckUnsafeFile {
  745.     my ($fname) = @_;
  746.     my ($dev, $ino, $mode, $nlink,
  747.         $uid, $gid, $rdev, $size,
  748.         $atime, $mtime, $ctime, $blksize, $blocks) = stat($fname);
  749.     if ( $uid != $< ) {   # unsafe if owned by other than current user
  750.         return 1;
  751.     }
  752.     if ( $mode & 066 ) {  # unsafe if accessible by other
  753.         return 1;
  754.     }
  755.     $fname =~ s#/[^/]+$##;
  756.     if ( (length $fname) > 0 ) {
  757.         return CheckUnsafeDir($fname);
  758.     }
  759.     return 0;
  760. }
  761. # =================================
  762. # sub CheckUnsafeDir
  763. #  tell if a directory is unsafe
  764. # =================================
  765. sub CheckUnsafeDir {
  766.     my ($fname) = @_;
  767.     my ($dev, $ino, $mode, $nlink,
  768.         $uid, $gid, $rdev, $size,
  769.         $atime, $mtime, $ctime, $blksize, $blocks) = stat($fname);
  770.     # not owned by me or root
  771.     if ( ($uid != $<) && ($uid != 0) ) {
  772.         return 1;
  773.     }
  774.     if ( $mode & 022 ) {  # unsafe if writable by other
  775.         return 1  unless $mode & 01000;  # but sticky bit ok
  776.     }
  777.     $fname =~ s#/[^/]+$##;
  778.     if ( (length $fname) > 0 ) {
  779.         return CheckUnsafeDir($fname);
  780.     }
  781.     return 0;
  782. }
  783. # =================================
  784. # sub MergeConfigFile
  785. #  merge data from .cnf file
  786. # =================================
  787. sub MergeConfigFile {
  788.     my ($fname) = @_;
  789.     my ($group, $item, $value);
  790.     if ( open CNF, $fname ) {
  791.          while (<CNF>) {
  792.              s/^s+//;
  793.              next if /^[#;]/;
  794.              if ( /[s*(w+)s*]/ ) {
  795.                  $group = $1;
  796.                  $group =~ tr/A-Z/a-z/;
  797.                  if ( !exists $MYSQL_CNF{$group} ) {
  798.                      undef $group;
  799.                  }
  800.              } elsif ( defined $group ) {
  801.                  ($item, $value) = /((?:w|-)+)s*=s*(S+)/;
  802.                  # don't unquote backslashes as we just write it back out
  803.                  if ( defined $item ) {
  804.                      if ( $item =~ /^password$/ ) {
  805.                          if ( CheckUnsafeFile($fname) ) {
  806.                              $unsafeConfig = $fname;
  807.                          }
  808.                      }
  809.                      if ( $group eq 'client' ) {
  810.                          $MYSQL_CNF{'mysql'}{$item} = $value;
  811.                          $MYSQL_CNF{'mysqldump'}{$item} = $value;
  812.                      } else {
  813.                          $MYSQL_CNF{$group}{$item} = $value;
  814.                      }
  815.                  }
  816.              }
  817.          }
  818.          close(CNF);
  819.     }
  820. }
  821. # =================================
  822. # sub MergeConfigFiles
  823. #  merge options from config files
  824. #  NOTE: really should do two separate merges for each
  825. #    client to exactly duplicate order of resulting argument lists
  826. # =================================
  827. sub MergeConfigFiles {
  828.     my ($name,$pass,$uid,$gid,$quota,$comment,$gcos,$dir,$shell) = getpwuid $<;
  829.     MergeConfigFile("/etc/my.cnf");
  830.     MergeConfigFile("$dir/.my.cnf");
  831. }
  832. # =================================
  833. # sub WriteTempConfigFile
  834. #  write 
  835. # =================================
  836. sub WriteTempConfigFile {
  837.    sysopen CNFFILE, $MYSQL_CNF, O_RDWR|O_CREAT|O_EXCL, 0700
  838.       or die "sysopen $MYSQL_CNF: $!";
  839.    
  840.    # groups may be in any order, generic groups such as [client] assumed
  841.    # here to be empty
  842.    foreach $group (keys %MYSQL_CNF) {
  843.       print CNFFILE "[$group]n";
  844.       foreach $item (keys %{$MYSQL_CNF{$group}}) {
  845.          if ( defined $MYSQL_CNF{$group}{$item} ) {
  846.             print CNFFILE "$item=$MYSQL_CNF{$group}{$item}n";
  847.          } else {
  848.             print CNFFILE "$itemn";
  849.          }
  850.       }
  851.       print CNFFILE "n";
  852.    }
  853.    close(CNFFILE);
  854. }
  855. ######################################################################
  856. package MySQLaccess::DB;
  857. ###########
  858. BEGIN {
  859.     $DEBUG     = 2;
  860.     $DEBUG     = $MySQLaccess::DEBUG unless ($DEBUG);
  861.     # Error-messages from the MySQL client
  862.     %ACCESS_ERR= ('Access_denied'       => 'Access denied' 
  863.                  ,'Dbaccess_denied'     => 'Access to database denied'
  864.                  ,'Unrecognized_option' => 'unrecognized option' 
  865.                  ,'Unknown_table'       => "Can't find file:"
  866.                  ,'unknown_error'       => '^ERROR:'
  867.                  );
  868. }
  869. # ######################################
  870. #  Connecting to the MYSQL DB
  871. # ======================================
  872. # sub OpenConnection
  873. #  Open an connection to the mysql-db
  874. #  questions to MYSQL_Q
  875. #  answers from MYSQL_A
  876. # ======================================
  877. sub OpenConnection {
  878.     my $pid;
  879.     MySQLaccess::Debug::Print(2,"OpenConnection:");
  880.     # check path to mysql-client executable
  881.     if (! -f $MySQLaccess::MYSQL) {
  882.        if ($MySQLaccess::CMD) { die "Could not find MySQL-client '$MySQLaccess::MYSQL'"; }
  883.        if ($MySQLaccess::CGI) { 
  884.           print "<center>n<font color=Red>n";
  885.           print "ERROR: Could not find MySQL-client '$MySQLaccess::MYSQL'";
  886.           print "</center>n</font>n";
  887.           exit 0;
  888.        }
  889.     }
  890.     # path to mysql executable
  891.     my $connect = "$MySQLaccess::MYSQL --defaults-file=$MySQLaccess::MYSQL_CNF";
  892.     $connect .= " $MySQLaccess::MYSQL_OPT";
  893.     # superuser, spassword transmitted via defaults-file
  894.     if (defined($MySQLaccess::Param{'rhost'}))     { $connect .= " --host=$MySQLaccess::Param{'rhost'}"; }
  895.     # other options??
  896.     # grant-database
  897.     $connect .= " $MySQLaccess::ACCESS_DB";
  898.     # open connection (not using /bin/sh -c)
  899.     MySQLaccess::Debug::Print(2,"Connecting to: $connect");
  900.     $pid=IPC::Open3::open3(*MYSQL_Q,*MYSQL_A,"",split /s+/,$connect);
  901.     MySQLaccess::Debug::Print(2,"PID of open pipe: $pid");
  902.     
  903.     # check connection 
  904.     print MYSQL_Q "select 'ok';n";
  905.     $answer = <MYSQL_A>; #answer from mysql
  906.     MySQLaccess::Debug::Print(2,"Answer: $answern");
  907.     foreach $nerror (sort(keys(%ACCESS_ERR))) {
  908.       MySQLaccess::Debug::Print(3,"check answer for error $ACCESS_ERR{$nerror}");
  909.       if (grep(/$ACCESS_ERR{$nerror}/i,$answer)) { 
  910.          MySQLaccess::Debug::Print(2,"Answer contain error [$nerror]");
  911.          return $nerror; 
  912.       }
  913.     }
  914. if (0) {
  915.     # check server-version 
  916.     print MYSQL_Q "select 'ok';n";
  917.     $answer = <MYSQL_A>; #answer from mysql
  918.     MySQLaccess::Debug::Print(2,"Answer: $answern");
  919.     foreach $nerror (sort(keys(%ACCESS_ERR))) {
  920.       MySQLaccess::Debug::Print(3,"check answer for error $ACCESS_ERR{$nerror}");
  921.       if (grep(/$ACCESS_ERR{$nerror}/i,$answer)) { 
  922.          MySQLaccess::Debug::Print(2,"Answer contain error [$nerror]");
  923.          return $nerror; 
  924.       }
  925.     }
  926. }
  927.     my $skip=<MYSQL_A>; 
  928.     return 0; 
  929. }
  930. # ======================================
  931. # sub CloseConnection
  932. #  Close the connection to the mysql-db
  933. # ======================================
  934. sub CloseConnection {
  935.     close MYSQL_Q;
  936.     close MYSQL_A;
  937. }
  938. # ===========================================================
  939. # sub CreateTable($table)
  940. #  Create temporary/backup table
  941. # ===========================================================
  942. sub CreateTable {
  943.     my $pid;
  944.     my ($table,$force) = @_;
  945.     my %tables = ( $MySQLaccess::ACCESS_U_TMP => $MySQLaccess::ACCESS_U,
  946.                    $MySQLaccess::ACCESS_H_TMP => $MySQLaccess::ACCESS_H,
  947.                    $MySQLaccess::ACCESS_D_TMP => $MySQLaccess::ACCESS_D,
  948.                    $MySQLaccess::ACCESS_U_BCK => $MySQLaccess::ACCESS_U,
  949.                    $MySQLaccess::ACCESS_H_BCK => $MySQLaccess::ACCESS_H,
  950.                    $MySQLaccess::ACCESS_D_BCK => $MySQLaccess::ACCESS_D,
  951.                    $MySQLaccess::ACCESS_U => $MySQLaccess::ACCESS_U_BCK,
  952.                    $MySQLaccess::ACCESS_H => $MySQLaccess::ACCESS_H_BCK,
  953.                    $MySQLaccess::ACCESS_D => $MySQLaccess::ACCESS_D_BCK,
  954.                  ); 
  955.     my $tbl;
  956.     my $query="";
  957.     my $delim;
  958.     my $skip;
  959.     my $create;
  960.     my @known_tables=();
  961. #    print STDERR "CreateTable($table)n";
  962.     MySQLaccess::Debug::Print(1,"CreateTable($table):");
  963.     ## error-handling
  964.     return 'Unknown_table' unless defined($tables{$table});
  965.     ## build list of known/existing tables;
  966.     ## if 'force' existing table is dropped first
  967.     if (defined($force) and $force) {
  968.        @known_tables = Show_Tables();
  969.        if (grep(/^$table$/,@known_tables)) {
  970.        $query = "DROP TABLE $table;";
  971.        }
  972.     }
  973.     ## path to mysqldump executable
  974.     my $connect = $MySQLaccess::MYSQLDUMP;
  975.     $connect .= " --defaults-file=$MySQLaccess::MYSQL_CNF --no-data";
  976.     # superuser, spassword transmitted via defaults-file
  977.     if (defined($MySQLaccess::Param{'rhost'}))     { $connect .= " --host=$MySQLaccess::Param{'rhost'}"; }
  978.     $connect .= " $MySQLaccess::ACCESS_DB";
  979.     $connect .= " $tables{$table}";
  980.     ## get creation-data for original table
  981.     $create = '';
  982.     my $mysqldump = $connect;
  983.     $mysqldump =~ s/ $TABLE / $tbl /;
  984.     # open connection (not using /bin/sh -c)
  985.     MySQLaccess::Debug::Print(2,"Connecting to: $connect");
  986.     $pid=IPC::Open3::open3(*DONTCARE,*CREATE,"",split /s+/,$mysqldump);
  987.     MySQLaccess::Debug::Print(2,"PID of open pipe: $pid");
  988.     #open(CREATE,"$mysqldump");
  989.     @create = <CREATE>;
  990.     $create = "@create";
  991.     foreach $nerror (sort(keys(%ACCESS_ERR))) {
  992.        MySQLaccess::Debug::Print(3,"check answer for error $ACCESS_ERR{$nerror}");
  993.        if (grep(/$ACCESS_ERR{$nerror}/i,$create)) { 
  994.           MySQLaccess::Debug::Print(2,"Answer contain error [$nerror]");
  995.           return $nerror; 
  996.        }
  997.     }
  998.     close(CREATE);
  999.     close(DONTCARE);
  1000.     ## manipulate result for creation-data for temporary table
  1001.     $create =~ s/CREATE TABLE $tables{$table} (/CREATE TABLE $table (/;
  1002.     ## recreate temporary table
  1003.     $query .= "$createn";
  1004.     $query .= "select 'ok';";
  1005.     ## execute query
  1006.     print MYSQL_Q "$queryn";
  1007. #    print STDERR $query;
  1008.     $answer = <MYSQL_A>; #answer from mysql
  1009. #    print STDERR "A>",$answer;
  1010.     MySQLaccess::Debug::Print(2,"Answer: $answern");
  1011.     foreach $nerror (sort(keys(%ACCESS_ERR))) {
  1012. #       print STDERR "->$nerror?";
  1013.        MySQLaccess::Debug::Print(3,"check answer for error $ACCESS_ERR{$nerror}");
  1014.        if (grep(/$ACCESS_ERR{$nerror}/i,$answer)) { 
  1015. #          print STDERR "Yes!";
  1016.           MySQLaccess::Debug::Print(2,"Answer contain error [$nerror]");
  1017.           return $nerror; 
  1018.        }
  1019.     }
  1020.     $delim = <MYSQL_A>; # read header
  1021.     if ($delim ne "okn") {
  1022.        while (($line=<MYSQL_A>) ne "okn")
  1023.        { MySQLaccess::Debug::Print(3," A> $line"); }
  1024.         $skip = <MYSQL_A>; # skip result 'ok'
  1025.     }
  1026. #    print STDERR "CreateTable donen";
  1027.     return 0;
  1028. }
  1029. # ===========================================================
  1030. # sub CopyTable()
  1031. #  Copy the structure and the data of a table to another table
  1032. # ===========================================================
  1033. sub CopyTable {
  1034.     my ($from,$to,$force) = @_;
  1035.     my @known_tables  = Show_Tables();    
  1036.     my $query = "";
  1037.     my $nerror= 0;
  1038.     my $skip;
  1039. #    print STDERR "CopyTable($from,$to)n";
  1040.     MySQLaccess::Debug::Print(1,"MySQLaccess::DB::CopyTable($from,$to)");
  1041.     ## error-handling
  1042.     if (!grep(/^$from$/,@known_tables)) { return 'Unknown_table'; }
  1043.     ## copy structure 
  1044.     ## if forced
  1045.     if (defined($force) and $force) {
  1046.        return $nerror if ($nerror=CreateTable($to,$force)); 
  1047. #       print STDERR "Structure copiedn";
  1048.     }
  1049.     ## copy data
  1050.     $query .= "DELETE FROM $to;";
  1051.     $query .= "INSERT INTO $to SELECT * FROM $from;";
  1052.     $query .= "SELECT 'ok';n";
  1053.     MySQLaccess::Debug::Print(2,"Query: $query");
  1054.        
  1055.     ## execute query
  1056.     print MYSQL_Q "$queryn";
  1057. #    print STDERR $query;
  1058.     ## check for errors...
  1059.     my $answer = <MYSQL_A>; #answer from mysql
  1060. #    print STDERR $answer;
  1061.     MySQLaccess::Debug::Print(2,"Answer: $answern");
  1062.     foreach $nerror (sort(keys(%ACCESS_ERR))) {
  1063.        MySQLaccess::Debug::Print(3,"check answer for error $ACCESS_ERR{$nerror}");
  1064.        if (grep(/$ACCESS_ERR{$nerror}/i,$answer)) { 
  1065.           MySQLaccess::Debug::Print(2,"Answer contain error [$nerror]");
  1066.           return $nerror; 
  1067.        }
  1068.     }
  1069.     my $delim = <MYSQL_A>; # read header
  1070. #    print STDERR $delim;
  1071.     if ($delim ne "okn") {
  1072.        while (($line=<MYSQL_A>) ne "okn")
  1073.        { MySQLaccess::Debug::Print(3," A> $line"); }
  1074.        $skip = <MYSQL_A>; # skip result 'ok'
  1075.     }
  1076.     return 0;
  1077. }
  1078. # ===========================================================
  1079. # sub LoadTmpTables()
  1080. #  (Re)load temporary tables with entries of ACL-tables
  1081. # ===========================================================
  1082. sub LoadTmpTables {
  1083.     my %tables = ( $MySQLaccess::ACCESS_U => $MySQLaccess::ACCESS_U_TMP,
  1084.                    $MySQLaccess::ACCESS_H => $MySQLaccess::ACCESS_H_TMP,
  1085.                    $MySQLaccess::ACCESS_D => $MySQLaccess::ACCESS_D_TMP,
  1086.                  ); 
  1087.     my $tbl;
  1088.     my $nerror;
  1089.     
  1090. #    print STDERR "LoadTmpTables:n";
  1091.     MySQLaccess::Debug::Print(1,"LoadTmpTables():");
  1092.     foreach $tbl (keys(%tables)) {
  1093. #       print STDERR "$tbl -> $tables{$tbl}n";
  1094.        MySQLaccess::Debug::Print(2,"Loading table $tbl -> $tables{$tbl}.");
  1095.        return $nerror if ($nerror=CopyTable($tbl,$tables{$tbl},'force'));
  1096.     }
  1097.     return 0;
  1098. }
  1099. # ===========================================================
  1100. # sub BackupGrantTables()
  1101. #  Make a backup of the original grant-tables
  1102. # ===========================================================
  1103. sub BackupGrantTables {
  1104.     my %tables = ( $MySQLaccess::ACCESS_U => $MySQLaccess::ACCESS_U_BCK,
  1105.                    $MySQLaccess::ACCESS_H => $MySQLaccess::ACCESS_H_BCK,
  1106.                    $MySQLaccess::ACCESS_D => $MySQLaccess::ACCESS_D_BCK,
  1107.                  ); 
  1108.     my $tbl;
  1109.     my $nerror;
  1110.     
  1111. #    print STDERR "BackupGrantTables:n";
  1112.     MySQLaccess::Debug::Print(1,"BackupGrantTables():");
  1113.     foreach $tbl (keys(%tables)) {
  1114. #       print STDERR "$tbl -> $tables{$tbl}n";
  1115.        MySQLaccess::Debug::Print(2,"Backup table $tbl -> $tables{$tbl}.");
  1116.        return $nerror if ($nerror=CopyTable($tbl,$tables{$tbl},'force'));
  1117.     }
  1118.     return 0;
  1119. }
  1120. # ===========================================================
  1121. # sub RollbackGrantTables()
  1122. #  Rollback the backup of the grant-tables
  1123. # ===========================================================
  1124. sub RollbackGrantTables {
  1125.     my %tables = ( $MySQLaccess::ACCESS_U_BCK => $MySQLaccess::ACCESS_U,
  1126.                    $MySQLaccess::ACCESS_H_BCK => $MySQLaccess::ACCESS_H,
  1127.                    $MySQLaccess::ACCESS_D_BCK => $MySQLaccess::ACCESS_D,
  1128.                  ); 
  1129.     my $tbl;
  1130.     my $nerror;
  1131.     
  1132. #    print STDERR "RollbackGrantTables:n";
  1133.     MySQLaccess::Debug::Print(1,"RollbackGrantTables():");
  1134.     foreach $tbl (keys(%tables)) {
  1135. #       print STDERR "$tbl -> $tables{$tbl}n";
  1136.        MySQLaccess::Debug::Print(2,"Rollback table $tbl -> $tables{$tbl}.");
  1137.        return $nerror if ($nerror=CopyTable($tbl,$tables{$tbl},'force'));
  1138.     }
  1139.     return 0;
  1140. }
  1141. # ===========================================================
  1142. # sub CommitGrantTables()
  1143. #  Copy grant-rules from temporary tables to the ACL-tables
  1144. # ===========================================================
  1145. sub CommitGrantTables {
  1146.     my %tables = ( $MySQLaccess::ACCESS_U => $MySQLaccess::ACCESS_U_TMP,
  1147.                    $MySQLaccess::ACCESS_H => $MySQLaccess::ACCESS_H_TMP,
  1148.                    $MySQLaccess::ACCESS_D => $MySQLaccess::ACCESS_D_TMP,
  1149.                  ); 
  1150.     my $tbl;
  1151.     my $query;
  1152.     my $delim;
  1153.     my $skip;
  1154.     my $create;
  1155.     print STDERR "CommitGrantTables()n";
  1156.     MySQLaccess::Debug::Print(1,"CommitGrantTables():");
  1157.     
  1158.     ## Make backup of original grant-tables
  1159.     MySQLaccess::Debug::Print(2,"Making backup of original grant-tables...");
  1160.     BackupGrantTables();
  1161.     ## Copy data from temporay tables to grant-tables
  1162.     foreach $tbl (keys(%tables)) {
  1163.        print STDERR "$tbl -> $tables{$tbl}n";
  1164.        MySQLaccess::Debug::Print(2,"Loading data $tables{$tbl} -> $tbl.");
  1165.        return $nerror if ($nerror=CopyTable($tables{$tbl},$tbl));
  1166.     }
  1167.     return 0;
  1168. }
  1169. # ===========================================================
  1170. # sub Show_Fields($table): 
  1171. #  return (a reference to) a hash which holds the names
  1172. #  of all relevant grant-fields, with their index in the record,
  1173. #  and (a reference to) an array which holds the fieldnames.
  1174. # ===========================================================
  1175. sub Show_Fields {
  1176.     my ($table) = @_;
  1177.     my %skip = ('host' => [0,1]
  1178.                ,'user' => [0,1,2]
  1179.                ,'db'   => [0,1,2]
  1180.                );
  1181.     my %Struct = ();
  1182.     my @Struct = ();
  1183.     my $query = "show fields from $table;select 'ok';n";
  1184.     my $i=0;
  1185.     my $line;
  1186. #print STDERR $query;
  1187.     MySQLaccess::Debug::Print(1,"Show_Fields($table):");
  1188.     MySQLaccess::Debug::Print(2,"SQL: $query");
  1189.     print MYSQL_Q "$query";
  1190.     my $skip = <MYSQL_A>;  #skip header
  1191.     while (($line=<MYSQL_A>) ne "okn")
  1192.     {
  1193. #print STDERR ">",$line;
  1194. chop($line);
  1195. MySQLaccess::Debug::Print(2," $table>: $line");
  1196. my ($field,$type,$null,$key,$default,$extra) = split(' ',$line);
  1197.         $field = ucfirst($field); 
  1198. MySQLaccess::Debug::Print(3, " <split: $field - $type - $null - $key - $default - $extra");
  1199. if (! grep(/$i/,@{$skip{$table}}) ){
  1200.    $Struct{$field} = $i; #hash
  1201.    push(@Struct,$field); #array
  1202.    MySQLaccess::Debug::Print(3," ==> added column[$i]: $field ($Struct{$field})");
  1203.         else {
  1204.            MySQLaccess::Debug::Print(3," ==> skipped column[$i], value=[$field]");
  1205.         }
  1206. $i++;
  1207.     }
  1208.     $skip=<MYSQL_A>;  # Get ok row (found already ok header)
  1209.     MySQLaccess::Debug::Print(2, "Array:");
  1210.     foreach $field (@Struct) { MySQLaccess::Debug::Print(2,"+ $field"); }
  1211.     MySQLaccess::Debug::Print(2,"Hash:");
  1212.     foreach $field (keys(%Struct)) { MySQLaccess::Debug::Print(2,"+ $field -> $Struct{$field}"); }
  1213.     return  (%Struct,@Struct); 
  1214. }
  1215. # ===========================================================
  1216. # sub Show_Tables(): 
  1217. #  return (a reference to) an array which holds all 
  1218. #  known tables.
  1219. # ===========================================================
  1220. sub Show_Tables {
  1221.     my @Tables = ();
  1222.     my $query = "show tables;select 'ok';n";
  1223.     my $i=0;
  1224.     my $line;
  1225.     MySQLaccess::Debug::Print(1,"Show_Tables():");
  1226.     MySQLaccess::Debug::Print(2,"SQL: $query");
  1227.     print MYSQL_Q "$query";
  1228.     my $skip = <MYSQL_A>;  #skip header
  1229.     while (($line=<MYSQL_A>) ne "okn")
  1230.     {
  1231. chop($line);
  1232. push(@Tables,$line); #array
  1233. MySQLaccess::Debug::Print(3," ==> added table: $line");
  1234.     }
  1235.     $skip=<MYSQL_A>;  # Get ok row (found already ok header)
  1236.     MySQLaccess::Debug::Print(2, "Array:");
  1237.     foreach $tbl (@Tables) { MySQLaccess::Debug::Print(2,"+ $tbl"); }
  1238.     return @Tables; 
  1239. }
  1240. # ======================================
  1241. # sub Validate_Password($passwd,$host,$user,$encpw)
  1242. #  Validate the given password 
  1243. #  for user '$user' 
  1244. #  connecting from host '$host'
  1245. # ======================================
  1246. sub Validate_Password {
  1247.     my ($password,$host,$user,$encpw) = @_;
  1248.     my $valid=0;
  1249.     MySQLaccess::Debug::Print(1,"Validate_Password($password,$host,$user,$encpw)");
  1250.     my $sql = "select host,user,password from user having "
  1251.              ."host='$host' and user='$user' and password='$encpw' "
  1252.              ."and password=PASSWORD('$password');n";
  1253.     $sql .= "select 'ok';n";
  1254.     MySQLaccess::Debug::Print(2,"SQL = $sql");
  1255.     print MYSQL_Q "$sql";
  1256.     
  1257.     # if password is valid, at least 1 row returns before we read 'ok'
  1258.     while ( ($line=<MYSQL_A>) ne "okn") {
  1259.       MySQLaccess::Debug::Print(2," A> $line");
  1260.       $valid = defined($line); 
  1261.     }
  1262.     my $skip = <MYSQL_A>; # read 'ok'
  1263.     return $valid;
  1264. }
  1265. # ==========================================================
  1266. # sub Sort_fields: (rewritten by psmith)
  1267. #  Build the query for an ordered list of entries
  1268. # ==========================================================
  1269. sub Sort_fields {
  1270.   my ($start, $end, $sofar, $this, @rest) = (@_);
  1271.   my @where = ("((FIELD not like '\%') AND (FIELD <> ''))",
  1272.                "((FIELD like '%\%%') OR (FIELD like '%\_%'))",
  1273.                "(FIELD = '')");
  1274.   my $res = '';
  1275.   $this or return ("$start $sofar $end");
  1276.   $sofar .= ' AND ' if $sofar;
  1277.   foreach $w (@where) {
  1278.     my $f = $w;
  1279.     $f =~ s/FIELD/$this/g;
  1280.     $res .= Sort_fields($start, $end, "$sofar$f", @rest);
  1281.   }
  1282.   return ($res);
  1283. }
  1284. # ===========================================================
  1285. # sub Sort_table: (rewritten by psmith)
  1286. #  return all entries in the given table,
  1287. #  in an ordered fashion
  1288. # ===========================================================
  1289. sub Sort_table {
  1290.     my ($tbl, @order) = @_;
  1291.     my @res=();
  1292.     # as long as there's no full where clause (Distrib 3.20)...
  1293.     # use having :-(
  1294.     # NOTE: this clause WILL NOT work on 3.21, because of the
  1295.     # order of 'ORDER BY' and 'HAVING'
  1296.     my $start = "SELECT *,UCASE(host) as ucase_host FROM $tbl ";
  1297.     $start   .= 'ORDER BY ' . join(',', @order) ." HAVING ";
  1298.     my $end   = ";n";
  1299.     # server version 3.21 has a full where clause :-)
  1300.     if ($MySQLaccess::Host::SERVER >= '3.21') {
  1301.     # print "+++USING FULL WHERE CLAUSE+++n";
  1302.        $start = "SELECT *,UCASE(host) as ucase_host FROM $tbl WHERE ";
  1303.        $end = ' ORDER BY ' . join(',', @order) . ";n";
  1304.     }
  1305.     MySQLaccess::Debug::Print(1,"Sort_table():");
  1306.     MySQLaccess::Debug::Print(2,"Sorting table $tbl by `@order'");
  1307.     my $tmp;
  1308.     foreach $tmp (@order)
  1309.     {
  1310.       $tmp="UCASE(host)" if ($tmp eq "ucase_host");
  1311.     }
  1312.     my $query  = Sort_fields($start, $end, '', @order);
  1313.     $query    .= "select 'ok';n";
  1314.     MySQLaccess::Debug::Print(2,"Query: $query");
  1315.     print MYSQL_Q "$queryn";
  1316.     my $delim = <MYSQL_A>; # read header
  1317.     MySQLaccess::Debug::Print(3," A> $delim");
  1318.     if ($delim ne "okn") {
  1319.        if ($delim =~ /^ERROR/) {
  1320.        push(@MySQLaccess::Grant::Error,'use_old_server');
  1321.        MySQLaccess::Report::Print_Error_Messages() ;
  1322.        exit 1;
  1323.        }
  1324.        while (($line=<MYSQL_A>) ne "okn")
  1325.        {
  1326.            MySQLaccess::Debug::Print(3," A> $line");
  1327.            push(@res,$line);
  1328.        }
  1329.     }
  1330.     my $skip = <MYSQL_A>; # skip result 'ok'
  1331.     # remove columnheaders from output
  1332.     @res = grep(!/^Q$delimE$/, @res);
  1333.     # remove trailing n from each returned record
  1334.     chomp(@res); 
  1335.     # each record has 1 field to much : ucase_host
  1336.     @res = grep { /(.*)t.*$/; $_ = $1; } @res;
  1337.     MySQLaccess::Debug::Print(2,"Result of sorted table $tbl:");
  1338.     foreach $line (@res) { MySQLaccess::Debug::Print(2," >>$line"); }
  1339.     return @res;
  1340. }
  1341. # ===========================================================
  1342. # sub Get_All_db(template): 
  1343. #  return all db the grant-tables are working on,
  1344. #  which conform to the template
  1345. # ===========================================================
  1346. sub Get_All_dbs {
  1347.    my ($template,$tmp) = @_;
  1348.    my @db=();
  1349.    my $aref;
  1350.    # working with  temporary tables or production tables
  1351.    if (defined($tmp) and $tmp) {
  1352.       $aref = @MySQLaccess::Grant::sorted_db_tmp_table ;
  1353.    }
  1354.    else {
  1355.       $aref = @MySQLaccess::Grant::sorted_db_table;
  1356.    }
  1357.    MySQLaccess::Debug::Print(1," template=[$template]");
  1358.    # get all db for which access-rights can be calculated,
  1359.    # which conform to the template.
  1360.    # !! these db's don't have to exist yet, so it's not
  1361.    #    enough to look which db already exist on the system
  1362.    $reg_expr = $template;
  1363.    if ($template =~ /[*?]/) {
  1364.       $reg_expr =~ tr/*?/%_/;
  1365.       #$reg_expr = MySQLaccess::Wildcards::Wild2Reg($template);
  1366.    }
  1367.    $reg_expr = MySQLaccess::Wildcards::SQL2Reg("$reg_expr");
  1368.    if ( ! ($template =~ /[*?%_]/) ) {
  1369.       push(@db,$template);
  1370.       return @db;
  1371.    }
  1372.    MySQLaccess::Debug::Print(2,"#Reading db-table...");
  1373.    foreach $record (@{$aref}) { #MySQLaccess::Grant::sorted_db_table) {
  1374.     my @record=split(/t/,$record);
  1375.     my $db = $record[1];
  1376.     MySQLaccess::Debug::Print(2,"> $db ");
  1377.     if ( (!grep(/$db/i,@db)) and ($db =~/$reg_expr/i) ) {
  1378.        push(@db,$db);
  1379.        MySQLaccess::Debug::Print(2,"added");
  1380.     } 
  1381.     else {
  1382.        MySQLaccess::Debug::Print(2,"skipped");
  1383.     }
  1384.    }
  1385.    # if no rule is found for a certain db in the db-table,
  1386.    # the rights of the user are used, so we should inform
  1387.    # the user for
  1388.    if (!grep(/^%$/,@db)) { push(@db,"$MySQLaccess::NEW_DB"); }
  1389.    return @db;
  1390. }
  1391. # ===========================================================
  1392. # sub Get_All_users(template): 
  1393. #  return all users the grant-tables are working on,
  1394. #  which conform to the template
  1395. # ===========================================================
  1396. sub Get_All_users {
  1397.    ($template,$tmp) = @_; # nog verder uitwerken!!!
  1398.    my @user=();
  1399.    my $aref;
  1400.    # working with  temporary tables or production tables
  1401.    if (defined($tmp) and $tmp) {
  1402.       $aref = @MySQLaccess::Grant::sorted_user_tmp_table ;
  1403.    }
  1404.    else {
  1405.       $aref = @MySQLaccess::Grant::sorted_user_table;
  1406.    }
  1407.    MySQLaccess::Debug::Print(1,"Debug Get_All_users:");
  1408.    # get all db for which access-rights can be calculated.
  1409.    # !! these db's don't have to exist yet, so it's not
  1410.    #    enough to look which db already exist on the system
  1411.    $reg_expr = $template;
  1412.    if ($template =~ /[*?]/) {
  1413.       $reg_expr =~ tr/*?/%_/;
  1414.       #$reg_expr = MySQLaccess::Wildcards::Wild2Reg($template);
  1415.    }
  1416.    $reg_expr = MySQLaccess::Wildcards::SQL2Reg("$reg_expr");
  1417.    if ( ! ($template =~ /[*?%_]/) ) {
  1418.       push(@user,$template);
  1419.       return @user;
  1420.    }
  1421.    MySQLaccess::Debug::Print(2,"#Reading user-table...");
  1422.    foreach $record (@{$aref}) { #MySQLaccess::Grant::sorted_user_table) {
  1423.     my @record=split(/t/,$record);
  1424.     my $user = $record[1];
  1425.     MySQLaccess::Debug::Print(2,"> $user ");
  1426.     if ( (!grep(/$user/,@user)) and ($user=~/$reg_expr/)) {
  1427.        push(@user,$user);
  1428.        MySQLaccess::Debug::Print(2, "added");
  1429.     } 
  1430.     else {
  1431.        MySQLaccess::Debug::Print(2, "skipped");
  1432.     }
  1433.    }
  1434.    # Any user means also:
  1435.    # - the 'empty' user, ie without supplying a username
  1436.    # - any user still to be defined/created
  1437.    #push(@user,'');               #without_suplying_a_username
  1438.    push(@user,"$MySQLaccess::NEW_USER");
  1439.    #push(@Warnings,'minimum_priv');
  1440.    return @user;
  1441. }
  1442. # ===========================================================
  1443. # sub Get_All_hosts(template): 
  1444. #  return all hosts the grant-tables are working on,
  1445. #  which conform to the template
  1446. # ===========================================================
  1447. sub Get_All_hosts {
  1448.    my ($template,$tmp) = @_;
  1449.    my @host=();
  1450.    my $aref;
  1451.    my $aref1;
  1452.    # working with  temporary tables or production tables
  1453.    if (defined($tmp) and $tmp) {
  1454.       $aref = @MySQLaccess::Grant::sorted_host_tmp_table ;
  1455.       $aref1= @MySQLaccess::Grant::sorted_db_tmp_table ;
  1456.    }
  1457.    else {
  1458.       $aref = @MySQLaccess::Grant::sorted_host_table;
  1459.       $aref1= @MySQLaccess::Grant::sorted_db_table ;
  1460.    }
  1461.    MySQLaccess::Debug::Print(1, "Debug Get_All_hosts:");
  1462.    # get all db for which access-rights can be calculated.
  1463.    # !! these db's don't have to exist yet, so it's not
  1464.    #    enough to look which db already exist on the system
  1465.    $reg_expr = $template;
  1466.    if ($template =~ /[*?]/) {
  1467.       $reg_expr =~ tr/*?/%_/;
  1468.       #$reg_expr = MySQLaccess::Wildcards::Wild2Reg($template);
  1469.    }
  1470.    $reg_expr = MySQLaccess::Wildcards::SQL2Reg("$reg_expr");
  1471.    if ( ! ($template =~ /[*?%_]/) ) {
  1472.       push(@host,$template);
  1473.       return @host;
  1474.    }
  1475.    MySQLaccess::Debug::Print(1, "#Reading db-table...");
  1476.    foreach $record (@{$aref1}) { #MySQLaccess::Grant::sorted_db_table) {
  1477.     my @record=split(/t/,$record);
  1478.     my $host = $record[0];
  1479.     MySQLaccess::Debug::Print(2, "> $host ");
  1480.     if (! grep(/$host/i,@host)) {
  1481.        push(@host,$host);
  1482.        MySQLaccess::Debug::Print(2, "added");
  1483.     } 
  1484.     else {
  1485.        MySQLaccess::Debug::Print(2, "skipped");
  1486.     }
  1487.    }
  1488.    MySQLaccess::Debug::Print(1, "#Reading host-table...");
  1489.    foreach $record (@{$aref}) {
  1490.     my @record=split(/t/,$record);
  1491.     my $host = $record[0];
  1492.     MySQLaccess::Debug::Print(2, "> $host ");
  1493.     if ( (!grep(/$host/,@host)) and ($host=~/$reg_expr/)) {
  1494.        push(@host,$host);
  1495.        MySQLaccess::Debug::Print(2, "added");
  1496.     } 
  1497.     else {
  1498.        MySQLaccess::Debug::Print(2, "skipped");
  1499.     }
  1500.    }
  1501.    # DOUBT:
  1502.    #print "#Reading user-table...n" if ($DEBUG>1);
  1503.    #foreach $record (@MySQLaccess::Grant::sorted_user_table) {
  1504.    # my @record=split(/t/,$record);
  1505.    # my $host = $record[0];
  1506.    # print "> $host " if ($DEBUG>2);
  1507.    # if ( (!grep(/$host/,@host)) and ($host=~/$reg_expr/)) {
  1508.    #    push(@host,$host);
  1509.    #    print "addedn" if ($DEBUG>2);
  1510.    # } 
  1511.    # else {
  1512.    #    print "skippedn" if ($DEBUG>2);
  1513.    # }
  1514.    #}
  1515.    # Any host also means:
  1516.    # - any host still to be defined/created
  1517.    #push(@host,"any_other_host");
  1518.    @host = sort(@host);
  1519.    return @host;
  1520. }
  1521. ##########################################################################
  1522. package MySQLaccess::Grant;
  1523. ##############
  1524. BEGIN {
  1525.     $DEBUG     = 0;
  1526.     $DEBUG     = $MySQLaccess::DEBUG unless ($DEBUG);
  1527. }
  1528. # ===========================================================
  1529. # sub Diff_Privileges()
  1530. #  Calculate diff between temporary and original grant-tables
  1531. # ===========================================================
  1532. sub Diff_Privileges {
  1533.    my @before=();
  1534.    my @after =();
  1535.    my @diffs =();
  1536.    # -----------------------------
  1537.    # Build list of users,dbs,hosts
  1538.    # to process...
  1539.    my @all_dbs   = @{MySQLaccess::DB::Get_All_dbs('*')};
  1540.    my @all_users = @{MySQLaccess::DB::Get_All_users('*')};
  1541.    my @all_hosts = @{MySQLaccess::DB::Get_All_hosts('*')};
  1542.    #if EDIT-mode
  1543.    my @all_dbs_tmp   = @{MySQLaccess::DB::Get_All_dbs('*','tmp')};
  1544.    my @all_users_tmp = @{MySQLaccess::DB::Get_All_users('*','tmp')};
  1545.    my @all_hosts_tmp = @{MySQLaccess::DB::Get_All_hosts('*','tmp')};
  1546.    my %Access;
  1547.    # ------------------------------------
  1548.    # Build list of priv. for grant-tables
  1549.    foreach $host (@all_hosts) {
  1550.      foreach $user (@all_users) {
  1551.        foreach $db (@all_dbs) {
  1552.          MySQLaccess::Grant::Initialize();
  1553.          %Access = MySQLaccess::Grant::Get_Access_Rights($host,$user,$db);
  1554.          push(@before,MySQLaccess::Report::Raw_Report($host,$user,$db,%Access));
  1555.        }
  1556.      }
  1557.    }
  1558.    # ----------------------------------
  1559.    # Build list of priv. for tmp-tables
  1560.    foreach $host (@all_hosts_tmp) {
  1561.      foreach $user (@all_users_tmp) {
  1562.        foreach $db (@all_dbs_tmp) {
  1563.          MySQLaccess::Grant::Initialize('tmp');
  1564.          %Access = MySQLaccess::Grant::Get_Access_Rights($host,$user,$db,'tmp');
  1565.          push(@after,MySQLaccess::Report::Raw_Report($host,$user,$db,%Access));
  1566.        }
  1567.      }
  1568.    }
  1569.    # ----------------------------------
  1570.    # Write results to temp-file to make
  1571.    # DIFF
  1572.    @before = sort(@before);
  1573.    @after  = sort(@after);
  1574.    ($hb, $before) = tempfile("$MySQLaccess::script.XXXXXX") or
  1575.     push(@MySQLaccess::Report::Errors,"Can't create temporary file: $!");
  1576.    ($ha, $after)  = tempfile("$MySQLaccess::script.XXXXXX") or
  1577.     push(@MySQLaccess::Report::Errors,"Can't create temporary file: $!");
  1578.    print $hb join("n",@before);
  1579.    print $ha join("n",@after);
  1580.    close $hb;
  1581.    close $ha;
  1582.    # ----------------------------------
  1583.    # compute difference
  1584.    my $cmd="$MySQLaccess::DIFF $before $after |";
  1585.    open(DIFF,"$cmd");
  1586.    @diffs = <DIFF>;
  1587.    @diffs = grep(/[<>]/,@diffs);
  1588.    chomp(@diffs);
  1589.    close(DIFF);
  1590.    # ----------------------------------
  1591.    # cleanup temp. files
  1592.    unlink($before);
  1593.    unlink($after);
  1594.    return @diffs;
  1595. }
  1596. # ===========================================================
  1597. # sub Initialize()
  1598. #
  1599. # ===========================================================
  1600. sub Initialize {
  1601.     %MySQLaccess::Grant::Access       = %{Default_Access_Rights()};
  1602.     @MySQLaccess::Grant::Errors       = ();
  1603.     @MySQLaccess::Grant::Warnings     = ();
  1604.     @MySQLaccess::Grant::Notes        = ();
  1605.     # -----
  1606.     # rules
  1607.     $MySQLaccess::Grant::Rules{'user'} = 'no_rule_found';
  1608.     $MySQLaccess::Grant::Rules{'db'}   = 'no_rule_found';
  1609.     $MySQLaccess::Grant::Rules{'host'} = 'no_equiv_host';
  1610.     $MySQLaccess::Grant::full_access   = 1;
  1611.     $MySQLaccess::Grant::process_host_table = 0;
  1612.     return 1;
  1613. }
  1614. # ===========================================================
  1615. # sub ReadTables()
  1616. #  
  1617. # ===========================================================
  1618. sub ReadTables {
  1619.     my ($tmp) = @_;
  1620.     my ($HOST,$DB,$USER);
  1621.     my @tables;
  1622.     # build list of available tables
  1623.     @tables = MySQLaccess::DB::Show_Tables();
  1624.     # reading production grant-tables or temporary tables?
  1625.     $tmp = (defined($tmp) and $tmp) ? 1 : 0;
  1626.     if ($tmp) { #reading temporary tables
  1627.        $HOST=$MySQLaccess::ACCESS_H_TMP;
  1628.        $DB  =$MySQLaccess::ACCESS_D_TMP;
  1629.        $USER=$MySQLaccess::ACCESS_U_TMP;
  1630.        # ----------------------------
  1631.        # do tables exist?
  1632.        if (!grep(/$HOST/,@tables)) { MySQLaccess::DB::CreateTable($HOST); }
  1633.        if (!grep(/$USER/,@tables)) { MySQLaccess::DB::CreateTable($USER); }
  1634.        if (!grep(/$DB/,@tables))   { MySQLaccess::DB::CreateTable($DB); }
  1635.        MySQLaccess::Debug::Print(1,"Finding fields in tmp-ACL files:");
  1636.        # -----------------------------
  1637.        # Get record-layout 
  1638.        my ($h1,$h2) = MySQLaccess::DB::Show_Fields($HOST);
  1639.        my ($d1,$d2) = MySQLaccess::DB::Show_Fields($DB);
  1640.        my ($u1,$u2) = MySQLaccess::DB::Show_Fields($USER);
  1641.        %MySQLaccess::Grant::H_tmp = %{$h1}; @MySQLaccess::Grant::H_tmp = @{$h2};
  1642.        %MySQLaccess::Grant::D_tmp = %{$d1}; @MySQLaccess::Grant::D_tmp = @{$d2};
  1643.        %MySQLaccess::Grant::U_tmp = %{$u1}; @MySQLaccess::Grant::U_tmp = @{$u2};
  1644. #       @MySQLaccess::Grant::Privileges_tmp=@{Make_Privlist()};
  1645. #
  1646.        MySQLaccess::Debug::Print(1, "Reading sorted temp-tables:");
  1647.        @MySQLaccess::Grant::sorted_db_tmp_table  = MySQLaccess::DB::Sort_table($DB, 'ucase_host', 'user', 'db');
  1648.        @MySQLaccess::Grant::sorted_host_tmp_table= MySQLaccess::DB::Sort_table($HOST, 'ucase_host', 'db');
  1649.        @MySQLaccess::Grant::sorted_user_tmp_table= defined($MySQLaccess::Param{'password'}) ?
  1650.                            MySQLaccess::DB::Sort_table($USER, 'ucase_host', 'user', 'password'):
  1651.                            MySQLaccess::DB::Sort_table($USER, 'ucase_host', 'user');
  1652.     }
  1653.     else {      #reading production grant-tables
  1654.        $HOST=$MySQLaccess::ACCESS_H;
  1655.        $DB  =$MySQLaccess::ACCESS_D;
  1656.        $USER=$MySQLaccess::ACCESS_U;
  1657.        MySQLaccess::Debug::Print(1,"Finding fields in ACL files:");
  1658.        # -----------------------------
  1659.        # Get record-layout 
  1660.        my ($h1,$h2) = MySQLaccess::DB::Show_Fields($HOST);
  1661.        my ($d1,$d2) = MySQLaccess::DB::Show_Fields($DB);
  1662.        my ($u1,$u2) = MySQLaccess::DB::Show_Fields($USER);
  1663.        %MySQLaccess::Grant::H = %{$h1}; @MySQLaccess::Grant::H = @{$h2};
  1664.        %MySQLaccess::Grant::D = %{$d1}; @MySQLaccess::Grant::D = @{$d2};
  1665.        %MySQLaccess::Grant::U = %{$u1}; @MySQLaccess::Grant::U = @{$u2};
  1666.        @MySQLaccess::Grant::Privileges=@{Make_Privlist()};
  1667.        MySQLaccess::Debug::Print(1, "Reading sorted tables:");
  1668.        @MySQLaccess::Grant::sorted_db_table  = MySQLaccess::DB::Sort_table($DB, 'ucase_host', 'user', 'db');
  1669.        @MySQLaccess::Grant::sorted_host_table= MySQLaccess::DB::Sort_table($HOST, 'ucase_host', 'db');
  1670.        @MySQLaccess::Grant::sorted_user_table= defined($MySQLaccess::Param{'password'}) ?
  1671.                            MySQLaccess::DB::Sort_table($USER, 'ucase_host', 'user', 'password'):
  1672.                            MySQLaccess::DB::Sort_table($USER, 'ucase_host', 'user');
  1673.     }
  1674.     return 0;
  1675. }
  1676. # ===========================================================
  1677. # sub Get_Access_Rights(host,user,db)
  1678. #  report the access_rights for the tuple ($host,$user,$db).
  1679. # ===========================================================
  1680. sub Get_Access_Rights {
  1681.   local ($host,$user,$db,$tmp) = @_;
  1682.    my $aref_user;
  1683.    my $aref_host;
  1684.    my $aref_db;
  1685.    # working with  temporary tables or production tables
  1686.    if (defined($tmp) and $tmp) {
  1687.       $aref_user = @MySQLaccess::Grant::sorted_user_tmp_table;
  1688.       $aref_host = @MySQLaccess::Grant::sorted_host_tmp_table;
  1689.       $aref_db   = @MySQLaccess::Grant::sorted_db_tmp_table;   
  1690.    }
  1691.    else {
  1692.       $aref_user = @MySQLaccess::Grant::sorted_user_table;
  1693.       $aref_host = @MySQLaccess::Grant::sorted_host_table;
  1694.       $aref_db   = @MySQLaccess::Grant::sorted_db_table; 
  1695.    }
  1696.   my ($refrecord,$refgrant);
  1697.   my ($_host_,$_user_,$encpw_);
  1698.   my %_Access_;
  1699.   MySQLaccess::Debug::Print(1, "for ($host,$user,$db):");  
  1700.   # ******************************************************************************
  1701.   # Create default access-rights
  1702.   #   default access-rights are no access at all!!
  1703.   # ******************************************************************************
  1704.   # get hostname for IP-address
  1705.   # get IP-address for hostname
  1706.   local $host_name = MySQLaccess::Host::IP2Name($host);
  1707.   local $host_ip   = MySQLaccess::Host::Name2IP($host);
  1708.   MySQLaccess::Debug::Print(3,"host=$host, hostname=$host_name, host-ip =$host_ip");
  1709.   MySQLaccess::Debug::Print(3,"user=$user");
  1710.   MySQLaccess::Debug::Print(3,"db  =$db");
  1711.   # ***********************************************************************
  1712.   # retrieve information on USER
  1713.   #  check all records in mysql::user for matches with the tuple (host,user)
  1714.   # ***********************************************************************
  1715.   #    4.OR (add) the privileges for the user from the "user" table.
  1716.   #     (add all privileges which is "Y" in "user")
  1717.   ($refrecord,$refgrant)    = Get_grant_from_user($host,$user,$aref_user);
  1718.   ($_host_,$_user_,$encpw_) = @{$refrecord};
  1719.   %_access_                 = %{$refgrant};
  1720.   foreach $field (keys(%U)) { ##only priv. set in user-table
  1721.     $MySQLaccess::Grant::Access{$field} = ($MySQLaccess::Grant::Access{$field} or $_access_{$field});
  1722.   }
  1723.   if ($_user_ eq $MySQLaccess::NEW_USER) { 
  1724.      push(@Warnings,'minimum_priv');
  1725.   }
  1726.   if ($_user_ ne $user) {
  1727.      $user=$_user_;
  1728.      push(@Warnings,'anonymous_access');
  1729.   }
  1730.   # *******************************************************
  1731.   #  Validate password if this has been asked to do
  1732.   # *******************************************************
  1733.   if (defined($password)) {
  1734.      $valid = Validate_Password($password,$_host_,$_user_,$_encpw_,$aref_user);
  1735.      if (!$valid) { push(@Errors,'invalid_password'); }
  1736.      else         { push(@Notes,'valid_password'); }
  1737.   }
  1738.   # ******************************************************************************
  1739.   # retrieve information on DB
  1740.   #  check all records in mysql::db for matches with the triple (host,db,user)
  1741.   #  first match is used.
  1742.   # ******************************************************************************
  1743.   #    2.Get grant for user from the "db" table.
  1744.   ($refrecord,$refgrant)=Get_grant_from_db($host,$db,$user,$aref_db); #set process_host_table
  1745.   ($_host_,$_user_,$encpw_) = @{$refrecord};
  1746.   %_access_                 = %{$refgrant};
  1747.   foreach $field (keys(%D)) { ##only priv. set in db-table
  1748.     $MySQLaccess::Grant::Access{$field} = ($MySQLaccess::Grant::Access{$field} or $_access_{$field});
  1749.   }
  1750.   # ***********************************************************************
  1751.   # retrieve information on HOST
  1752.   #  check all records in mysql::host for matches with the tuple (host,db)
  1753.   #
  1754.   #  ' The host table is mainly to maintain a list of "secure" servers. '
  1755.   # ***********************************************************************
  1756.   #    3.If hostname is "empty" for the found entry, AND the privileges with
  1757.   #      the privileges for the host in "host" table.
  1758.   #      (Remove all which is not "Y" in both)
  1759.   if ($MySQLaccess::Grant::process_host_table) {
  1760.      ($refrecord,$refgrant)=Get_grant_from_host($host,$db,$aref_host);
  1761.      ($_host_,$_user_,$encpw_) = @{$refrecord};
  1762.      %_access_                 = %{$refgrant};
  1763.      foreach $field (keys(%H)) {  ##only priv. set in host-table 
  1764.        $MySQLaccess::Grant::Access{$field} = ($MySQLaccess::Grant::Access{$field} and $_access_{$field});
  1765.      } 
  1766.   }
  1767.   MySQLaccess::Debug::Print(1,"done for ($host,$user,$db)");
  1768.   return %MySQLaccess::Grant::Access;
  1769. }
  1770. # ####################################
  1771. # FINDING THE RIGHT GRANT-RULE
  1772. # ==========================================================
  1773. # sub Get_grant_from_user:
  1774. # ==========================================================
  1775. sub Get_grant_from_user {
  1776.   my ($host,$user,$aref) = @_;
  1777.   MySQLaccess::Debug::Print(1, "");
  1778.   MySQLaccess::Debug::Print(1, "(host=$host,user=$user)");
  1779.   my %Access_user = %{Default_Access_Rights()}; 
  1780.   my $rule_found=0;
  1781.   my @record = ();
  1782.   my $record;
  1783.   foreach $record (@{$aref}) {
  1784.     $MySQLaccess::Grant::full_access=0;
  1785.     MySQLaccess::Debug::Print(3, "Record= $record");
  1786.     @record=split(/t/,$record);
  1787.     # check host and db
  1788.     # with possible wildcards in field
  1789.     # replace mysql-wildcards by reg-wildcards
  1790.     my $host_tpl = MySQLaccess::Wildcards::SQL2Reg($record[0]);
  1791.     my $user_tpl = $record[1]; #user field isn't pattern-matched!!
  1792.     my $passwd   = $record[2];
  1793.     MySQLaccess::Debug::Print(3, "=>host_tpl : read=$record[0] -> converted=$host_tpl");
  1794.     MySQLaccess::Debug::Print(3, "=>user_tpl : read=$record[1] -> $user_tpl");
  1795.     MySQLaccess::Debug::Print(3, "=>password : read=$record[2] -> $passwd");
  1796.     if ( MySQLaccess::Host::MatchTemplate($host,$host_tpl) and
  1797.          MySQLaccess::Wildcards::MatchTemplate($user_tpl,$user)
  1798.        ) 
  1799.     {
  1800.   MySQLaccess::Debug::Print(2, "FOUND!!");
  1801.         if ($passwd eq '') { push(@Warnings,'insecure_user');  }
  1802.         else               { push(@Notes,'password_required'); }
  1803.         foreach $field (keys(%U)) {
  1804.           $Access_user{$field} = $MySQLaccess::Report::Answer{$record[$U{$field}]};
  1805.         }
  1806.         #print "n" if $DEBUG;
  1807.         $MySQLaccess::Grant::Rules{'user'} = $record;
  1808.         $rule_found=1;
  1809.         last;
  1810.     }
  1811.   }
  1812.   # -------------------------------
  1813.   #  setting privileges to user-priv
  1814.   MySQLaccess::Debug::Print(2, "Rights after parsing user-table..:");
  1815.   if (! $rule_found ) {
  1816.      @record=();
  1817.      MySQLaccess::Debug::Print(2, "NO record found in the user-table!!");
  1818.   }
  1819.   else {
  1820.      MySQLaccess::Debug::Print(2, "Selected record=@record");
  1821.      MySQLaccess::Debug::Print(2, "<=?=> $record");
  1822.   }
  1823.  
  1824.   MySQLaccess::Debug::Print(1, "returning @record");
  1825.   return (@record,%Access_user); #matching record in user-table
  1826. }
  1827. # ==========================================================
  1828. # sub Get_grant_from_db:
  1829. # ==========================================================
  1830. sub Get_grant_from_db {
  1831.   my ($host,$db,$user,$aref) = @_;
  1832.   MySQLaccess::Debug::Print(1, "(host=$host,user=$user,db=$db)");
  1833.   my %Access_db    = %{Default_Access_Rights()};
  1834.   my $rule_found=0;
  1835.   foreach $record (@{$aref}) {
  1836.     $full_access=0;
  1837.     MySQLaccess::Debug::Print(2, "Read db: $record");
  1838.     @record=split(/t/,$record);
  1839.     # check host and db
  1840.     # with possible wildcards in field
  1841.     # replace mysql-wildcards by reg-wildcards
  1842.     my $host_tpl = MySQLaccess::Wildcards::SQL2Reg($record[0]);
  1843.     my $db_tpl   = MySQLaccess::Wildcards::SQL2Reg($record[1]);
  1844.     my $user_tpl = $record[2]; #user field isn't pattern matched!!
  1845.     MySQLaccess::Debug::Print(3, "=>host_tpl : read=$record[0] -> converted=$host_tpl");
  1846.     MySQLaccess::Debug::Print(3, "=>db_tpl   : read=$record[1] -> $db_tpl");
  1847.     MySQLaccess::Debug::Print(3, "=>user_tpl : read=$record[2] -> $user_tpl");
  1848.     if ( ( MySQLaccess::Host::Is_localhost($host_tpl)
  1849.            or  MySQLaccess::Wildcards::MatchTemplate($host_tpl,$host_name)
  1850.            or  MySQLaccess::Wildcards::MatchTemplate($host_tpl,$host_ip) )
  1851.          and ( MySQLaccess::Wildcards::MatchTemplate($db_tpl,$db) )
  1852.          and ( MySQLaccess::Wildcards::MatchTemplate($user_tpl,$user) ) ) {
  1853.  
  1854.       $MySQLaccess::Grant::process_host_table = ($record[0] eq '');
  1855.       if ($user_tpl eq '') { push(@Warnings,'public_database'); }
  1856.       foreach $field (keys(%D)) {
  1857.         $Access_db{$field} = $MySQLaccess::Report::Answer{$record[$D{$field}]};
  1858.       }
  1859.       $rule_found=1;
  1860.       $MySQLaccess::Grant::Rules{'db'} = $record;
  1861.       last;
  1862.     }
  1863.   }
  1864.   # -------------------------------
  1865.   #  setting privileges to db-priv
  1866.   MySQLaccess::Debug::Print(2, "Rights after parsing db-table..:");
  1867.   if (! $rule_found ) {
  1868.     MySQLaccess::Debug::Print(2, "NO rule found in db-table => no access granted!!");
  1869.   }
  1870.   return (@record,%Access_db);
  1871. }
  1872. # ==========================================================
  1873. # sub Get_grant_from_host:
  1874. # ==========================================================
  1875. sub Get_grant_from_host {
  1876.   my ($host,$db,$aref) = @_;
  1877.   MySQLaccess::Debug::Print(1, "Get_grant_from_host()");
  1878.   my %Access_host = %{Default_Access_Rights()};
  1879.   # the host-table doesn't have to be processed if the host-field
  1880.   # in the db-table isn't empty
  1881.   if (!$MySQLaccess::Grant::process_host_table) {
  1882.     MySQLaccess::Debug::Print(2, ">> Host-table doesn't have to be processed!!");
  1883.     $MySQLaccess::Grant::Rules{'host'} = 'no_equiv_host';
  1884.     return ([],%Access_host);
  1885.   }
  1886.   my $rule_found=0;
  1887.   my @record = ();
  1888.   foreach $record (@{$aref}) {
  1889.     $full_access=0;
  1890.     MySQLaccess::Debug::Print(2, "host: $record");
  1891.     @record=split(/t/,$record);
  1892.     # check host and db
  1893.     # with possible wildcards in field
  1894.     # replace mysql-wildcards by reg-wildcards
  1895.     my $host_tpl = MySQLaccess::Wildcards::SQL2Reg($record[0]);
  1896.     my $db_tpl   = MySQLaccess::Wildcards::SQL2Reg($record[1]);
  1897.     MySQLaccess::Debug::Print(3, "=>host_tpl : $record[0] -> $host_tpl");
  1898.     MySQLaccess::Debug::Print(3, "=>db_tpl   : $record[1] -> $db_tpl");
  1899.     if ( ( MySQLaccess::Host::Is_localhost($host_tpl)
  1900.            or MySQLaccess::Wildcards::MatchTemplate($host_tpl,$host_name)
  1901.            or MySQLaccess::Wildcards::MatchTemplate($host_tpl,$host_ip) )
  1902.          and ( MySQLaccess::Wildcards::MatchTemplate($db_tpl,$db) ) ) {
  1903.       $MySQLaccess::Grant::Rules{'host'} = $record;
  1904.       $rule_found=1;
  1905.       foreach $field (keys(%H)) {
  1906.         $Access_host{$field} = $MySQLaccess::Report::Answer{$record[$H{$field}]};
  1907.       }
  1908.       last;
  1909.     }
  1910.   }
  1911.   # -------------------------------
  1912.   #  setting privileges to host-priv
  1913.   MySQLaccess::Debug::Print(2, "Rights after parsing host-table..:");
  1914.   if (! $rule_found ) {
  1915.      @record=();
  1916.      MySQLaccess::Debug::Print(2, "NO restrictions found in the host-table!!");
  1917.   }
  1918.   # --------------------------------
  1919.   # debugging access-rights in db 
  1920.   return (@record,%Access_host); #matching record in host-table
  1921. }
  1922. # ===========================================================
  1923. # sub Default_Access_Rights():
  1924. #  return (a reference to) a hash which holds all default
  1925. #  priviliges currently defined in the grant-tables.
  1926. # ===========================================================
  1927. sub Default_Access_Rights {
  1928.     my %right = ();
  1929.     MySQLaccess::Debug::Print(2, "Debug Default_Access_Rights():");
  1930.     # add entry for all fields in the HOST-table
  1931.     foreach $field (keys(%MySQLaccess::Grant::H)) {
  1932. $right{$field}='0' unless (defined($right{$field}));
  1933.     }
  1934.     # add entry for all fields in the DB-table
  1935.     foreach $field (keys(%MySQLaccess::Grant::D)) {
  1936. $right{$field}='0' unless (defined($right{$field}));
  1937.     }
  1938.     # add entry for all fields in the USER-table
  1939.     foreach $field (keys(%MySQLaccess::Grant::U)) {
  1940. $right{$field}='0' unless (defined($right{$field}));
  1941.     }
  1942.     # --------------
  1943.     # debugging info
  1944.     foreach $field (keys(%right)) { MySQLaccess::Debug::Print(3, sprintf("> %15s : %1s",$field,$right{$field})); }
  1945.     return %right;
  1946. }
  1947. # ======================================
  1948. # sub Make_Privlist
  1949. #  Make an ordered list of the privileges
  1950. #  that should be reported
  1951. # ======================================
  1952. sub Make_Privlist {
  1953.     # layout:
  1954.     #'select_priv',     'create_priv',
  1955.     #'insert_priv',     'drop_priv',
  1956.     #'update_priv',     'reload_priv',
  1957.     #'delete_priv',     'process_priv',
  1958.     #'file_priv',       'shutdown_priv');
  1959.     my $right;
  1960.     my @privlist=();
  1961.     foreach $right (@U) {
  1962. if (! grep(/$right/,@privlist)) { push(@privlist,$right); }
  1963.     };
  1964.     foreach $right (@D) {
  1965. if (! grep(/$right/,@privlist)) { push(@privlist,$right); }
  1966.     };
  1967.     foreach $right (@H) {
  1968. if (! grep(/$right/,@privlist)) { push(@privlist,$right); }
  1969.     };
  1970. #       print "Privileges:n";
  1971. #       foreach $field (@privlist) { print " > $fieldn"; }
  1972.     return @privlist;
  1973. }
  1974. ########################################################################
  1975. package MySQLaccess::Report;
  1976. use Exporter ();
  1977. @EXPORT = qw(&Print_Header());
  1978. BEGIN {
  1979.     $FORM = $ENV{'SCRIPT_NAME'};
  1980.     $DEBUG     = 0;
  1981.     $DEBUG     = $MySQLaccess::DEBUG unless ($DEBUG);
  1982.     # translation-table for poss. answers
  1983.     %Answer =  ('Y' =>  1 , 'N' =>  0
  1984.                , 1  => 'Y',  0  => 'N'
  1985.                ,'?' => '?', ''  => '?'
  1986.                );
  1987.     $headers   = 0;
  1988.     $separator = 0;
  1989. # ****************************
  1990. # Notes and warnings
  1991. %MESSAGES = ( 
  1992.   'insecure_user' 
  1993.    => "Everybody can access your DB as user `$user' from host `$host'n"
  1994.      ."WITHOUT supplying a password.n"
  1995.      ."Be very careful about it!!"
  1996.  ,'password_required' 
  1997.    => "A password is required for user `$user' :-("
  1998.  ,'invalid_password'
  1999.    => "The password '$password' for user `$user' is invalid :-P"
  2000.  , 'valid_password'
  2001.    => "You supplied the right password for user `$user' :-)"
  2002.  ,'public_database' 
  2003.    => "Any user with the appropriate permissions has access to your DB!n"
  2004.      ."Check your users!"
  2005.  ,'full_access' 
  2006.    => "All grant-tables are empty, which gives full access to ALL users !!"
  2007.  ,'no_rule_found'
  2008.    => "No matching rule"
  2009.  ,'no_equiv_host' 
  2010.    => "Not processed: host-field is not empty in db-table."
  2011.  ,'least_priv'
  2012.    => "If the final priveliges of the user are more then you gave the user,n"
  2013.      ."check the priveliges in the db-table `$db'."
  2014.  ,'minimum_priv'
  2015.    => "The privileges for any new user are AT LEASTn"
  2016.      ."the ones shown in the table above,n"
  2017.      ."since these are the privileges of the db `$db'.n"
  2018.  ,'not_found_mysql'
  2019.    => "The MySQL client program <$MySQLaccess::MYSQL> could not be found.n"
  2020.      ."+ Check your path, orn"
  2021.      ."+ edit the source of this script to point $MYSQL to the mysql client.n"
  2022.  ,'not_found_mysqldump'
  2023.    => "The MySQL dump program <$MySQLaccess::MYSQLDUMP> could not be found.n"
  2024.      ."+ Check your path, orn"
  2025.      ."+ edit the source of this script to point $MYSQLDUMP to the mysqldump program.n"
  2026.  ,'not_found_diff'
  2027.    => "The diff program <$MySQLaccess::DIFF> could not be found.n"
  2028.      ."+ Check your path, orn"
  2029.      ."+ edit the source of this script to point $DIFF to the diff program.n"
  2030.  ,'Unrecognized_option'
  2031.    => "Sorry,n"
  2032.      ."You are using an old version of the mysql-program,n"
  2033.      ."which does not yet implement a neccessary option.n"
  2034.      ."n"
  2035.      ."You need at least Version 6.2 of the mysql-client,n"
  2036.      ."which was build in MySQL v3.0.18, to use this versionn"
  2037.      ."of `$MySQLaccess::script'."
  2038.  ,'Access_denied'
  2039.    => "Sorry,n"
  2040.      ."An error occured when trying to connect to the databasen"
  2041.      ."with the grant-tables:n"
  2042.      ."* Maybe YOU do not have READ-access to this database?n"
  2043.      ."* If you used the -U option, you may have supplied an invalid username?n"
  2044.      ."  for the superuser?n"
  2045.      ."* If you used the -U option, it may be possible you have to supplyn"
  2046.      ."  a superuser-password to, with the -P option?n"
  2047.      ."* If you used the -P option, you may have supplied an invalid password?n"
  2048.  ,'Dbaccess_denied'
  2049.    => "Sorry,n"
  2050.      ."An error occured when trying to connect to the databasen"
  2051.      ."with the grant-tables. (dbaccess denied)n"
  2052.  ,'Unknown_tmp_table'
  2053.    => "Sorry,n"
  2054.      ."An error occured when trying to work with the temporary tables in the databasen"
  2055.      ."with the grant-tables. (One of the temporary tables does not exist)n"
  2056.  ,'Unknown_table'
  2057.    => "Sorry,n"
  2058.      ."An error occured when trying to work with some tables in the databasen"
  2059.      ."with the grant-tables. (table does not exist)n"
  2060.  ,'use_old_server'
  2061.    => "Sorry,n"
  2062.      ."An error occured when executing an SQL statement.n"
  2063.      ."You might consider altering the use of the parameter `--old_server' when n"
  2064.      ."calling `$MySQLaccess::script'."
  2065.  ,'unknown_error'
  2066.    => "Sorry,n"
  2067.      ."An error occured when trying to connect to the databasen"
  2068.      ."with the grant-tables. (unknown error)n"
  2069.  ,'anonymous_access'
  2070.    => "Accessing the db as an anonymous user.n"
  2071.      ."Your username has no relevancen"
  2072.  ,'user_required'
  2073.    => "You have to supply a userid."
  2074.  ,'db_required'
  2075.    => "You have to supply the name of a database."
  2076.  ,'host_required'
  2077.    => "You have to supply the name of a host."
  2078.  );
  2079. # =====================================
  2080. # sub Print_Header:
  2081. #  print header info
  2082. # =====================================
  2083. sub Print_Header {
  2084.     if ($MySQLaccess::CMD) { #command-line mode
  2085.     print "$MySQLaccess::script Version $MySQLaccess::VERSIONn"
  2086.          ."By RUG-AIV, by Yves Carlier (Yves.Carlier@rug.ac.be)n"
  2087.          ."Changes by Steve Harvey (sgh@vex.net)n"
  2088.          ."This software comes with ABSOLUTELY NO WARRANTY.n";
  2089.     }
  2090.     if ($MySQLaccess::CGI) { #CGI-BIN mode
  2091.     print "content-type: text/htmlnn" 
  2092.        . "<HTML>n"
  2093.          ."<HEAD>n"
  2094.          ."<TITLE>MySQLaccess</TITLE>n"
  2095.          ."</HEAD>n"
  2096.          ."<BODY>n"
  2097.          ."<H1>$MySQLaccess::script Version $MySQLaccess::VERSION</H1>n" 
  2098.          ."<CENTER>n<ADDRESS>n"
  2099.          ."By RUG-AIV, by Yves Carlier (<a href=mailto:Yves.Carlier@rug.ac.be>Yves.Carlier@rug.ac.be</a>)<BR>n"
  2100.          ."Changes by Steve Harvey (<a href=mailto:sgh@vex.net>sgh@vex.net</a>)<BR>n"
  2101.          ."This software comes with ABSOLUTELY NO WARRANTY.<BR>n"
  2102.          ."</ADDRESS>n</CENTER>n"
  2103.          ."<HR>n";
  2104.     Print_Taskbar();
  2105.     print "<HR>n";
  2106.     }
  2107.     return 1;
  2108. }
  2109. # =====================================
  2110. # sub Print_Footer:
  2111. #  print footer info
  2112. # =====================================
  2113. sub Print_Footer {
  2114.     if ($MySQLaccess::CMD) { #command-line mode
  2115.     print "n"
  2116.          ."BUGs can be reported by email to bugs@mysql.comn";
  2117.     }
  2118.     if ($MySQLaccess::CGI) { #CGI-BIN mode
  2119.     if ($MySQLaccess::Param{'brief'}) {
  2120.     print "</table>n";  #close table in brief-output
  2121.     }
  2122.     print "<HR>n"
  2123.          ."<ADDRESS>n"
  2124.          ."BUGs can be reported by email to <a href=mailto:bugs@mysql.com>bugs@mysql.com</a><BR>n"
  2125. #         ."Don't forget to mention the version $VERSION!<BR>n"
  2126.          ."</ADDRESS>n"
  2127.          ."</BODY>n"
  2128.          ."</HTML>n";
  2129.     }
  2130.     return 1;
  2131. }
  2132. # =====================================
  2133. # sub Print_Taskbar:
  2134. #  print taskbar on STDOUT
  2135. # =====================================
  2136. sub Print_Taskbar {
  2137.     print "<CENTER>n"
  2138.          ."[<a href=$FORM?relnotes=on>Release&nbsp;Notes</a>] n"
  2139.          ."[<a href=$FORM?version=on>Version</a>] n"
  2140.          ."[<a href=$FORM?plan=on>Future&nbsp;Plans</a>] n"
  2141.          ."[<a href=$FORM?howto=on>Examples</a>] n"
  2142.          ."[<a href=$FORM?help=on>New check</a>] n"
  2143.          ."[<a href=$FORM?edit=on>Change/edit ACL</a>] n"
  2144.          ."</CENTER>n";
  2145.     return 1;
  2146. }
  2147. # =====================================
  2148. # sub Print_Form:
  2149. #  print CGI-form
  2150. # =====================================
  2151. sub Print_Form {
  2152. print <<EOForm;
  2153. <center>
  2154. <!-- Quering -->
  2155. <FORM method=POST action=$FORM>
  2156. <table border width="100%" >
  2157. <tr>
  2158.   <th>MySQL server</th>
  2159.   <th>User information</th>
  2160.   <th>Reports</th>
  2161.   </tr>
  2162. <tr>
  2163.   <td valign=top>
  2164.   <table>
  2165.   <tr>
  2166.     <td halign=right><b>Host</b><br><font size=-2>(Host on which MySQL-server resides.)</font></td>
  2167.     <td valign=top><INPUT name=rhost type=text size=15 maxlength=15 value="$MySQLaccess::Param{'rhost'}"></td>
  2168.     </tr>
  2169.   <tr>
  2170.     <td halign=right><b>Superuser</b><br><font size=-2>(User which has <font color="Red">read-access</font> to grant-tables.)</font></td>
  2171.     <td valign=top><INPUT name=superuser type=text size=15 maxlength=15 value="$MySQLaccess::Param{'superuser'}"></td>
  2172.     </tr>
  2173.   <tr>
  2174.     <td halign=right><b>Password</b><br><font size=-2>(of Superuser.)</font></td>
  2175.     <td valign=top><INPUT name=spassword type=password size=15 maxlength=15 value="$MySQLaccess::Param{'spassword'}"></td>
  2176.     </tr>
  2177.   </table>
  2178.   </td>
  2179.   <td valign=top>
  2180.   <table>
  2181.   <tr>
  2182.     <td halign=right><b><font color=Red>User</font></b><br><font size=-2>(Userid used to connect to MySQL-database.)</font></td>
  2183.     <td halign=top><INPUT name=user type=text size=15 maxlength=15 value="$MySQLaccess::Param{'user'}"></td>
  2184.     </tr>
  2185.   <tr>
  2186.     <td halign=right><b>Password</b><br><font size=-2>(Password user has to give to get access to MySQL-database.)</font></td>
  2187.     <td valign=top><INPUT name=password type=password size=15 maxlength=15 value="$MySQLaccess::Param{'password'}"></td>
  2188.     </tr>
  2189.   <tr>
  2190.     <td halign=right><b><font color=Red>Database</font></b><br><font size=-2>(Name of MySQL-database user tries to connect to.</font><br><font size=-2>Wildcards <font color="Green">(*,?,%,_)</font> are allowed.)</font></td>
  2191.     <td valign=top><INPUT name=db type=text size=15 maxlength=15 value="$MySQLaccess::Param{'db'}"></td>
  2192.     </tr>
  2193.   <tr>
  2194.     <td halign=right><b>Host</b><br><font size=-2>(Host from where the user is trying to connect to MySQL-database.</font><br><font size=-2>Wildcards <font color="Green">(*,?,%,_)</font> are allowed.)</font></td>
  2195.     <td valign=top><INPUT name=host type=text size=15 maxlength=15 value="$MySQLaccess::Param{'host'}"></td>
  2196.     </tr>
  2197.   </table>
  2198.   </td>
  2199.   <td valign=center>
  2200.   <table cellspacing=5 cellpadding=2 cols=1 height="100%">
  2201.   <tr align=center>
  2202.     <td halign=right><INPUT type=submit name=brief value="Brief"><br>
  2203.                      <INPUT type=submit name=table value="Tabular"></td>
  2204.     </tr>
  2205.   <tr align=center>
  2206.     <td></td>
  2207.     </tr>
  2208.   <tr align=center>
  2209.     <td halign=right><INPUT type=reset value="Clear"></td>
  2210.     </tr>
  2211.   </table>
  2212.   </td>
  2213.   </tr>
  2214. </table>
  2215. </form>
  2216. </BODY>
  2217. </HTML>
  2218. EOForm
  2219.     return 1;
  2220. }
  2221. # =====================================
  2222. # sub Print_Usage:
  2223. #  print some information on STDOUT
  2224. # =====================================
  2225. sub Print_Usage {
  2226.     Print_Error_Messages();
  2227.     if ($MySQLaccess::CMD) { #command-line mode
  2228.         Print_Options();
  2229.     }
  2230.     if ($MySQLaccess::CGI) { #CGI-BIN mode
  2231.         Print_Form();
  2232.     }    
  2233.     return 1;
  2234. }
  2235. # ======================================
  2236. # sub Print_Version:
  2237. # ======================================
  2238. sub Print_Version {
  2239.     if ($MySQLaccess::CMD) {
  2240.        print $MySQLaccess::INFO;
  2241.     }
  2242.     if ($MySQLaccess::CGI) { 
  2243.        print "<PRE>n"; 
  2244.        print $MySQLaccess::INFO;
  2245.        print "</PRE>n"; 
  2246.     }
  2247.     return 1;
  2248. }
  2249. # ======================================
  2250. # sub Print_Relnotes:
  2251. # ======================================
  2252. sub Print_Relnotes {
  2253.     if ($MySQLaccess::CMD) {
  2254.        print $MySQLaccess::RELEASE;
  2255.     }
  2256.     if ($MySQLaccess::CGI) { 
  2257.        print "<PRE>n";
  2258.        print $MySQLaccess::RELEASE;
  2259.        print "</PRE>n"; 
  2260.     }
  2261.     return 1;
  2262. }
  2263. # ======================================
  2264. # sub Print_Plans:
  2265. # ======================================
  2266. sub Print_Plans {
  2267.     if ($MySQLaccess::CMD) {
  2268.        print $MySQLaccess::TODO;
  2269.     }
  2270.     if ($MySQLaccess::CGI) { 
  2271.        print "<PRE>n";
  2272.        print $MySQLaccess::TODO;
  2273.        print "</PRE>n"; 
  2274.     }
  2275.     return 1;
  2276. }
  2277. # ======================================
  2278. # sub Print_HowTo:
  2279. # ======================================
  2280. sub Print_HowTo {
  2281.     if ($MySQLaccess::CMD) {
  2282.        print $MySQLaccess::HOWTO;
  2283.     }
  2284.     if ($MySQLaccess::CGI) { 
  2285.        print "<PRE>n"; 
  2286.        print $MySQLaccess::HOWTO;
  2287.        print "</PRE>n"; 
  2288.     }
  2289.     return 1;
  2290. }
  2291. # ======================================
  2292. # sub Print_Options:
  2293. # ======================================
  2294. sub Print_Options {
  2295.     if ($MySQLaccess::CGI) { print "<PRE>n"; }
  2296.     print $MySQLaccess::OPTIONS;
  2297.     if ($MySQLaccess::CGI) { print "</PRE>n"; }
  2298.     return 1;
  2299. }
  2300. # ======================================
  2301. # sub Print_Error_Access:
  2302. # ======================================
  2303. sub Print_Error_Access {
  2304.     my ($error) = @_;
  2305.     print "n";
  2306.     if ($MySQLaccess::CGI) { print "<font color=Red>n<PRE>n"; }
  2307.     print $MESSAGES{$error};
  2308.     if ($MySQLaccess::CGI) { print "</PRE>n</font>n"; }
  2309.     print "n";
  2310.     return 1;
  2311. }
  2312. # ======================================
  2313. # sub Print_Error_Messages:
  2314. # ======================================
  2315. sub Print_Error_Messages {
  2316. #    my ($error) = @_;
  2317.     print "n";
  2318.     if ($MySQLaccess::CGI) { print "<font color=Red>n<center>n"; }
  2319.     foreach $error (@MySQLaccess::Grant::Error) {
  2320.        print $MESSAGES{$error};
  2321.        print $MySQLaccess::CGI ? "<br>n" : "n";
  2322.     }
  2323.     if ($MySQLaccess::CGI) { print "</center>n</font>n"; }
  2324.     print "n";
  2325.     return 1;
  2326. }
  2327. # ======================================
  2328. # sub Print_Message:
  2329. # ======================================
  2330. sub Print_Message {
  2331.     my ($aref) = @_;
  2332.     my @messages = @{$aref};
  2333.     print "n";
  2334.     if ($MySQLaccess::CGI) { print "<font color=DarkGreen>n<center>n"; }
  2335.     foreach $msg (@messages) {
  2336.        print $msg;
  2337.        print $MySQLaccess::CGI ? "<br>n" : "n";
  2338.     }
  2339.     if ($MySQLaccess::CGI) { print "</center>n</font>n"; }
  2340.     print "n";
  2341.     return 1;
  2342. }
  2343. # ======================================
  2344. # sub Print_Edit:
  2345. # ======================================
  2346. sub Print_Edit {
  2347.     print "n";
  2348.     if (!$MySQLaccess::CGI) { 
  2349.        print "Note: Editing the temporary tables is NOT supported in CMD-line mode!n";
  2350.        return 0;
  2351.     }
  2352.     print "<CENTER>n"
  2353.          ."<form action=$FORM method=GET>n"
  2354.          ."<table width=90% border>n"
  2355.          ."<tr>n"
  2356.          ." <td><input type=checkbox name=copy value=on> Copy grant-rules to temporary tables<br></td>n"
  2357.          ." <td rowspan=5 align=center valign=center><input type=submit value=Go></td>n"
  2358.          ."</tr>n"
  2359.          ."<tr>n"
  2360.          ." <td> Edit temporary tables with external application:<br>"
  2361.          ." <a href="$MySQLaccess::MYSQLADMIN">$MySQLaccess::MYSQLADMIN</a></td>n"
  2362.          ."</tr>n"
  2363.          ."<tr>n"
  2364.          ." <td><input type=checkbox name=preview value=on> Preview changes made in temporary tables</td>n"
  2365.          ."</tr>n"
  2366.          ."<tr>n"
  2367.          ." <td><input type=checkbox name=commit value=on> Make changes permanent</td>n"
  2368.          ."</tr>n"
  2369.          ."<tr>n"
  2370.          ." <td><input type=checkbox name=rollback value=on> Restore previous grand-rules</td>n"
  2371.          ."</tr>n"
  2372.          ."<tr>n"
  2373.          ." <td colspan=2 align=center><font size=-2 color=Red>You need write,delete and drop-privileges to perform the above actions</font></td>n"
  2374.          ."</tr>n"
  2375.          ."</table>n"
  2376.          ."</form>n"
  2377.          ."</CENTER>n";
  2378.     return 1;
  2379. }
  2380. # ======================================
  2381. # sub Print_Access_rights:
  2382. #  print the access-rights on STDOUT
  2383. # ======================================
  2384. sub Print_Access_rights {
  2385.     my ($host,$user,$db,$refhash) = @_;
  2386.     if (defined($MySQLaccess::Param{'brief'})) { 
  2387. #       if ($MySQLaccess::CGI) { print "<PRE>n"; }
  2388.        Matrix_Report($host,$user,$db,$refhash);  
  2389. #       if ($MySQLaccess::CGI) { print "</PRE>n"; }
  2390.     }
  2391.     else { 
  2392.        Tabular_Report($host,$user,$db,$refhash); 
  2393.        $MySQLaccess::Report::separator = $MySQLaccess::CGI ? "<hr>" : "-"x80;
  2394.     }
  2395.     return 1;
  2396. }
  2397. # ======================================
  2398. # sub Print_Diff_ACL:
  2399. #  print the diff. in the grants before and after
  2400. # ======================================
  2401. sub Print_Diff_ACL {
  2402.     my ($aref) = @_;
  2403.     my @diffs = @{$aref};
  2404.     my %block = ( '<' => 'Before',
  2405.                   '>' => 'After',
  2406.                 );
  2407.     my %color = ( '<' => 'Green',
  2408.                   '>' => 'Red',
  2409.                 ); 
  2410.     my $curblock = '';
  2411.     # -----------------------------
  2412.     # create column-headers
  2413.     foreach $field (@MySQLaccess::Grant::Privileges) {
  2414.       push(@headers,substr($field,0,4));
  2415.     }
  2416.     if ($MySQLaccess::CMD) {
  2417.     print "n";
  2418.     print "Differences in access-rights BEFORE and AFTER changes in grant-tablesn";
  2419. #    print "---------------------------------------------------------------------n";
  2420.       my $line1="";
  2421.       my $line2="";
  2422.       $line1 .= sprintf("| %-30s|",'Host,User,DB');
  2423.       $line2 .= sprintf("+-%-30s+",'-' x 30);
  2424.       foreach $header (@headers) {
  2425.         $line1 .= sprintf("%-4s|",$header);
  2426.         $line2 .= sprintf("%s+",'----');
  2427.       }
  2428.       print "$line2n";
  2429.       print "$line1n";
  2430.       print "$line2n";
  2431.       $format = "format STDOUT = n"
  2432.               . "^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< " . " @|||" x 10 ."n"
  2433.               . '$host_user_db,@priv' . "n"
  2434.               . ".n";
  2435. #print $format;
  2436.       eval $format;
  2437.     }
  2438.     if ($MySQLaccess::CGI) {
  2439.     print "<table border width=100%>n";
  2440.     print "<tr>n";
  2441.     print "<th colspan=11>";
  2442.     print "Differences in access-rights <font color=$color{'<'}>BEFORE</font> "
  2443.          ."and <font color=$color{'>'}>AFTER</font> changes to grant-tables</font>n";
  2444.     print "</th>";
  2445.     print "</tr>n";
  2446.     print "<tr>n";    
  2447.     $line1 .= sprintf("<th>%-20s</th>",'Host, User, DB');
  2448.     foreach $header (@headers) {
  2449.       $line1 .= sprintf("<th>%-4s</th>",$header);
  2450.     }
  2451.     print "$line1</tr>n";
  2452.     }
  2453.     foreach $line (@diffs) {
  2454.         $type = substr($line,0,1);
  2455.         $line = substr($line,1);
  2456.         ($host,$user,$db,@priv) = split(/,/,$line);
  2457.         if ($MySQLaccess::CMD) {
  2458.            if ($type ne $curblock) {
  2459.               $curblock = $type;
  2460.               print $block{$curblock},":n";
  2461.            }
  2462.            #print "$linen";
  2463.            write;
  2464.         }
  2465.         if ($MySQLaccess::CGI) {
  2466.            if ($type ne $curblock) {
  2467.               $curblock = $type;
  2468.               print "<tr><td><b>$block{$curblock}<b></td></tr>n";
  2469.            }
  2470.            $line1="<td><font color=$color{$type}>$host, $user, $db</font></td>";
  2471.            foreach $field (@priv) {
  2472.               $line1 .= sprintf("<td align=center><font color=$color{$type}>%-4s</font></td>",$field);
  2473.            }
  2474.            print "<tr>$line1</tr>n";
  2475.         }
  2476.     }
  2477.     print      "n";
  2478.     if ($MySQLaccess::CMD) {
  2479.     print "---------------------------------------------------------------------n";
  2480.     }
  2481.     if ($MySQLaccess::CGI) {
  2482.     print      "</table><br>";
  2483.     }
  2484.     return 1;
  2485. }
  2486. # ======================================
  2487. # sub Tabular_Report
  2488. #  Tabular report,
  2489. #  suitable for 1 triple (host,db,user)
  2490. # ======================================
  2491. sub Tabular_Report {
  2492.     my ($host,$user,$db,$a) = @_;
  2493.     my $column=2;
  2494.     # -----------------------------
  2495.     # separator
  2496.     if ($MySQLaccess::Report::separator) { print "$MySQLaccess::Report::separatorn"; }
  2497.     
  2498.     # -----------------------------
  2499.     # print table of access-rights
  2500.     my $rows = int(@MySQLaccess::Grant::Privileges/2);  #round up
  2501.     my @table=();
  2502.     $j=0;
  2503.     for $i (0 .. $rows-1) {
  2504.       $table[$j]=$MySQLaccess::Grant::Privileges[$i];
  2505.       $j = $j+2;
  2506.     }
  2507.     $j=1;
  2508.     for $i ($rows .. $#MySQLaccess::Grant::Privileges) {
  2509.       $table[$j]=$MySQLaccess::Grant::Privileges[$i];
  2510.       $j = $j+2;
  2511.     }
  2512.     if ($MySQLaccess::CMD) {
  2513.     print "n";
  2514.     print "Access-rightsn";
  2515.     print "for USER '$user', from HOST '$host', to DB '$db'n";
  2516.     }
  2517.     if ($MySQLaccess::CGI) {
  2518.     print "<table border width=100%>n";
  2519.     print "<tr>n";
  2520.     }
  2521.     if ($MySQLaccess::CGI) {
  2522.     print "<th colspan=5>";
  2523.     print "<font color=Red>Access-rights</font>n";
  2524.     print "for USER '<font color=Green>$user</font>', from HOST '<font color=Green>$host</font>', to DB '<font color=Green>$db</font>'n";
  2525.     print "</th>";
  2526.     print "</tr>n";
  2527.     print "<tr>n";
  2528.     }
  2529.     if ($MySQLaccess::CMD) {
  2530.     print      "t+-----------------+---+t+-----------------+---+";
  2531.     }
  2532.     foreach $field (@table) {
  2533.         if ($MySQLaccess::CMD) {
  2534.           if ($column==2) { print "nt"; $column=1;}
  2535.           else            { print "t";   $column=2;}
  2536.           printf "| %-15s | %s |",$field,$Answer{$a->{$field}}; 
  2537.         }
  2538.         if ($MySQLaccess::CGI) {
  2539.           if ($column==2) { print "</tr>n<tr>n"; $column=1;}
  2540.           else            { print "<td width=10%></td>";   $column=2;}
  2541.           printf " <td width=35%><b>%-15s</b></td><td width=10%>%s</td>n",$field,$Answer{$a->{$field}}; 
  2542.         }
  2543.     }
  2544.     print      "n";
  2545.     if ($MySQLaccess::CMD) {
  2546.     print      "t+-----------------+---+t+-----------------+---+n";
  2547.     }
  2548.     if ($MySQLaccess::CGI) {
  2549.     print      "</tr>n</table><br>";
  2550.     }
  2551.     # ---------------
  2552.     # print notes:
  2553.     foreach $note (@MySQLaccess::Grant::Notes) {
  2554.       my $message = $MESSAGES{$note};
  2555.       $message =~ s/$user/$user/g; 
  2556.       $message =~ s/$db/$db/g;
  2557.       $message =~ s/$host/$host/g;
  2558.       $message =~ s/$password/$password/g;
  2559.       $PREFIX='NOTE';
  2560.       if ($MySQLaccess::CMD) {
  2561.       my @lines = split(/n/,$message);
  2562.       foreach $line (@lines) { 
  2563.         print "$PREFIX:t $linen"; 
  2564.         $PREFIX='    ';
  2565.       }
  2566.       }
  2567.       if ($MySQLaccess::CGI) {
  2568.       print "<b>$PREFIX:</b> $message<br>n";
  2569.       }
  2570.     } 
  2571.     # ---------------
  2572.     # print warnings:
  2573.     foreach $warning (@MySQLaccess::Grant::Warnings) {
  2574.       my $message = $MESSAGES{$warning};
  2575.       $message =~ s/$user/$user/g;
  2576.       $message =~ s/$db/$db/g;
  2577.       $message =~ s/$host/$host/g;
  2578.       $message =~ s/$password/$password/g;
  2579.       $PREFIX='BEWARE';
  2580.       if ($MySQLaccess::CMD) {
  2581.       my @lines = split(/n/,$message);
  2582.       foreach $line (@lines) { 
  2583.         print "$PREFIX:t $linen"; 
  2584.         $PREFIX='      ';
  2585.       }
  2586.       }
  2587.       if ($MySQLaccess::CGI) {
  2588.       print "<b>$PREFIX:</b> $message<br>n";
  2589.       }
  2590.     }
  2591.     # ---------------
  2592.     # print errors:
  2593.     foreach $error (@MySQLaccess::Grant::Errors) {
  2594.       my $message = $MESSAGES{$error};
  2595.       $message =~ s/$user/$user/g;
  2596.       $message =~ s/$db/$db/g;
  2597.       $message =~ s/$host/$host/g;
  2598.       $message =~ s/$password/$password/g;
  2599.       $PREFIX='ERROR';
  2600.       if ($MySQLaccess::CMD) {
  2601.       my @lines = split(/n/,$message);
  2602.       foreach $line (@lines) { 
  2603.         print "$PREFIX:t $linen"; 
  2604.         $PREFIX='    ';
  2605.       }
  2606.       }
  2607.       if ($MySQLaccess::CGI) {
  2608.       print "<b>$PREFIX:</b> $message<br>n";
  2609.       }
  2610.     }
  2611.     # ---------------
  2612.     # inform if there are no rules ==> full access for everyone.
  2613.     if ($MySQLaccess::Grant::full_access) { print "$MESSAGES{'full_access'}n"; }
  2614.     # ---------------
  2615.     # print the rules used
  2616.     print "n";
  2617.     if ($MySQLaccess::CMD) {
  2618.     print "The following rules are used:n";
  2619.     foreach $field (sort(keys(%MySQLaccess::Grant::Rules))) {
  2620.       my $rule = (defined($MESSAGES{$MySQLaccess::Grant::Rules{$field}}) ? $MESSAGES{$MySQLaccess::Grant::Rules{$field}} : $MySQLaccess::Grant::Rules{$field});
  2621.       $rule =~ s/t/','/g;
  2622.       printf " %-5s : '%s'n",$field,$rule;
  2623.     }
  2624.     }
  2625.     if ($MySQLaccess::CGI) {
  2626.     print "<br>n";
  2627.     print "<table border width=100%>n";
  2628.     print "<tr><th colspan=2>The following rules are used:</th></tr>n";
  2629.     foreach $field (sort(keys(%MySQLaccess::Grant::Rules))) {
  2630.       my $rule = (defined($MESSAGES{$MySQLaccess::Grant::Rules{$field}}) ? $MESSAGES{$MySQLaccess::Grant::Rules{$field}} : $MySQLaccess::Grant::Rules{$field});
  2631.       $rule =~ s/t/','/g;
  2632.       printf "<tr><th>%-5s</th><td>'%s'</td></tr>n",$field,$rule;
  2633.     }
  2634.     print "</table>n";
  2635.     }
  2636.  
  2637.     return 1;
  2638. }
  2639. # ======================================
  2640. # sub Matrix_Report:
  2641. #  single-line output foreach triple,
  2642. #  no notes,warnings,...
  2643. # ======================================
  2644. sub Matrix_Report {
  2645.     my ($host,$user,$db,$a) = @_;
  2646.     my @headers = ();
  2647.     
  2648.     if (! $headers) {
  2649.        # -----------------------------
  2650.        # create column-headers
  2651.        foreach $field (@MySQLaccess::Grant::Privileges) {
  2652.          push(@headers,substr($field,0,4));
  2653.        }
  2654.     
  2655.        # -----------------------------
  2656.        # print column-headers
  2657.        print "n";
  2658.        if ($MySQLaccess::CMD) {
  2659.          my $line1="";
  2660.          my $line2="";
  2661.          foreach $header (@headers) {
  2662.            $line1 .= sprintf("%-4s ",$header);
  2663.            $line2 .= sprintf("%s ",'----');
  2664.          }
  2665.          $line1 .= sprintf("| %-20s",'Host,User,DB');
  2666.          $line2 .= sprintf("+ %-20s",'-' x 20);
  2667.          print "$line1n";
  2668.          print "$line2n";
  2669.        }
  2670.        if ($MySQLaccess::CGI) {
  2671.          print "<table width=100% border>n";
  2672.          my $line1="<tr>";
  2673.          foreach $header (@headers) {
  2674.            $line1 .= sprintf("<th>%-4s</th>",$header);
  2675.          }
  2676.          $line1 .= sprintf("<th>%-20s</th>",'Host, User, DB');
  2677.          print "$line1</tr>n";
  2678.        }
  2679.        # ----------------------------
  2680.        # column-headers should only be 
  2681.        # printed once.
  2682.        $MySQLaccess::Report::headers=1;
  2683.     }
  2684.     # ------------------------
  2685.     # print access-information
  2686.     if ($MySQLaccess::CMD) {
  2687.       foreach $field (@MySQLaccess::Grant::Privileges) {
  2688.      printf " %-2s  ",$Answer{$a->{$field}}; 
  2689.       }
  2690.       printf "| %-20s",join(',',$host,$user,$db);
  2691.       print "n";
  2692.     }
  2693.     if ($MySQLaccess::CGI) {
  2694.       print "<tr>";
  2695.       foreach $field (@MySQLaccess::Grant::Privileges) {
  2696.      printf "<td align=center>%-2s</td>",$Answer{$a->{$field}}; 
  2697.       }
  2698.       printf "<td><b>%-20s</b></td>",join(', ',$host,$user,$db);
  2699.       print "</tr>n";
  2700.     }
  2701.     return 1;
  2702. }
  2703. # ======================================
  2704. # sub Raw_Report:
  2705. #  single-line output foreach triple,
  2706. #  no notes,warnings,...
  2707. # ======================================
  2708. sub Raw_Report {
  2709.     my ($host,$user,$db,$a) = @_;
  2710.     my @headers = ();
  2711.     my $string = "";
  2712.     
  2713.     # ------------------------
  2714.     # print access-information
  2715.     $string = "$host,$user,$db,";
  2716.     foreach $field (@MySQLaccess::Grant::Privileges) {
  2717.   $string .= $Answer{$a->{$field}} . ","; 
  2718.     }
  2719.     return $string;
  2720. }
  2721. #######################################################################
  2722. package MySQLaccess::Wildcards;
  2723. BEGIN {
  2724.     $DEBUG     = 0;
  2725.     $DEBUG     = $MySQLaccess::DEBUG unless ($DEBUG);
  2726. }
  2727. # ############################################
  2728. # SQL, WILDCARDS and REGULAR EXPRESSIONS 
  2729. # ============================================
  2730. # translage SQL-expressions to Reg-expressions
  2731. # ============================================
  2732. sub SQL2Reg {
  2733.     my ($expr) = @_;
  2734.     my $expr_o = $expr;
  2735.     $expr  =~ s/./\./g;
  2736.     $expr  =~ s/\%/02/g;
  2737.     $expr  =~ s/%/.*/g;
  2738.     $expr  =~ s/02/%/g;
  2739.     $expr  =~ s/\_/02/g;
  2740.     $expr  =~ s/_/.+/g;
  2741.     $expr  =~ s/02/_/g;
  2742.     MySQLaccess::Debug::Print(2,"$expr_o --> $expr");
  2743.     return $expr;
  2744. }
  2745. # translage WILDcards to Reg-expressions
  2746. # ============================================
  2747. sub Wild2Reg {
  2748.     my ($expr) = @_;
  2749.     my $expr_o = $expr;
  2750.     $expr  =~ s/./\./g;
  2751.     $expr  =~ s/\*/02/g;
  2752.     $expr  =~ s/*/.*/g;
  2753.     $expr  =~ s/02/*/g;
  2754.     $expr  =~ s/\?/02/g;
  2755.     $expr  =~ s/?/.+/g;
  2756.     $expr  =~ s/02/?/g;
  2757.     MySQLaccess::Debug::Print(2,"$expr_o --> $expr");
  2758.     return $expr;
  2759. }
  2760. # =============================================
  2761. # match a given string with a template
  2762. # =============================================
  2763. sub MatchTemplate {
  2764.     my ($tpl,$string) = @_;
  2765.     my $match=0;
  2766.     if ($string=~ /^$tpl$/ or $tpl eq '') { $match=1; }
  2767.     else                                  { $match=0;}
  2768.     MySQLaccess::Debug::Print(2,"($tpl,$string) --> $match");
  2769.     return $match;
  2770. }
  2771. #######################################################################
  2772. package MySQLaccess::Host;
  2773. BEGIN {
  2774.     $localhost = undef;
  2775.     $DEBUG     = 2;
  2776.     $DEBUG     = $MySQLaccess::DEBUG unless ($DEBUG);
  2777. }
  2778. # ======================================
  2779. # sub IP2Name
  2780. #  return the Name with the corr. IP-nmbr
  2781. #  (no aliases yet!!)
  2782. # ======================================
  2783. sub IP2Name {
  2784.     my ($ip) = @_;
  2785.     my $ip_o = $ip;
  2786.     if ($ip !~ /([0-9]+).([0-9]+).([0-9]+).([0-9]+)/o) {
  2787.        MySQLaccess::Debug::Print(3,"'$ip' is not an ip-number, returning IP=$ip");
  2788.        return $ip;
  2789.     }
  2790.     MySQLaccess::Debug::Print(4,"IP=$ip split up => $1.$2.$3.$4");
  2791.     $ip = pack "C4",$1,$2,$3,$4;
  2792.     MySQLaccess::Debug::Print(4,"IP packed -> >>$ip<<n");
  2793.     my ($name,$aliases,$addrtype,$length,@addrs) = gethostbyaddr($ip, AF_INET);
  2794.     MySQLaccess::Debug::Print(3,"IP=$ip_o => hostname=$name");
  2795.     MySQLaccess::Debug::Print(4,"aliases=$aliases");
  2796.     MySQLaccess::Debug::Print(4,"addrtype=$addrtype - length=$length");
  2797.     return ($name || $ip);
  2798.     #return ($name || undef);
  2799. }
  2800. # ======================================
  2801. # sub Name2IP
  2802. #  return the IP-number of the host
  2803. # ======================================
  2804. sub Name2IP {
  2805.     my ($name) = @_;
  2806.     if ($name =~ /[%_]/) { 
  2807.        MySQLaccess::Debug::Print(3,"'$name' contains SQL-wildcards, returning name=$name");
  2808.        return $name; 
  2809.     }
  2810.     my ($_name,$aliases,$addrtype,$length,@addrs) = gethostbyname($name);
  2811.     my ($a,$b,$c,$d) = unpack('C4',$addrs[0]);
  2812.     my $ip = "$a.$b.$c.$d";
  2813.     MySQLaccess::Debug::Print(3,"hostname=$name => IP=$ip");
  2814.     MySQLaccess::Debug::Print(4,"aliases=$aliases");
  2815.     MySQLaccess::Debug::Print(4,"addrtype=$addrtype - length=$length");
  2816.     #if ($ip ne "") { return "$ip"; }
  2817.     #else           { return undef; }
  2818.     return ($ip || $name);
  2819. }
  2820. # ========================================
  2821. # sub LocalHost
  2822. #  some special action has to be taken for
  2823. #  the localhost
  2824. # ========================================
  2825. sub LocalHost {
  2826.     if (!defined($MySQLaccess::Host::localhost)) {
  2827.        $MySQLaccess::Host::localhost = Sys::Hostname::hostname();
  2828.        MySQLaccess::Debug::Print(3,"Setting package variable $localhost=$MySQLaccess::Host::localhost");
  2829.     }
  2830.     my $host = $localhost;
  2831.     MySQLaccess::Debug::Print(3,"localhost = $host");
  2832.     return $host;
  2833. }
  2834. # ========================================
  2835. # check if the given hostname (or ip)
  2836. # corresponds with the localhost
  2837. # ========================================
  2838. sub Is_localhost {
  2839.     my ($host_tpl) = @_;
  2840.     my $isit = 0;
  2841.     if (($MySQLaccess::host_name eq $localhost) or ($MySQLaccess::host_ip eq $local_ip)) {
  2842. MySQLaccess::Debug::Print(2,"Checking for localhost");
  2843.       MySQLaccess::Debug::Print(3,"because ($MySQLaccess::host_name EQ $localhost) AND ($MySQLaccess::host_ip EQ $local_ip)");
  2844.       $isit = ( 'localhost' =~ /$host_tpl/ ) ? 1 : 0;
  2845.       MySQLaccess::Debug::Print(3," 'localhost' =?= $host_tpl  -> $isit");
  2846.       return $isit;
  2847.     }
  2848.     else {
  2849.       MySQLaccess::Debug::Print(4,"Not checking for localhost");
  2850.       MySQLaccess::Debug::Print(4,"because ($MySQLaccess::host_name != $localhost) AND ($MySQLaccess::host_ip != $local_ip)");
  2851.       return 0;
  2852.     }
  2853. }
  2854. # =========================================
  2855. # check if host (IP or name) can be matched
  2856. # on the template.
  2857. # =========================================
  2858. sub MatchTemplate {
  2859.     my ($host,$tpl) = @_;
  2860.     my $match = 0;
  2861.    
  2862.     MySQLaccess::Debug::Print(1, "($host) =?= ($tpl)");
  2863.     my $host_name = IP2Name($host);
  2864.     my $host_ip   = Name2IP($host);
  2865.     MySQLaccess::Debug::Print(2, "name=$host_name ; ip=$host_ip");
  2866.     $match = (MySQLaccess::Wildcards::MatchTemplate($tpl,$host_name) or
  2867.              MySQLaccess::Wildcards::MatchTemplate($tpl,$host_ip));
  2868.     MySQLaccess::Debug::Print(2, "($host_name,$host_ip) =?= ($tpl): $ncount");
  2869.     return $match;
  2870. }
  2871. ########################################################################
  2872. package MySQLaccess::Debug;
  2873. BEGIN {
  2874.    my $dbg_file = "$MySQLaccess::script_log";
  2875.    open(DEBUG,"> $dbg_file") or warn "Could not open outputfile $dbg_file for debugging-infon";
  2876.    select DEBUG;
  2877.    $| = 1;
  2878.    select STDOUT;
  2879. }
  2880. # =========================================
  2881. # Print debugging information on STDERR
  2882. # =========================================
  2883. sub Print {
  2884.     my ($level,$mesg) = @_;
  2885.     my ($pack,$file,$line,$subname,$hasargs,$wantarray) = caller(1);
  2886.     my ($PACK)  = split('::',$subname); 
  2887.     my $DEBUG = ${$PACK."::DEBUG"} ? ${$PACK."::DEBUG"} : $MySQLaccess::DEBUG ;
  2888.     my ($sec,$min,$hour) = localtime();
  2889.     print DEBUG "[$hour:$min:$sec $subname] $mesgn" if ($DEBUG>=$level);
  2890. }