mirror of
https://github.com/samba-team/samba.git
synced 2025-01-07 17:18:11 +03:00
883436839a
We need to unset BASH_ENV or we get: Insecure $ENV{BASH_ENV} while running setgid This probably only happens on recent perl versions. Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: David Disseldorp <ddiss@samba.org>
86 lines
1.8 KiB
Perl
Executable File
86 lines
1.8 KiB
Perl
Executable File
#!/usr/bin/perl -w
|
|
|
|
use strict;
|
|
|
|
use File::Path qw(rmtree);
|
|
use POSIX ();
|
|
|
|
sub _untaint_path
|
|
{
|
|
my ($path) = @_;
|
|
|
|
if ($path =~ /^(.*)$/) {
|
|
return $1;
|
|
}
|
|
die "bad path";
|
|
}
|
|
|
|
sub _create_snapshot
|
|
{
|
|
my ($base_path) = _untaint_path(shift);
|
|
my $time_str = POSIX::strftime("%Y.%m.%d-%H.%M.%S" , localtime());
|
|
my $snap_path = $base_path . "/.snapshots/\@GMT-" . $time_str;
|
|
my $ret;
|
|
|
|
delete @ENV{'BASH_ENV'};
|
|
|
|
$ENV{'PATH'} = '/bin:/usr/bin'; # untaint PATH
|
|
POSIX::mkdir($base_path . "/.snapshots", 0755);
|
|
|
|
# add trailing slash to src path to ensure that only contents is copied
|
|
$ret = system("rsync", "-a", "--exclude=.snapshots/", "${base_path}/",
|
|
$snap_path);
|
|
if ($ret != 0) {
|
|
print STDERR "rsync failed with $ret\n";
|
|
} else {
|
|
print "$snap_path\n";
|
|
}
|
|
|
|
return $ret;
|
|
}
|
|
|
|
sub _delete_snapshot
|
|
{
|
|
my $base_path = _untaint_path(shift);
|
|
my $snap_path = _untaint_path(shift);
|
|
|
|
# we're doing a recursive delete, so do some sanity checks
|
|
if ((index($snap_path, $base_path) != 0) || (index($snap_path, ".snapshots") == -1)) {
|
|
print STDERR "invalid snap_path: $snap_path\n";
|
|
return -1;
|
|
}
|
|
|
|
$ENV{'PATH'} = '/bin:/usr/bin'; # untaint PATH
|
|
rmtree($snap_path, {error => \my $err});
|
|
if (@$err) {
|
|
for my $diag (@$err) {
|
|
my ($file, $message) = %$diag;
|
|
if ($file eq '') {
|
|
print STDERR "rmtree error: $message\n";
|
|
} else {
|
|
print STDERR "rmtree error $file: $message\n";
|
|
}
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
my $ret;
|
|
my $num_args = $#ARGV + 1;
|
|
my $cmd = shift;
|
|
|
|
if (($num_args == 2) && ($cmd eq "--check")) {
|
|
$ret = 0;
|
|
} elsif (($num_args == 2) && ($cmd eq "--create")) {
|
|
$ret = _create_snapshot($ARGV[0]);
|
|
} elsif (($num_args == 3) && ($cmd eq "--delete")) {
|
|
$ret = _delete_snapshot($ARGV[0], $ARGV[1]);
|
|
} else {
|
|
print STDERR "invalid script argument\n";
|
|
$ret = -1;
|
|
}
|
|
|
|
exit $ret;
|