diff options
author | David Landgren <david@landgren.net> | 2007-10-24 17:11:29 +0200 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-10-24 13:43:17 +0000 |
commit | cac619e8dc9ea79f2f5d2d8066cf85d9d2c7ef02 (patch) | |
tree | 5fe8737c39171c50d943d2517b60e2f1098f2ed0 /lib/File | |
parent | adfdc6a8eae049d641e732f3b68e2443d86b1aef (diff) | |
download | perl-cac619e8dc9ea79f2f5d2d8066cf85d9d2c7ef02.tar.gz |
File::Path 2.02
Message-ID: <471F4481.6010103@landgren.net>
p4raw-id: //depot/perl@32186
Diffstat (limited to 'lib/File')
-rw-r--r-- | lib/File/Path.pm | 765 |
1 files changed, 383 insertions, 382 deletions
diff --git a/lib/File/Path.pm b/lib/File/Path.pm index 156e743b1c..13918e22cc 100644 --- a/lib/File/Path.pm +++ b/lib/File/Path.pm @@ -1,13 +1,393 @@ package File::Path; +use 5.005_04; +use strict; + +use Cwd 'getcwd'; +use File::Basename (); +use File::Spec (); + +BEGIN { + if ($] < 5.006) { + # can't say 'opendir my $dh, $dirname' + # need to initialise $dh + eval "use Symbol"; + } +} + +use Exporter (); +use vars qw($VERSION @ISA @EXPORT); +$VERSION = '2.02'; +@ISA = qw(Exporter); +@EXPORT = qw(mkpath rmtree); + +my $Is_VMS = $^O eq 'VMS'; +my $Is_MacOS = $^O eq 'MacOS'; + +# These OSes complain if you want to remove a file that you have no +# write permission to: +my $Force_Writeable = ($^O eq 'os2' || $^O eq 'dos' || $^O eq 'MSWin32' || + $^O eq 'amigaos' || $^O eq 'MacOS' || $^O eq 'epoc'); + +sub _carp { + require Carp; + goto &Carp::carp; +} + +sub _croak { + require Carp; + goto &Carp::croak; +} + +sub _error { + my $arg = shift; + my $message = shift; + my $object = shift; + + if ($arg->{error}) { + $object = '' unless defined $object; + push @{${$arg->{error}}}, {$object => "$message: $!"}; + } + else { + _carp(defined($object) ? "$message for $object: $!" : "$message: $!"); + } +} + +sub mkpath { + my $old_style = ( + UNIVERSAL::isa($_[0],'ARRAY') + or (@_ == 2 and (defined $_[1] ? $_[1] =~ /\A\d+\z/ : 1)) + or (@_ == 3 + and (defined $_[1] ? $_[1] =~ /\A\d+\z/ : 1) + and (defined $_[2] ? $_[2] =~ /\A\d+\z/ : 1) + ) + ) ? 1 : 0; + + my $arg; + my $paths; + + if ($old_style) { + my ($verbose, $mode); + ($paths, $verbose, $mode) = @_; + $paths = [$paths] unless UNIVERSAL::isa($paths,'ARRAY'); + $arg->{verbose} = defined $verbose ? $verbose : 0; + $arg->{mode} = defined $mode ? $mode : 0777; + } + else { + if (@_ > 0 and UNIVERSAL::isa($_[-1], 'HASH')) { + $arg = pop @_; + exists $arg->{mask} and $arg->{mode} = delete $arg->{mask}; + $arg->{mode} = 0777 unless exists $arg->{mode}; + ${$arg->{error}} = [] if exists $arg->{error}; + } + else { + @{$arg}{qw(verbose mode)} = (0, 0777); + } + $paths = [@_]; + } + return _mkpath($arg, $paths); +} + +sub _mkpath { + my $arg = shift; + my $paths = shift; + + local($")=$Is_MacOS ? ":" : "/"; + my(@created,$path); + foreach $path (@$paths) { + next unless length($path); + $path .= '/' if $^O eq 'os2' and $path =~ /^\w:\z/s; # feature of CRT + # Logic wants Unix paths, so go with the flow. + if ($Is_VMS) { + next if $path eq '/'; + $path = VMS::Filespec::unixify($path); + } + next if -d $path; + my $parent = File::Basename::dirname($path); + unless (-d $parent or $path eq $parent) { + push(@created,_mkpath($arg, [$parent])); + } + print "mkdir $path\n" if $arg->{verbose}; + if (mkdir($path,$arg->{mode})) { + push(@created, $path); + } + else { + my $save_bang = $!; + my ($e, $e1) = ($save_bang, $^E); + $e .= "; $e1" if $e ne $e1; + # allow for another process to have created it meanwhile + if (!-d $path) { + $! = $save_bang; + if ($arg->{error}) { + push @{${$arg->{error}}}, {$path => $e}; + } + else { + _croak("mkdir $path: $e"); + } + } + } + } + return @created; +} + +sub rmtree { + my $old_style = ( + UNIVERSAL::isa($_[0],'ARRAY') + or (@_ == 2 and (defined $_[1] ? $_[1] =~ /\A\d+\z/ : 1)) + or (@_ == 3 + and (defined $_[1] ? $_[1] =~ /\A\d+\z/ : 1) + and (defined $_[2] ? $_[2] =~ /\A\d+\z/ : 1) + ) + ) ? 1 : 0; + + my $arg; + my $paths; + + if ($old_style) { + my ($verbose, $safe); + ($paths, $verbose, $safe) = @_; + $arg->{verbose} = defined $verbose ? $verbose : 0; + $arg->{safe} = defined $safe ? $safe : 0; + + if (defined($paths) and length($paths)) { + $paths = [$paths] unless UNIVERSAL::isa($paths,'ARRAY'); + } + else { + _carp ("No root path(s) specified\n"); + return 0; + } + } + else { + if (@_ > 0 and UNIVERSAL::isa($_[-1],'HASH')) { + $arg = pop @_; + ${$arg->{error}} = [] if exists $arg->{error}; + ${$arg->{result}} = [] if exists $arg->{result}; + } + else { + @{$arg}{qw(verbose safe)} = (0, 0); + } + $paths = [@_]; + } + + $arg->{prefix} = ''; + $arg->{depth} = 0; + + $arg->{cwd} = getcwd() or do { + _error($arg, "cannot fetch initial working directory"); + return 0; + }; + for ($arg->{cwd}) { /\A(.*)\Z/; $_ = $1 } # untaint + + @{$arg}{qw(device inode)} = (stat $arg->{cwd})[0,1] or do { + _error($arg, "cannot stat initial working directory", $arg->{cwd}); + return 0; + }; + + return _rmtree($arg, $paths); +} + +sub _rmtree { + my $arg = shift; + my $paths = shift; + + my $count = 0; + my $curdir = File::Spec->curdir(); + my $updir = File::Spec->updir(); + + my (@files, $root); + ROOT_DIR: + foreach $root (@$paths) { + if ($Is_MacOS) { + $root = ":$root" unless $root =~ /:/; + $root .= ":" unless $root =~ /:\z/; + } + else { + $root =~ s{/\z}{}; + } + + # since we chdir into each directory, it may not be obvious + # to figure out where we are if we generate a message about + # a file name. We therefore construct a semi-canonical + # filename, anchored from the directory being unlinked (as + # opposed to being truly canonical, anchored from the root (/). + + my $canon = $arg->{prefix} + ? File::Spec->catfile($arg->{prefix}, $root) + : $root + ; + + my ($ldev, $lino, $perm) = (lstat $root)[0,1,2] or next ROOT_DIR; + + if ( -d _ ) { + $root = VMS::Filespec::pathify($root) if $Is_VMS; + if (!chdir($root)) { + # see if we can escalate privileges to get in + # (e.g. funny protection mask such as -w- instead of rwx) + $perm &= 07777; + my $nperm = $perm | 0700; + if (!($arg->{safe} or $nperm == $perm or chmod($nperm, $root))) { + _error($arg, "cannot make child directory read-write-exec", $canon); + next ROOT_DIR; + } + elsif (!chdir($root)) { + _error($arg, "cannot chdir to child", $canon); + next ROOT_DIR; + } + } + + my ($device, $inode, $perm) = (stat $curdir)[0,1,2] or do { + _error($arg, "cannot stat current working directory", $canon); + next ROOT_DIR; + }; + + ($ldev eq $device and $lino eq $inode) + or _croak("directory $canon changed before chdir, expected dev=$ldev inode=$lino, actual dev=$device ino=$inode, aborting."); + + $perm &= 07777; # don't forget setuid, setgid, sticky bits + my $nperm = $perm | 0700; + + # notabene: 0700 is for making readable in the first place, + # it's also intended to change it to writable in case we have + # to recurse in which case we are better than rm -rf for + # subtrees with strange permissions + + if (!($arg->{safe} or $nperm == $perm or chmod($nperm, $curdir))) { + _error($arg, "cannot make directory read+writeable", $canon); + $nperm = $perm; + } + + my $d; + $d = gensym() if $] < 5.006; + if (!opendir $d, $curdir) { + _error($arg, "cannot opendir", $canon); + @files = (); + } + else { + no strict 'refs'; + if (!defined ${"\cTAINT"} or ${"\cTAINT"}) { + # Blindly untaint dir names if taint mode is + # active, or any perl < 5.006 + @files = map { /\A(.*)\z/s; $1 } readdir $d; + } + else { + @files = readdir $d; + } + closedir $d; + } + + if ($Is_VMS) { + # Deleting large numbers of files from VMS Files-11 + # filesystems is faster if done in reverse ASCIIbetical order. + # include '.' to '.;' from blead patch #31775 + @files = map {$_ eq '.' ? '.;' : $_} reverse @files; + ($root = VMS::Filespec::unixify($root)) =~ s/\.dir\z//; + } + @files = grep {$_ ne $updir and $_ ne $curdir} @files; + + if (@files) { + # remove the contained files before the directory itself + my $narg = {%$arg}; + @{$narg}{qw(device inode cwd prefix depth)} + = ($device, $inode, $updir, $canon, $arg->{depth}+1); + $count += _rmtree($narg, \@files); + } + + # restore directory permissions of required now (in case the rmdir + # below fails), while we are still in the directory and may do so + # without a race via '.' + if ($nperm != $perm and not chmod($perm, $curdir)) { + _error($arg, "cannot reset chmod", $canon); + } + + # don't leave the client code in an unexpected directory + chdir($arg->{cwd}) + or _croak("cannot chdir to $arg->{cwd} from $canon: $!, aborting."); + + # ensure that a chdir upwards didn't take us somewhere other + # than we expected (see CVE-2002-0435) + ($device, $inode) = (stat $curdir)[0,1] + or _croak("cannot stat prior working directory $arg->{cwd}: $!, aborting."); + + ($arg->{device} eq $device and $arg->{inode} eq $inode) + or _croak("previous directory $arg->{cwd} changed before entering $canon, expected dev=$ldev inode=$lino, actual dev=$device ino=$inode, aborting."); + + if ($arg->{depth} or !$arg->{keep_root}) { + if ($arg->{safe} && + ($Is_VMS ? !&VMS::Filespec::candelete($root) : !-w $root)) { + print "skipped $root\n" if $arg->{verbose}; + next ROOT_DIR; + } + if (!chmod $perm | 0700, $root) { + if ($Force_Writeable) { + _error($arg, "cannot make directory writeable", $canon); + } + } + print "rmdir $root\n" if $arg->{verbose}; + if (rmdir $root) { + push @{${$arg->{result}}}, $root if $arg->{result}; + ++$count; + } + else { + _error($arg, "cannot remove directory", $canon); + if (!chmod($perm, ($Is_VMS ? VMS::Filespec::fileify($root) : $root)) + ) { + _error($arg, sprintf("cannot restore permissions to 0%o",$perm), $canon); + } + } + } + } + else { + # not a directory + + $root = VMS::Filespec::vmsify("./$root") + if $Is_VMS && !File::Spec->file_name_is_absolute($root); + + if ($arg->{safe} && + ($Is_VMS ? !&VMS::Filespec::candelete($root) + : !(-l $root || -w $root))) + { + print "skipped $root\n" if $arg->{verbose}; + next ROOT_DIR; + } + + my $nperm = $perm & 07777 | 0600; + if ($nperm != $perm and not chmod $nperm, $root) { + if ($Force_Writeable) { + _error($arg, "cannot make file writeable", $canon); + } + } + print "unlink $canon\n" if $arg->{verbose}; + # delete all versions under VMS + for (;;) { + if (unlink $root) { + push @{${$arg->{result}}}, $root if $arg->{result}; + } + else { + _error($arg, "cannot unlink file", $canon); + $Force_Writeable and chmod($perm, $root) or + _error($arg, sprintf("cannot restore permissions to 0%o",$perm), $canon); + last; + } + ++$count; + last unless $Is_VMS && lstat $root; + } + } + } + + return $count; +} + +1; +__END__ + =head1 NAME File::Path - Create or remove directory trees =head1 VERSION -This document describes version 2.01 of File::Path, released -2007-09-29. +This document describes version 2.02 of File::Path, released +2007-10-24. =head1 SYNOPSIS @@ -468,7 +848,7 @@ setting. (Permissions given in octal). =item * -L<Find::File::Rule> +L<File::Find::Rule> When removing directory trees, if you want to examine each file to decide whether to delete it (and possibly leaving large swathes @@ -507,382 +887,3 @@ This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut - -use 5.005_04; -use strict; - -use Cwd 'getcwd'; -use File::Basename (); -use File::Spec (); - -BEGIN { - if ($] < 5.006) { - # can't say 'opendir my $dh, $dirname' - # need to initialise $dh - eval "use Symbol"; - } -} - -use Exporter (); -use vars qw($VERSION @ISA @EXPORT); -$VERSION = '2.01'; -@ISA = qw(Exporter); -@EXPORT = qw(mkpath rmtree); - -my $Is_VMS = $^O eq 'VMS'; -my $Is_MacOS = $^O eq 'MacOS'; - -# These OSes complain if you want to remove a file that you have no -# write permission to: -my $Force_Writeable = ($^O eq 'os2' || $^O eq 'dos' || $^O eq 'MSWin32' || - $^O eq 'amigaos' || $^O eq 'MacOS' || $^O eq 'epoc'); - -sub _carp { - require Carp; - goto &Carp::carp; -} - -sub _croak { - require Carp; - goto &Carp::croak; -} - -sub _error { - my $arg = shift; - my $message = shift; - my $object = shift; - - if ($arg->{error}) { - $object = '' unless defined $object; - push @{${$arg->{error}}}, {$object => "$message: $!"}; - } - else { - _carp(defined($object) ? "$message for $object: $!" : "$message: $!"); - } -} - -sub mkpath { - my $old_style = ( - UNIVERSAL::isa($_[0],'ARRAY') - or (@_ == 2 and (defined $_[1] ? $_[1] =~ /\A\d+\z/ : 1)) - or (@_ == 3 - and (defined $_[1] ? $_[1] =~ /\A\d+\z/ : 1) - and (defined $_[2] ? $_[2] =~ /\A\d+\z/ : 1) - ) - ) ? 1 : 0; - - my $arg; - my $paths; - - if ($old_style) { - my ($verbose, $mode); - ($paths, $verbose, $mode) = @_; - $paths = [$paths] unless UNIVERSAL::isa($paths,'ARRAY'); - $arg->{verbose} = defined $verbose ? $verbose : 0; - $arg->{mode} = defined $mode ? $mode : 0777; - } - else { - if (@_ > 0 and UNIVERSAL::isa($_[-1], 'HASH')) { - $arg = pop @_; - exists $arg->{mask} and $arg->{mode} = delete $arg->{mask}; - $arg->{mode} = 0777 unless exists $arg->{mode}; - ${$arg->{error}} = [] if exists $arg->{error}; - } - else { - @{$arg}{qw(verbose mode)} = (0, 0777); - } - $paths = [@_]; - } - return _mkpath($arg, $paths); -} - -sub _mkpath { - my $arg = shift; - my $paths = shift; - - local($")=$Is_MacOS ? ":" : "/"; - my(@created,$path); - foreach $path (@$paths) { - next unless length($path); - $path .= '/' if $^O eq 'os2' and $path =~ /^\w:\z/s; # feature of CRT - # Logic wants Unix paths, so go with the flow. - if ($Is_VMS) { - next if $path eq '/'; - $path = VMS::Filespec::unixify($path); - } - next if -d $path; - my $parent = File::Basename::dirname($path); - unless (-d $parent or $path eq $parent) { - push(@created,_mkpath($arg, [$parent])); - } - print "mkdir $path\n" if $arg->{verbose}; - if (mkdir($path,$arg->{mode})) { - push(@created, $path); - } - else { - my $save_bang = $!; - my ($e, $e1) = ($save_bang, $^E); - $e .= "; $e1" if $e ne $e1; - # allow for another process to have created it meanwhile - if (!-d $path) { - $! = $save_bang; - if ($arg->{error}) { - push @{${$arg->{error}}}, {$path => $e}; - } - else { - _croak("mkdir $path: $e"); - } - } - } - } - return @created; -} - -sub rmtree { - my $old_style = ( - UNIVERSAL::isa($_[0],'ARRAY') - or (@_ == 2 and (defined $_[1] ? $_[1] =~ /\A\d+\z/ : 1)) - or (@_ == 3 - and (defined $_[1] ? $_[1] =~ /\A\d+\z/ : 1) - and (defined $_[2] ? $_[2] =~ /\A\d+\z/ : 1) - ) - ) ? 1 : 0; - - my $arg; - my $paths; - - if ($old_style) { - my ($verbose, $safe); - ($paths, $verbose, $safe) = @_; - $arg->{verbose} = defined $verbose ? $verbose : 0; - $arg->{safe} = defined $safe ? $safe : 0; - - if (defined($paths) and length($paths)) { - $paths = [$paths] unless UNIVERSAL::isa($paths,'ARRAY'); - } - else { - _carp ("No root path(s) specified\n"); - return 0; - } - } - else { - if (@_ > 0 and UNIVERSAL::isa($_[-1],'HASH')) { - $arg = pop @_; - ${$arg->{error}} = [] if exists $arg->{error}; - ${$arg->{result}} = [] if exists $arg->{result}; - } - else { - @{$arg}{qw(verbose safe)} = (0, 0); - } - $paths = [@_]; - } - - $arg->{prefix} = ''; - $arg->{depth} = 0; - - $arg->{cwd} = getcwd() or do { - _error($arg, "cannot fetch initial working directory"); - return 0; - }; - for ($arg->{cwd}) { /\A(.*)\Z/; $_ = $1 } # untaint - - @{$arg}{qw(device inode)} = (stat $arg->{cwd})[0,1] or do { - _error($arg, "cannot stat initial working directory", $arg->{cwd}); - return 0; - }; - - return _rmtree($arg, $paths); -} - -sub _rmtree { - my $arg = shift; - my $paths = shift; - - my $count = 0; - my $curdir = File::Spec->curdir(); - my $updir = File::Spec->updir(); - - my (@files, $root); - ROOT_DIR: - foreach $root (@$paths) { - if ($Is_MacOS) { - $root = ":$root" unless $root =~ /:/; - $root .= ":" unless $root =~ /:\z/; - } - else { - $root =~ s{/\z}{}; - } - - # since we chdir into each directory, it may not be obvious - # to figure out where we are if we generate a message about - # a file name. We therefore construct a semi-canonical - # filename, anchored from the directory being unlinked (as - # opposed to being truly canonical, anchored from the root (/). - - my $canon = $arg->{prefix} - ? File::Spec->catfile($arg->{prefix}, $root) - : $root - ; - - my ($ldev, $lino, $perm) = (lstat $root)[0,1,2] or next ROOT_DIR; - - if ( -d _ ) { - $root = VMS::Filespec::pathify($root) if $Is_VMS; - if (!chdir($root)) { - # see if we can escalate privileges to get in - # (e.g. funny protection mask such as -w- instead of rwx) - $perm &= 07777; - my $nperm = $perm | 0700; - if (!($arg->{safe} or $nperm == $perm or chmod($nperm, $root))) { - _error($arg, "cannot make child directory read-write-exec", $canon); - next ROOT_DIR; - } - elsif (!chdir($root)) { - _error($arg, "cannot chdir to child", $canon); - next ROOT_DIR; - } - } - - my ($device, $inode, $perm) = (stat $curdir)[0,1,2] or do { - _error($arg, "cannot stat current working directory", $canon); - next ROOT_DIR; - }; - - ($ldev eq $device and $lino eq $inode) - or _croak("directory $canon changed before chdir, expected dev=$ldev inode=$lino, actual dev=$device ino=$inode, aborting."); - - $perm &= 07777; # don't forget setuid, setgid, sticky bits - my $nperm = $perm | 0700; - - # notabene: 0700 is for making readable in the first place, - # it's also intended to change it to writable in case we have - # to recurse in which case we are better than rm -rf for - # subtrees with strange permissions - - if (!($arg->{safe} or $nperm == $perm or chmod($nperm, $curdir))) { - _error($arg, "cannot make directory read+writeable", $canon); - $nperm = $perm; - } - - my $d; - $d = gensym() if $] < 5.006; - if (!opendir $d, $curdir) { - _error($arg, "cannot opendir", $canon); - @files = (); - } - else { - no strict 'refs'; - if (!defined ${"\cTAINT"} or ${"\cTAINT"}) { - # Blindly untaint dir names if taint mode is - # active, or any perl < 5.006 - @files = map { /\A(.*)\z/s; $1 } readdir $d; - } - else { - @files = readdir $d; - } - closedir $d; - } - - if ($Is_VMS) { - # Deleting large numbers of files from VMS Files-11 - # filesystems is faster if done in reverse ASCIIbetical order. - # include '.' to '.;' from blead patch #31775 - @files = map {$_ eq '.' ? '.;' : $_} reverse @files; - ($root = VMS::Filespec::unixify($root)) =~ s/\.dir\z//; - } - @files = grep {$_ ne $updir and $_ ne $curdir} @files; - - if (@files) { - # remove the contained files before the directory itself - my $narg = {%$arg}; - @{$narg}{qw(device inode cwd prefix depth)} - = ($device, $inode, $updir, $canon, $arg->{depth}+1); - $count += _rmtree($narg, \@files); - } - - # restore directory permissions of required now (in case the rmdir - # below fails), while we are still in the directory and may do so - # without a race via '.' - if ($nperm != $perm and not chmod($perm, $curdir)) { - _error($arg, "cannot reset chmod", $canon); - } - - # don't leave the client code in an unexpected directory - chdir($arg->{cwd}) - or _croak("cannot chdir to $arg->{cwd} from $canon: $!, aborting."); - - # ensure that a chdir upwards didn't take us somewhere other - # than we expected (see CVE-2002-0435) - ($device, $inode) = (stat $curdir)[0,1] - or _croak("cannot stat prior working directory $arg->{cwd}: $!, aborting."); - - ($arg->{device} eq $device and $arg->{inode} eq $inode) - or _croak("previous directory $arg->{cwd} changed before entering $canon, expected dev=$ldev inode=$lino, actual dev=$device ino=$inode, aborting."); - - if ($arg->{depth} or !$arg->{keep_root}) { - if ($arg->{safe} && - ($Is_VMS ? !&VMS::Filespec::candelete($root) : !-w $root)) { - print "skipped $root\n" if $arg->{verbose}; - next ROOT_DIR; - } - if (!chmod $perm | 0700, $root) { - if ($Force_Writeable) { - _error($arg, "cannot make directory writeable", $canon); - } - } - print "rmdir $root\n" if $arg->{verbose}; - if (rmdir $root) { - push @{${$arg->{result}}}, $root if $arg->{result}; - ++$count; - } - else { - _error($arg, "cannot remove directory", $canon); - if (!chmod($perm, ($Is_VMS ? VMS::Filespec::fileify($root) : $root)) - ) { - _error($arg, sprintf("cannot restore permissions to 0%o",$perm), $canon); - } - } - } - } - else { - # not a directory - - $root = VMS::Filespec::vmsify("./$root") - if $Is_VMS && !File::Spec->file_name_is_absolute($root); - - if ($arg->{safe} && - ($Is_VMS ? !&VMS::Filespec::candelete($root) - : !(-l $root || -w $root))) - { - print "skipped $root\n" if $arg->{verbose}; - next ROOT_DIR; - } - - my $nperm = $perm & 07777 | 0600; - if ($nperm != $perm and not chmod $nperm, $root) { - if ($Force_Writeable) { - _error($arg, "cannot make file writeable", $canon); - } - } - print "unlink $canon\n" if $arg->{verbose}; - # delete all versions under VMS - for (;;) { - if (unlink $root) { - push @{${$arg->{result}}}, $root if $arg->{result}; - } - else { - _error($arg, "cannot unlink file", $canon); - $Force_Writeable and chmod($perm, $root) or - _error($arg, sprintf("cannot restore permissions to 0%o",$perm), $canon); - last; - } - ++$count; - last unless $Is_VMS && lstat $root; - } - } - } - - return $count; -} - -1; |