/usr/bin/make_growfs is in coop-computing-tools 4.0-1ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 | #!/usr/bin/perl -w
# make_growfs
#
# This script simply traverses a directory structure and
# creates a file named .growfsdir that lists all the files
# in the directory structure recursively.
# The Parrot growfs module uses this information in order to
# make a web server look like a filesystem.
#
# Example use:
# make_growfs /home/fred/www
# parrot_run tcsh
# cd /growfs/my.web.server/~fred
# ls -la
use Fcntl ":mode";
$verbose_mode = 0;
$verbose_changes = 1;
$follow_mode = "a";
$checksum_mode = 1;
$total_dirs = 0;
$total_files = 0;
$total_links = 0;
$total_checksums = 0;
$name = 0;
$GROW_EPOCH = 1199163600;
sub load_cache
{
my $dirpath = shift;
my $type;
my $name;
my $mode;
my $size;
my $mtime;
my $checksum;
while(<DIRFILE>) {
($type,$name,$mode,$size,$mtime,$checksum) = split;
if($type eq "D") {
load_cache("$dirpath/$name");
} elsif($type eq "E") {
return;
} else {
$mtime_cache{"$dirpath/$name"} = "$mtime";
$size_cache{"$dirpath/$name"} = "$size";
$checksum_cache{"$dirpath/$name"} = "$checksum";
}
return if(!defined DIRFILE);
}
}
sub reorder_stat
{
my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,$blksize,$blocks) = @_;
return ($mode,$size,$mtime-$GROW_EPOCH);
}
sub listdir
{
my $dirname = shift;
my $dir;
my $d;
my $subdirname;
opendir $dir, $dirname or die "make_growfs: couldn't open $dirname\n";
while( $d = readdir($dir) ) {
if( $d =~ ".growfs.*") {
next;
}
if( $d eq "." || $d eq ".." ) {
next;
}
$subdirname = "$dirname/$d";
print "$subdirname\n" if($verbose_mode);
if($follow_mode eq "y") {
# if we are following symbolic links, then
# stat the item the link points to.
@info = stat $subdirname;
# but if that fails, it could be a broken link,
# so try to get that instead.
if(!@info) {
@info = lstat $subdirname;
if(@info) {
print STDERR "make_growfs: broken symbolic link $subdirname\n";
}
}
} else {
# if we are not following symbolic links,
# then look at the link itself and report that
@info = lstat $subdirname;
}
retry_link:
if(!@info) {
print STDERR "make_growfs: couldn't access $subdirname\n";
next;
}
@info = reorder_stat @info;
if( S_ISLNK($info[0]) ) {
$linkname = readlink "$subdirname";
if(substr($linkname,0,1) eq "/") {
$toplength = length $topdir;
if(substr($linkname,0,$toplength) eq $topdir) {
$linkname = substr($linkname,$toplength);
if(substr($linkname,0,1) ne "/") {
$linkname = "/" . $linkname;
}
} else {
if( $follow_mode eq "a" ) {
print STDERR "make_growfs: following link $subdirname to $linkname\n";
@info = stat $subdirname;
goto retry_link;
} else {
print STDERR "make_growfs: symbolic link $subdirname points to $linkname outside the root $topdir\n";
}
}
}
print DIRFILE "L $d\t@info 0 $linkname\n";
$total_links++;
} elsif( S_ISDIR($info[0]) ) {
print DIRFILE "D $d\t@info 0\n";
listdir($subdirname);
print DIRFILE "E\n";
$total_dirs++;
} else {
if($checksum_mode) {
$mtime = $mtime_cache{$subdirname};
$size = $size_cache{$subdirname};
if(defined $mtime && $mtime==$info[2] && defined $size && $size==$info[1]) {
$checksum = $checksum_cache{$subdirname};
} else {
($checksum,$name) = split " ", `sha1sum \"$subdirname\"`;
$total_checksums++;
print "$subdirname changed: $checksum\n" if($verbose_mode || $verbose_changes);
}
} else {
$checksum = 0;
}
print DIRFILE "F $d\t@info $checksum\n";
$total_files++;
}
}
closedir $dir;
}
sub show_help
{
print "Use: $0 [options] <directory>
Where options are:
-v Give verbose messages.
-K Create checksums for files. (default)
-k Disable checksums for files.
-f Follow all symbolic links.
-F Do not follow any symbolic links.
-a Only follow links that fall outside the root. (default)
-h Show this help file.
";
}
while( defined $ARGV[0] ) {
$arg = $ARGV[0];
if( $arg eq "-f" ) {
$follow_mode = "y";
} elsif( $arg eq "-F" ) {
$follow_mode = "n";
} elsif( $arg eq "-a" ) {
$follow_mode = "a";
} elsif( $arg eq "-v" ) {
$verbose_mode = 1;
} elsif( $arg eq "-c" ) {
$verbose_changes = 1;
} elsif( $arg eq "-k" ) {
$checksum_mode = 0;
} elsif( $arg eq "-K" ) {
$checksum_mode = 1;
} elsif( $arg eq "-h" ) {
show_help();
exit(0);
} elsif( $arg =~ "-.*" ) {
print "make_growfs: unknown argion: $arg (-h for help)\n";
exit(0);
} else {
$topdir = $arg;
}
shift @ARGV;
}
if(!defined $topdir) {
print "make_growfs: please give me a directory name (-h for help)\n";
exit(0);
}
$dirfile = "$topdir/.growfsdir";
print "make_growfs: loading existing directory from $dirfile\n";
if(open DIRFILE, "$topdir/.growfsdir") {
<DIRFILE>;
load_cache($topdir);
close(DIRFILE);
} else {
print "make_growfs: no directory exists, this might be quite slow...\n";
}
print "make_growfs: scanning directory tree for changes...\n";
open DIRFILE, ">$topdir/.growfsdirtmp" or die "make_growfs: cannot write to directory file $topdir/.growfsdirtmp\n";
@info = reorder_stat stat $topdir;
print DIRFILE "D root\t@info 0\n";
listdir "$topdir";
print DIRFILE "E\n";
close DIRFILE;
rename "$topdir/.growfsdirtmp", "$topdir/.growfsdir";
system "sha1sum < $topdir/.growfsdir > $topdir/.growfschecksum";
printf "make_growfs: $total_files files, $total_links links, $total_dirs dirs, $total_checksums checksums computed\n";
exit 0;
|