App-Options
view release on metacpan or search on metacpan
bin/prefixadmin view on Meta::CPAN
my ($this) = @_;
my $class = ref($this) || $this;
my $self = {};
bless $self, $class;
return($self);
}
sub fix {
my ($self, $options) = @_;
my ($path, $file, $cwd);
my ($dev, $ino, $mode, $nlink, $uid, $gid, $rdev, $size, $atime, $mtime, $ctime, $blksize, $blocks);
my $verbose = $options->{verbose} || 0;
my $prefix = $options->{prefix} || die "prefix not specified";
die "$prefix is not a directory" if (! -d $prefix);
chdir($prefix) || die "Could not change directory to $prefix";
$path = ".";
($dev, $ino, $mode, $nlink, $uid, $gid, $rdev, $size, $atime, $mtime, $ctime, $blksize, $blocks) = stat($path);
if ($verbose >= 2) {
printf("%3d %8d %10s %2d %5d %5d %6d %15d [%17s] %s\n",
$dev, $ino, $self->format_mode($mode), $nlink, $uid, $gid, $rdev, $size, time2str("%Y-%m-%d %H:%M:%S", $mtime), $path);
}
my ($u_name, $u_pass, $u_uid, $u_gid, $u_quota, $u_comment, $u_gcos, $u_dir, $u_shell, $u_expire) = getpwuid($uid);
print "Uname: $u_name UID: $u_uid\n" if ($verbose >= 2);
my ($grp_name, $grp_passwd, $grp_gid, $grp_members) = getgrgid($gid);
print "Gname: $grp_name GID: $grp_gid Members: $grp_members\n" if ($verbose >= 2);
my ($shgrp_name,$shgrp_passwd,$shgrp_gid,$shgrp_members);
my $shared_group = $options->{group};
if ($shared_group) {
($shgrp_name,$shgrp_passwd,$shgrp_gid,$shgrp_members) = getgrnam($shared_group);
print "Shared Gname: $shgrp_name GID: $shgrp_gid Members: $shgrp_members\n" if ($verbose >= 2);
}
else { # if --group is not given on the command line, use the GID of the top level directory
($shgrp_name,$shgrp_passwd,$shgrp_gid,$shgrp_members) = getgrgid($gid);
print "Shared Gname: $shgrp_name GID: $shgrp_gid Members: $shgrp_members\n" if ($verbose >= 2);
}
#print STDERR " searching $prefix\n" if ($verbose >= 2);
find(
sub {
$file = $_;
$path = $File::Find::name;
$path =~ s!^\.\/!!;
$cwd = $File::Find::dir;
$cwd =~ s!^\.\/!!;
my ($err_msg);
($dev, $ino, $mode, $nlink, $uid, $gid, $rdev, $size, $atime, $mtime, $ctime, $blksize, $blocks) = stat($file);
if (!defined $mode) {
print ">>> $file\n" if ($verbose);
}
else {
printf("%3d %8d %07o:%10s %2d %5d %5d %6d %15d [%17s] %s\n",
$dev, $ino, $mode, $self->format_mode($mode), $nlink, $uid, $gid, $rdev, $size, time2str("%Y-%m-%d %H:%M:%S", $mtime), $path) if ($verbose);
if ($shgrp_gid) {
$err_msg = $self->_share_file($file, $options, $shgrp_gid, $mode, $uid, $gid);
}
}
return(0);
},
"."
);
}
# S_IRWXU S_IRUSR S_IWUSR S_IXUSR
# S_IRWXG S_IRGRP S_IWGRP S_IXGRP
# S_IRWXO S_IROTH S_IWOTH S_IXOTH
#
# # Setuid/Setgid/Stickiness/SaveText.
# # Note that the exact meaning of these is system dependent.
#
# S_ISUID S_ISGID S_ISVTX S_ISTXT
sub format_mode {
my ($self, $mode) = @_;
my $fmt_mode = ($mode & S_IFREG) ? "-" : (($mode & S_IFDIR) ? "d" : (($mode & S_IFLNK) ? "l" : "?"));
$fmt_mode .= ($mode & S_IRUSR) ? "r" : "-";
$fmt_mode .= ($mode & S_IWUSR) ? "w" : "-";
$fmt_mode .= ($mode & S_IXUSR) ? (($mode & S_ISUID) ? "s" : "x") : (($mode & S_ISUID) ? "S" : "-");
bin/prefixadmin view on Meta::CPAN
return($fmt_mode);
}
# 1. $cnt = chmod 0755, 'foo', 'bar';
# 2. chmod 0755, @executables;
# 3. $mode = '0644'; chmod $mode, 'foo'; # !!! sets mode to
# 4. # --w----r-T
# 5. $mode = '0644'; chmod oct($mode), 'foo'; # this is better
# 6. $mode = 0644; chmod $mode, 'foo'; # this is best
# 1. $cnt = chown $uid, $gid, 'foo', 'bar';
# 2. chown $uid, $gid, @filenames;
sub _share_file {
my ($self, $file, $options, $shgrp_gid, $mode, $uid, $gid) = @_;
my $verbose = $options->{verbose};
my $err_msg = "";
my ($retval);
if ($shgrp_gid) {
if ($gid != $shgrp_gid) {
$retval = chown($uid, $shgrp_gid, $file);
if ($verbose) {
print ">>> chown($uid, $shgrp_gid, $file) = [$retval]\n";
}
}
my $share_mode = $mode & 07777;
my $mode_needs_fix = 0;
if ($mode & S_IFDIR) {
if ($mode & S_ISGID) {
# do nothing
}
lib/App/Options.pm view on Meta::CPAN
}
else {
print STDERR "\n" if ($debug_options);
}
}
}
sub file_is_secure {
my ($file) = @_;
my ($secure, $dir);
my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,$blksize,$blocks);
if ($^O =~ /MSWin32/) {
$secure = 1; # say it is without really checking
}
else {
$secure = $path_is_secure{$file};
if (!defined $secure) {
($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,$blksize,$blocks) = stat($file);
if (!($mode & 0400)) {
$secure = 0;
print "Error: Option file is not secure because it is not readable by the owner.\n";
}
elsif ($mode & 0077) {
$secure = 0;
print "Error: Option file is not secure because it is readable/writable by users other than the owner.\n";
}
else {
$dir =~ s!/?[^/]+$!!;
while ($dir && $secure) {
$secure = $path_is_secure{$file};
if (!defined $secure) {
($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,$blksize,$blocks) = stat("$dir/."); # navigate symlink to the directory
if ($uid >= 100 && $uid != $>) {
$secure = 0;
print "Error: Option file is not secure because a parent directory is owned by a different user.\n";
print " Dir=[$dir]\n";
}
elsif ($mode & 0077) {
$secure = 0;
print "Error: Option file is not secure because a parent directory is readable/writable by other users.\n";
print " Dir=[$dir]\n";
}
( run in 1.273 second using v1.01-cache-2.11-cpan-5735350b133 )