]> andersk Git - moira.git/blob - incremental/afs_create.pl
d453a5f1bbaf24b6df4f0131caee06f8cd32a413
[moira.git] / incremental / afs_create.pl
1 #!/usr/athena/bin/perl
2 # Usage: afs_create locker type cell path quota user group
3
4 require "/moira/bin/afs_utils.pl";
5
6 $protodir="/moira/dotfiles";
7 $quota=1;
8
9 %proc =
10     ("ATHENA.MIT.EDU", 'athena_proc' );
11
12 umask(0);
13
14 die "Usage: $0 locker type cell path user group\n" if (@ARGV != 6);
15 ($locker,$type,$cell,$path,$user,$group) = @ARGV;
16
17 # Lookup volume type
18 ($c = $cell) =~ s/\./_/g;
19 $vtype = eval "\$vtypes_$c{$type}";
20 die "Cannot create $type volumes in $cell\n" unless $vtype;
21 $vname = $vtype . "." . $locker;
22 $vname =~ s/[^-A-Za-z0-9_.]//g;         # strip out illegal characters
23
24 # Find free space/Create volume
25 $tries = 0; $code = 1;
26 while ($tries<3 && $code) {
27     ($asrv,$apart) = &afs_find($cell,$type,$quota,@except);
28     die "Unable to find space to create $vname in $cell\n" unless ($asrv&&$apart);
29     $code = system("$vos create $asrv $apart $vname -cell $cell >/dev/null");
30     push(@except, $asrv);
31     $tries++;
32 }
33 &fatal("Unable to create $vname in $cell") if ($code); # Too many create errors
34 push(@clean, "$vos remove $asrv $apart $vname -cell $cell >/dev/null");
35
36 # Create mountpoint and set quota
37 $path =~ s:^/afs/([^.]):/afs/.\1:;
38 system("$fs checkv >/dev/null; $fs mkm $path $vname");
39 &fatal("Unable to create $path") if ($?);
40 push(@clean, "$fs rmm $path");
41
42 # Obtain user/group information (uid >= 0, gid <= 0)
43 $uid = $gid = 0;
44 open(PTS, "$pts ex $user -cell $cell|");
45 chop($_ = <PTS>);
46 close(PTS);
47 ($uid,$uid,$uid,$uid) = split(/[:,] /, $_) unless ($?);
48
49 open(PTS, "$pts ex system:$group -cell $cell|");
50 chop($_ = <PTS>);
51 close(PTS);
52 ($gid,$gid,$gid,$gid) = split(/[:,] /, $_) unless ($?);
53
54 # Dispatch to the cell-specific creation routines
55 eval "&$proc{$cell}";
56 &fatal($@) if ($@);
57
58 # Set the filesystem quota
59 system("$fs sq $path $quota");
60 &fatal("Unable to set the quota on $path") if ($?);
61
62 # Release the parent volume
63 ($p = $path) =~ s:/[^/]+$::;
64 open(FS, "$fs lv $p|") || &fatal("Can't get information about $p");
65 chop($_ = <FS>);
66 close(FS);
67 &fatal("Can't get information about $p") if ($?);
68 @tmp = (split(/ /,$_));
69 if ($tmp[$#tmp] !~ /user\../) {
70     system("$vos release $tmp[$#tmp] -cell $cell >/dev/null") &&
71         &fatal("Can't release $tmp[$#tmp] in cell $cell");
72 }
73
74 &afs_quota_adj($cell,$asrv,$apart,$quota);
75 exit(0);
76
77 sub fatal
78 {
79     local($cmd);
80     $_ = join(' ',@_);
81     s/\n$//;
82
83     while (@clean) {
84         $cmd = pop(@clean);
85         warn "$locker: Cleanup failed: $cmd\n" if (system("$cmd"));
86     }
87     die "$locker: $_\n";
88 }
89
90 # Cell specific procedures
91 sub athena_proc
92 {
93     # Default acls:
94     #
95     # ACTIVITY  <user> all <group> all system:anyuser rl
96     # APROJ     <user> all <group> all system:anyuser rl
97     # AREF      <user> all <group> rl
98     # CONTRIB   <user> all system:anyuser rl
99     # COURSE    <user> all <group> all system:facdev all system:authuser rl
100     # HOMEDIR   <user> all
101     # LEASE     <user> all
102     # ORG       <user> all <group> all system:cwisfac all
103     # PROJECT   <user> all <group> all
104     # REF       <user> all system:anyuser rl
105     # SW        <user> all system:swmaint all system:authuser rl
106     # SYSTEM    system:administrators all system:anyuser rl
107     # UROP      <user> all <group> all system:facdev all system:authuser rl
108     #
109     # Notes:
110     # 1. All directories also have "system:expunge ld".
111
112     @acl=("system:expunge ld");
113     push(@acl,"system:facdev all") if ($type =~ /^(COURSE|UROP)/);
114     push(@acl,"system:swmaint all") if ($type =~ /^(SW)/);
115     push(@acl,"system:cwisfac all") if ($type =~ /^(ORG)/);
116     push(@acl,"system:administrators all") if ($type =~ /^(SYSTEM)/);
117     push(@acl,"$user all")
118         if ($uid != 0 && $type =~ /^(ACTIVITY|APROJ|AREF|CONTRIB|COURSE|HOMEDIR|LEASE|ORG|PROJECT|REF|SW|UROP)/);
119     push(@acl,"system:$group all")
120         if ($gid != 0 && $type =~ /^(ACTIVITY|APROJ|COURSE|ORG|PROJECT|UROP)/);
121     push(@acl,"system:$group rl") if ($gid != 0 && $type =~ /^(AREF)/);
122     push(@acl,"system:authuser rl")
123         if ($type =~ /^(COURSE|SW|UROP)/);
124     push(@acl,"system:anyuser rl")
125         if ($type =~ /^(ACTIVITY|APROJ|CONTRIB|REF|SYSTEM)/);
126
127     if ($type !~ /^(AREF|SYSTEM)/) {
128         system("$fs mkm $path/OldFiles $vname.backup");
129         warn "$locker: Unable to create OldFiles mountpoint\n" if ($?);
130     }
131
132     if ($type =~ /ACTIVITY|APROJ|PROJECT/) {
133         chown($gid,0,$path) ||
134             die "Unable to set volume ownership\n";
135     } elsif ($type =~ /HOMEDIR|UROP/) {
136         chown($uid,0,$path) ||
137             die "Unable to set volume ownership\n";
138     }
139
140     if ($type eq "ORG") {
141         mkdir("$path/www",0755) || die "Unable to create subdirectories\n";
142         system("$fs sa $path @acl system:anyuser rl -clear") &&
143             die "Unable to set acl on www directory\n";
144
145         system("$fs sa $path @acl system:anyuser l -clear") &&
146             die "Unable to set acl on top-level directory\n";
147     }
148
149     if ($type eq "HOMEDIR") {
150         die "Unable to get uid for user\n" unless ($uid);
151
152         mkdir("$path/Public",0755) && chown($uid,0,"$path/Public") &&
153             mkdir("$path/Private",0700) && mkdir("$path/Mail", 0700) &&
154                 chown($uid,0,"$path/Public","$path/Private","$path/Mail") ||
155                     die "Unable to create subdirectories\n";
156         system("$fs sa $path/Public @acl system:anyuser rl -clear") &&
157             die "Unable to set acl on Public directory";
158         system("$fs sa -dir $path/Private $path/Mail -acl @acl -clear") &&
159             die "Unable to set acl on Private and/or Mail directories\n";
160
161         opendir(DIR,$protodir) || die "Unable to open prototype directory\n";
162         @files=readdir(DIR);
163         closedir(DIR);
164
165         for $i (@files) {
166             next if ($i eq "." || $i eq "..");
167             next unless -f "$protodir/$i";
168             open(IN,"<$protodir/$i") || die "Unable to open $protodir/$i\n";
169             open(OUT,">$path/$i") || die "Unable to create $i\n";
170             while ($_=<IN>) { print OUT $_; };
171             close(OUT);
172             close(IN);
173             chown($uid,0,"$path/$i");
174         }
175         system("$fs sa $path @acl system:anyuser l -clear") &&
176             die "Unable to set acl on top-level directory\n";
177         return;
178     }
179
180     system("$fs sa $path @acl -clear") &&
181         die "Unable to set acl of $path\n";
182 }
This page took 0.684126 seconds and 3 git commands to generate.