home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / cvs-1.8.7-src.tgz / tar.out / fsf / cvs / contrib / cvs_acls.pl < prev    next >
Perl Script  |  1996-09-28  |  5KB  |  144 lines

  1. #! xPERL_PATHx
  2. # -*-Perl-*-
  3. #
  4. # $Id: cvs_acls.pl,v 1.2 1995/07/10 02:01:33 kfogel Exp $
  5. #
  6. # Access control lists for CVS.  dgg@ksr.com (David G. Grubbs)
  7. #
  8. # CVS "commitinfo" for matching repository names, running the program it finds
  9. # on the same line.  More information is available in the CVS man pages.
  10. #
  11. # ==== INSTALLATION:
  12. #
  13. # To use this program as I intended, do the following four things:
  14. #
  15. # 0. Install PERL.  :-)
  16. #
  17. # 1. Put one line, as the *only* non-comment line, in your commitinfo file:
  18. #
  19. #    DEFAULT        /usr/local/bin/cvs_acls
  20. #
  21. # 2. Install this file as /usr/local/bin/cvs_acls and make it executable.
  22. #
  23. # 3. Create a file named $CVSROOT/CVSROOT/avail.
  24. #
  25. # ==== FORMAT OF THE avail FILE:
  26. #
  27. # The avail file determines whether you may commit files.  It contains lines
  28. # read from top to bottom, keeping track of a single "bit".  The "bit"
  29. # defaults to "on".  It can be turned "off" by "unavail" lines and "on" by
  30. # "avail" lines.  ==> Last one counts.
  31. #
  32. # Any line not beginning with "avail" or "unavail" is ignored.
  33. #
  34. # Lines beginning with "avail" or "unavail" are assumed to be '|'-separated
  35. # triples: (All spaces and tabs are ignored in a line.)
  36. #
  37. #   {avail.*,unavail.*} [| user,user,... [| repos,repos,...]]
  38. #
  39. #    1. String starting with "avail" or "unavail".
  40. #    2. Optional, comma-separated list of usernames.
  41. #    3. Optional, comma-separated list of repository pathnames.
  42. #    These are pathnames relative to $CVSROOT.  They can be directories or
  43. #    filenames.  A directory name allows access to all files and
  44. #    directories below it.
  45. #
  46. # Example:  (Text from the ';;' rightward may not appear in the file.)
  47. #
  48. #    unavail            ;; Make whole repository unavailable.
  49. #    avail|dgg        ;; Except for user "dgg".
  50. #    avail|fred, john|bin/ls    ;; Except when "fred" or "john" commit to
  51. #                ;; the module whose repository is "bin/ls"
  52. #
  53. # PROGRAM LOGIC:
  54. #
  55. #    CVS passes to @ARGV an absolute directory pathname (the repository
  56. #    appended to your $CVSROOT variable), followed by a list of filenames
  57. #    within that directory.
  58. #
  59. #    We walk through the avail file looking for a line that matches both
  60. #    the username and repository.
  61. #
  62. #    A username match is simply the user's name appearing in the second
  63. #    column of the avail line in a space-or-comma separate list.
  64. #
  65. #    A repository match is either:
  66. #        - One element of the third column matches $ARGV[0], or some
  67. #          parent directory of $ARGV[0].
  68. #        - Otherwise *all* file arguments ($ARGV[1..$#ARGV]) must be
  69. #          in the file list in one avail line.
  70. #        - In other words, using directory names in the third column of
  71. #          the avail file allows committing of any file (or group of
  72. #          files in a single commit) in the tree below that directory.
  73. #        - If individual file names are used in the third column of
  74. #          the avail file, then files must be committed individually or
  75. #          all files specified in a single commit must all appear in
  76. #          third column of a single avail line.
  77. #
  78.  
  79. $debug = 0;
  80. $cvsroot = $ENV{'CVSROOT'};
  81. $availfile = $cvsroot . "/CVSROOT/avail";
  82. $myname = $ENV{"USER"} if !($myname = $ENV{"LOGNAME"});
  83.  
  84. eval "print STDERR \$die='Unknown parameter $1\n' if !defined \$$1; \$$1=\$';"
  85.     while ($ARGV[0] =~ /^(\w+)=/ && shift(@ARGV));
  86. exit 255 if $die;        # process any variable=value switches
  87.  
  88. die "Must set CVSROOT\n" if !$cvsroot;
  89. ($repos = shift) =~ s:^$cvsroot/::;
  90. grep($_ = $repos . '/' . $_, @ARGV);
  91.  
  92. print "$$ Repos: $repos\n","$$ ==== ",join("\n$$ ==== ",@ARGV),"\n" if $debug;
  93.  
  94. $exit_val = 0;                # Good Exit value
  95.  
  96. $universal_off = 0;
  97. open (AVAIL, $availfile) || exit(0);    # It is ok for avail file not to exist
  98. while (<AVAIL>) {
  99.     chop;
  100.     next if /^\s*\#/;
  101.     next if /^\s*$/;
  102.     ($flagstr, $u, $m) = split(/[\s,]*\|[\s,]*/, $_);
  103.  
  104.     # Skip anything not starting with "avail" or "unavail" and complain.
  105.     (print "Bad avail line: $_\n"), next
  106.     if ($flagstr !~ /^avail/ && $flagstr !~ /^unavail/);
  107.  
  108.     # Set which bit we are playing with. ('0' is OK == Available).
  109.     $flag = (($& eq "avail") ? 0 : 1);
  110.  
  111.     # If we find a "universal off" flag (i.e. a simple "unavail") remember it
  112.     $universal_off = 1 if ($flag && !$u && !$m);
  113.  
  114.     # $myname considered "in user list" if actually in list or is NULL
  115.     $in_user = (!$u || grep ($_ eq $myname, split(/[\s,]+/,$u)));
  116.     print "$$ \$myname($myname) in user list: $_\n" if $debug && $in_user;
  117.  
  118.     # Module matches if it is a NULL module list in the avail line.  If module
  119.     # list is not null, we check every argument combination.
  120.     if (!($in_repo = !$m)) {
  121.     @tmp = split(/[\s,]+/,$m);
  122.     for $j (@tmp) {
  123.         # If the repos from avail is a parent(or equal) dir of $repos, OK
  124.         $in_repo = 1, last if ($repos eq $j || $repos =~ /^$j\//);
  125.     }
  126.     if (!$in_repo) {
  127.         $in_repo = 1;
  128.         for $j (@ARGV) {
  129.         last if !($in_repo = grep ($_ eq $j, @tmp));
  130.         }
  131.     }
  132.     }
  133.     print "$$ \$repos($repos) in repository list: $_\n" if $debug && $in_repo;
  134.  
  135.     $exit_val = $flag if ($in_user && $in_repo);
  136.     print "$$ ==== \$exit_val = $exit_val\n$$ ==== \$flag = $flag\n" if $debug;
  137. }
  138. close(AVAIL);
  139. print "$$ ==== \$exit_val = $exit_val\n" if $debug;
  140. print "**** Access denied: Insufficient Karma ($myname|$repos)\n" if $exit_val;
  141. print "**** Access allowed: Personal Karma exceeds Environmental Karma.\n"
  142.     if $universal_off && !$exit_val;
  143. exit($exit_val);
  144.