home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 May / PCWorld_2003-05_cd.bin / Komunik / apache / apache_2.0.45-win32-x86-no_ssl.msi / Data.Cab / F23523_dbmmanage.pl < prev    next >
Perl Script  |  2003-04-01  |  11KB  |  350 lines

  1. # ====================================================================
  2. # The Apache Software License, Version 1.1
  3. #
  4. # Copyright (c) 2000-2003 The Apache Software Foundation.  All rights
  5. # reserved.
  6. #
  7. # Redistribution and use in source and binary forms, with or without
  8. # modification, are permitted provided that the following conditions
  9. # are met:
  10. #
  11. # 1. Redistributions of source code must retain the above copyright
  12. #    notice, this list of conditions and the following disclaimer.
  13. #
  14. # 2. Redistributions in binary form must reproduce the above copyright
  15. #    notice, this list of conditions and the following disclaimer in
  16. #    the documentation and/or other materials provided with the
  17. #    distribution.
  18. #
  19. # 3. The end-user documentation included with the redistribution,
  20. #    if any, must include the following acknowledgment:
  21. #       "This product includes software developed by the
  22. #        Apache Software Foundation (http://www.apache.org/)."
  23. #    Alternately, this acknowledgment may appear in the software itself,
  24. #    if and wherever such third-party acknowledgments normally appear.
  25. #
  26. # 4. The names "Apache" and "Apache Software Foundation" must
  27. #    not be used to endorse or promote products derived from this
  28. #    software without prior written permission. For written
  29. #    permission, please contact apache@apache.org.
  30. #
  31. # 5. Products derived from this software may not be called "Apache",
  32. #    nor may "Apache" appear in their name, without prior written
  33. #    permission of the Apache Software Foundation.
  34. #
  35. # THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  36. # WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  37. # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  38. # DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  39. # ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40. # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  41. # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  42. # USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  43. # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  44. # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  45. # OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  46. # SUCH DAMAGE.
  47. # ====================================================================
  48. #
  49. # This software consists of voluntary contributions made by many
  50. # individuals on behalf of the Apache Software Foundation.  For more
  51. # information on the Apache Software Foundation, please see
  52. # <http://www.apache.org/>.
  53. #
  54.  
  55. #for more functionality see the HTTPD::UserAdmin module:
  56. # http://www.perl.com/CPAN/modules/by-module/HTTPD/HTTPD-Tools-x.xx.tar.gz
  57. #
  58. # usage: dbmmanage <DBMfile> <command> <user> <password> <groups> <comment>
  59.  
  60. package dbmmanage;
  61. #                               -ldb    -lndbm    -lgdbm    -lsdbm
  62. BEGIN { @AnyDBM_File::ISA = qw(SDBM_File) }
  63. use strict;
  64. use Fcntl;
  65. use AnyDBM_File ();
  66.  
  67. sub usage {
  68.     my $cmds = join "|", sort keys %dbmc::;
  69.     die <<SYNTAX;
  70. Usage: dbmmanage [enc] dbname command [username [pw [group[,group] [comment]]]]
  71.  
  72.     where enc is  -d for crypt encryption (default except on Win32, Netware)
  73.                   -m for MD5 encryption (default on Win32, Netware)
  74.                   -s for SHA1 encryption
  75.                   -p for plaintext
  76.  
  77.     command is one of: $cmds
  78.  
  79.     pw of . for update command retains the old password
  80.     pw of - (or blank) for update command prompts for the password
  81.  
  82.     groups or comment of . (or blank) for update command retains old values
  83.     groups or comment of - for update command clears the existing value
  84.     groups or comment of - for add and adduser commands is the empty value
  85. SYNTAX
  86. }
  87.  
  88. sub need_sha1_crypt {
  89.     if (!eval ('require "Digest/SHA1.pm";')) {
  90.         print STDERR <<SHAERR;
  91. dbmmanage SHA1 passwords require the interface or the module Digest::SHA1
  92. available from CPAN:
  93.  
  94.     http://www.cpan.org/modules/by-module/Digest/Digest-MD5-2.12.tar.gz
  95.  
  96. Please install Digest::SHA1 and try again, or use a different crypt option:
  97.  
  98. SHAERR
  99.         usage();
  100.     }
  101. }
  102.  
  103. sub need_md5_crypt {
  104.     if (!eval ('require "Crypt/PasswdMD5.pm";')) {
  105.         print STDERR <<MD5ERR;
  106. dbmmanage MD5 passwords require the module Crypt::PasswdMD5 available from CPAN
  107.  
  108.     http://www.cpan.org/modules/by-module/Crypt/Crypt-PasswdMD5-1.1.tar.gz
  109.  
  110. Please install Crypt::PasswdMD5 and try again, or use a different crypt option:
  111.  
  112. MD5ERR
  113.         usage();
  114.     }
  115. }
  116.  
  117. # if your osname is in $newstyle_salt, then use new style salt (starts with '_' and contains
  118. # four bytes of iteration count and four bytes of salt).  Otherwise, just use
  119. # the traditional two-byte salt.
  120. # see the man page on your system to decide if you have a newer crypt() lib.
  121. # I believe that 4.4BSD derived systems do (at least BSD/OS 2.0 does).
  122. # The new style crypt() allows up to 20 characters of the password to be
  123. # significant rather than only 8.
  124. #
  125. my $newstyle_salt_platforms = join '|', qw{bsdos}; #others?
  126. my $newstyle_salt = $^O =~ /(?:$newstyle_salt_platforms)/;
  127.  
  128. # Some platforms just can't crypt() for Apache
  129. #
  130. my $crypt_not_supported_platforms = join '|', qw{MSWin32 NetWare}; #others?
  131. my $crypt_not_supported = $^O =~ /(?:$crypt_not_supported_platforms)/;
  132.  
  133. my $crypt_method = "crypt";
  134.  
  135. if ($crypt_not_supported) {
  136.     $crypt_method = "md5";
  137. }
  138.  
  139. # Some platforms won't jump through our favorite hoops
  140. #
  141. my $not_unix_platforms = join '|', qw{MSWin32 NetWare}; #others?
  142. my $not_unix = $^O =~ /(?:$not_unix_platforms)/;
  143.  
  144. if ($crypt_not_supported) {
  145.     $crypt_method = "md5";
  146. }
  147.  
  148. if (@ARGV[0] eq "-d") {
  149.     shift @ARGV;
  150.     if ($crypt_not_supported) {
  151.         print STDERR 
  152.               "Warning: Apache/$^O does not support crypt()ed passwords!\n\n";
  153.     }
  154.     $crypt_method = "crypt";
  155. }
  156.  
  157. if (@ARGV[0] eq "-m") {
  158.     shift @ARGV;
  159.     $crypt_method = "md5";
  160. }
  161.  
  162. if (@ARGV[0] eq "-p") {
  163.     shift @ARGV;
  164.     if (!$crypt_not_supported) {
  165.         print STDERR 
  166.               "Warning: Apache/$^O does not support plaintext passwords!\n\n";
  167.     }
  168.     $crypt_method = "plain";
  169. }
  170.  
  171. if (@ARGV[0] eq "-s") {
  172.     shift @ARGV;
  173.     need_sha1_crypt();
  174.     $crypt_method = "sha1";
  175. }
  176.  
  177. if ($crypt_method eq "md5") {
  178.     need_md5_crypt();
  179. }
  180.  
  181. my($file,$command,$key,$crypted_pwd,$groups,$comment) = @ARGV;
  182.  
  183. usage() unless $file and $command and defined &{$dbmc::{$command}};
  184.  
  185. # remove extension if any
  186. my $chop = join '|', qw{db.? pag dir};
  187. $file =~ s/\.($chop)$//;
  188.  
  189. my $is_update = $command eq "update";
  190. my %DB = ();
  191. my @range = ();
  192. my($mode, $flags) = $command =~ 
  193.     /^(?:view|check)$/ ? (0644, O_RDONLY) : (0644, O_RDWR|O_CREAT);
  194.  
  195. tie (%DB, "AnyDBM_File", $file, $flags, $mode) || die "Can't tie $file: $!";
  196. dbmc->$command();
  197. untie %DB;
  198.  
  199.  
  200. my $x;
  201. sub genseed {
  202.     my $psf;
  203.     if ($not_unix) {
  204.     srand (time ^ $$ or time ^ ($$ + ($$ << 15)));
  205.     }
  206.     else {
  207.         for (qw(-xlwwa -le)) { 
  208.         `ps $_ 2>/dev/null`;
  209.             $psf = $_, last unless $?;
  210.         }
  211.         srand (time ^ $$ ^ unpack("%L*", `ps $psf | gzip -f`));
  212.     }
  213.     @range = (qw(. /), '0'..'9','a'..'z','A'..'Z');
  214.     $x = int scalar @range;
  215. }
  216.  
  217. sub randchar { 
  218.     join '', map $range[rand $x], 1..shift||1;
  219. }
  220.  
  221. sub saltpw_crypt {
  222.     genseed() unless @range; 
  223.     return $newstyle_salt ? 
  224.     join '', "_", randchar, "a..", randchar(4) :
  225.         randchar(2);
  226. }
  227.  
  228. sub cryptpw_crypt {
  229.     my ($pw, $salt) = @_;
  230.     $salt = saltpw_crypt unless $salt;
  231.     crypt $pw, $salt;
  232. }
  233.  
  234. sub saltpw_md5 {
  235.     genseed() unless @range; 
  236.     randchar(8);
  237. }
  238.  
  239. sub cryptpw_md5 {
  240.     my($pw, $salt) = @_;
  241.     $salt = saltpw_md5 unless $salt;
  242.     Crypt::PasswdMD5::apache_md5_crypt($pw, $salt);
  243. }
  244.  
  245. sub cryptpw_sha1 {
  246.     my($pw, $salt) = @_;
  247.     '{SHA}' . Digest::SHA1::sha1_base64($pw) . "=";
  248. }
  249.  
  250. sub cryptpw {
  251.     if ($crypt_method eq "md5") {
  252.         return cryptpw_md5(@_);
  253.     } elsif ($crypt_method eq "sha1") {
  254.         return cryptpw_sha1(@_);
  255.     } elsif ($crypt_method eq "crypt") {
  256.         return cryptpw_crypt(@_);
  257.     }
  258.     @_[0]; # otherwise return plaintext
  259. }
  260.  
  261. sub getpass {
  262.     my $prompt = shift || "Enter password:";
  263.  
  264.     unless($not_unix) { 
  265.     open STDIN, "/dev/tty" or warn "couldn't open /dev/tty $!\n";
  266.     system "stty -echo;";
  267.     }
  268.  
  269.     my($c,$pwd);
  270.     print STDERR $prompt;
  271.     while (($c = getc(STDIN)) ne '' and $c ne "\n" and $c ne "\r") {
  272.     $pwd .= $c;
  273.     }
  274.  
  275.     system "stty echo" unless $not_unix;
  276.     print STDERR "\n";
  277.     die "Can't use empty password!\n" unless length $pwd;
  278.     return $pwd;
  279. }
  280.  
  281. sub dbmc::update {
  282.     die "Sorry, user `$key' doesn't exist!\n" unless $DB{$key};
  283.     $crypted_pwd = (split /:/, $DB{$key}, 3)[0] if $crypted_pwd eq '.';
  284.     $groups = (split /:/, $DB{$key}, 3)[1] if !$groups || $groups eq '.';
  285.     $comment = (split /:/, $DB{$key}, 3)[2] if !$comment || $comment eq '.';
  286.     if (!$crypted_pwd || $crypted_pwd eq '-') {
  287.         dbmc->adduser;
  288.     }
  289.     else {
  290.         dbmc->add;
  291.     }
  292. }
  293.  
  294. sub dbmc::add {
  295.     die "Can't use empty password!\n" unless $crypted_pwd;
  296.     unless($is_update) {
  297.     die "Sorry, user `$key' already exists!\n" if $DB{$key};
  298.     }
  299.     $groups = '' if $groups eq '-';
  300.     $comment = '' if $comment eq '-';
  301.     $groups .= ":" . $comment if $comment;
  302.     $crypted_pwd .= ":" . $groups if $groups;
  303.     $DB{$key} = $crypted_pwd;
  304.     my $action = $is_update ? "updated" : "added";
  305.     print "User $key $action with password encrypted to $DB{$key} using $crypt_method\n";
  306. }
  307.  
  308. sub dbmc::adduser {
  309.     my $value = getpass "New password:";
  310.     die "They don't match, sorry.\n" unless getpass("Re-type new password:") eq $value;
  311.     $crypted_pwd = cryptpw $value;
  312.     dbmc->add;
  313. }
  314.  
  315. sub dbmc::delete {
  316.     die "Sorry, user `$key' doesn't exist!\n" unless $DB{$key};
  317.     delete $DB{$key}, print "`$key' deleted\n";
  318. }
  319.  
  320. sub dbmc::view {
  321.     print $key ? "$key:$DB{$key}\n" : map { "$_:$DB{$_}\n" if $DB{$_} } keys %DB;
  322. }
  323.  
  324. sub dbmc::check {
  325.     die "Sorry, user `$key' doesn't exist!\n" unless $DB{$key};
  326.     my $chkpass = (split /:/, $DB{$key}, 3)[0];
  327.     my $testpass = getpass();
  328.     if (substr($chkpass, 0, 6) eq '$apr1$') {
  329.         need_md5_crypt;
  330.         $crypt_method = "md5";
  331.     } elsif (substr($chkpass, 0, 5) eq '{SHA}') {
  332.         need_sha1_crypt;
  333.         $crypt_method = "sha1";
  334.     } elsif (length($chkpass) == 13 && $chkpass ne $testpass) {
  335.         $crypt_method = "crypt";
  336.     } else {
  337.         $crypt_method = "plain";
  338.     }
  339.     print $crypt_method . (cryptpw($testpass, $chkpass) eq $chkpass 
  340.                            ? " password ok\n" : " password mismatch\n");
  341. }
  342.  
  343. sub dbmc::import {
  344.     while(defined($_ = <STDIN>) and chomp) {
  345.     ($key,$crypted_pwd,$groups,$comment) = split /:/, $_, 4;
  346.     dbmc->add;
  347.     }
  348. }
  349.  
  350.