我有一个属于root用户和具有setuid的Perl脚本。
在这个脚本中,我改变作为参数传递的文件的所有者。
但在运行此脚本我得到
chown: changing ownership of `file': Operation not permitted
有人告诉我,脚本默认使用suidperl setuid的运行如果启用。
但我不这样认为是在我的情况发生。
谁能帮我在这件事情? 我使用Debian喘息。 我的Perl版本是5.14.2。 我试过了
apt-get install perl-suid
但没有奏效。
apt-cache search perl
没有给我在Perl为SUID相关的候选人。
这是我的Perl程序
#! /usr/bin/perl -T
use Cwd 'abs_path';
sub check_path {
my $file = $_[0];
$file = abs_path($file);
if ($file =~ /^\/home\/abc\/dir1\//) {
return 1;
}
else {
return 0;
print("You can only update permissions for files inside /home/abc/dir1/ directory\n");
}
}
if (@ARGV == 1) {
if (&check_path($ARGV[0]) == 1) {
$ENV{PATH} = "/bin:/usr/bin";
my $command = "chown abc:abc " . $ARGV[0];
if ($command =~ /^(.*)$/) {
$command = $1;
}
$result = `$command`;
}
}
elsif ((@ARGV == 2) && ($ARGV[0] eq "-R")) {
if (&check_path($ARGV[1]) == 1) {
$ENV{PATH} = "/bin:/usr/bin";
my $command = "chown -R abc:abc " . $ARGV[1];
if ($command =~ /^(.*)$/) {
$command = $1;
}
$result = `$command`;
}
}
else {
print("Sorry wrong syntax. Syntax: perl /home/abc/sbin/update_permission.pl [-R] file_path");
}