]> andersk Git - moira.git/blob - incremental/afs/afs_create.pl
For volumes that have OldFiles mountpoints, clone the volume at creation time.
[moira.git] / incremental / afs / 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 # Update the quota records.
75 &afs_quota_adj($cell,$asrv,$apart,$quota,0);
76 exit(0);
77
78 sub fatal
79 {
80     local($cmd);
81     $_ = join(' ',@_);
82     s/\n$//;
83
84     while (@clean) {
85         $cmd = pop(@clean);
86         warn "$locker: Cleanup failed: $cmd\n" if (system("$cmd"));
87     }
88     die "$locker: $_\n";
89 }
90
91 # Cell specific procedures
92 sub athena_proc
93 {
94     # Default acls:
95     #
96     # ACTIVITY  <user> all <group> all system:anyuser rl
97     # APROJ     <user> all <group> all system:anyuser rl
98     # AREF      <user> all <group> rl
99     # CONTRIB   <user> all system:anyuser rl
100     # COURSE    <user> all <group> all system:facdev all system:authuser rl
101     # HOMEDIR   <user> all
102     # LEASE     <user> all
103     # ORG       <user> all <group> all system:cwisfac all system:anyuser rl
104     # PROJECT   <user> all <group> all
105     # REF       <user> all system:anyuser rl
106     # SW        <user> all system:swmaint all system:authuser rl
107     # SYSTEM    system:administrators all system:anyuser rl
108     # UROP      <user> all <group> all system:facdev all system:authuser rl
109     #
110     # Notes:
111     # 1. All directories also have "system:expunge ld".
112
113     @acl=("system:expunge ld");
114     push(@acl,"system:facdev all") if ($type =~ /^(COURSE|UROP)/);
115     push(@acl,"system:swmaint all") if ($type =~ /^(SW)/);
116     push(@acl,"system:cwisfac all") if ($type =~ /^(ORG)/);
117     push(@acl,"system:administrators all") if ($type =~ /^(SYSTEM)/);
118     push(@acl,"$user all")
119         if ($uid != 0 && $type =~ /^(ACTIVITY|APROJ|AREF|CONTRIB|COURSE|HOMEDIR|LEASE|ORG|PROJECT|REF|SW|UROP)/);
120     push(@acl,"system:$group all")
121         if ($gid != 0 && $type =~ /^(ACTIVITY|APROJ|COURSE|ORG|PROJECT|UROP)/);
122     push(@acl,"system:$group rl") if ($gid != 0 && $type =~ /^(AREF)/);
123     push(@acl,"system:authuser rl")
124         if ($type =~ /^(COURSE|SW|UROP)/);
125     push(@acl,"system:anyuser rl")
126         if ($type =~ /^(ACTIVITY|APROJ|CONTRIB|ORG|REF|SYSTEM)/);
127
128     if ($type !~ /^(AREF|ORG|SYSTEM)/) {
129         system("$vos backup $vname >/dev/null");
130         system("$fs mkm $path/OldFiles $vname.backup");
131         warn "$locker: Unable to create OldFiles mountpoint\n" if ($?);
132     }
133
134     if ($type =~ /ACTIVITY|APROJ|PROJECT/) {
135         system("/moira/bin/uchown $path $gid");
136         die "Unable to set volume ownership\n" if ($?);
137     } elsif ($type =~ /HOMEDIR|UROP/) {
138         chown($uid,0,$path) ||
139             die "Unable to set volume ownership\n";
140     }
141
142     if ($type eq "COURSE") {
143         mkdir("$path/www",0755) &&
144             chown(0,0,"$path/www") ||
145                 die "Unable to create subdirectories\n";
146         system("$fs sa $path/www @acl system:anyuser rl -clear") &&
147             die "Unable to set acl on www directory\n";
148
149         system("$fs sa $path @acl system:anyuser l -clear") &&
150             die "Unable to set acl on top-level directory\n";
151         return;
152     }
153
154     if ($type eq "HOMEDIR") {
155         die "Unable to get uid for user\n" unless ($uid);
156
157         chmod(0755, $path);
158         mkdir("$path/Public",0755) && mkdir("$path/www",0755) &&
159             mkdir("$path/Private",0700) && mkdir("$path/Mail", 0700) &&
160                 chown($uid,0,"$path/Public","$path/www",
161                       "$path/Private","$path/Mail") ||
162                           die "Unable to create subdirectories\n";
163         system("$fs sa -dir $path/Public $path/www -acl @acl system:anyuser rl -clear") &&
164             die "Unable to set acl on Public directory";
165         system("$fs sa -dir $path/Private $path/Mail -acl @acl -clear") &&
166             die "Unable to set acl on Private and/or Mail directories\n";
167
168         opendir(DIR,$protodir) || die "Unable to open prototype directory\n";
169         @files=readdir(DIR);
170         closedir(DIR);
171
172         for $i (@files) {
173             next if ($i eq "." || $i eq "..");
174             next unless -f "$protodir/$i";
175             open(IN,"<$protodir/$i") || die "Unable to open $protodir/$i\n";
176             open(OUT,">$path/$i") || die "Unable to create $i\n";
177             while ($_=<IN>) { print OUT $_; };
178             close(OUT);
179             close(IN);
180             chown($uid,0,"$path/$i");
181         }
182         system("$fs sa $path @acl system:anyuser l -clear") &&
183             die "Unable to set acl on top-level directory\n";
184         return;
185     }
186
187     system("$fs sa $path @acl -clear") &&
188         die "Unable to set acl of $path\n";
189 }
This page took 0.362761 seconds and 5 git commands to generate.