btrbk: operate on single subvolume instead of whole btrfs volume; added configuration option snapdir=<dir>

pull/30/head
Axel Burri 2014-12-14 19:23:02 +01:00
parent e9c91b1b83
commit 6dc72f867e
2 changed files with 207 additions and 116 deletions

288
btrbk
View File

@ -54,7 +54,6 @@ my $version_info = "btrbk command line client, version $VERSION";
my $time_format = "%Y%m%d_%H%M%S"; my $time_format = "%Y%m%d_%H%M%S";
my $default_config = "/etc/btrbk.conf"; my $default_config = "/etc/btrbk.conf";
my $src_snapshot_dir = "_btrbk_snap";
my %vol_info; my %vol_info;
my %uuid_info; my %uuid_info;
@ -62,6 +61,7 @@ my %uuid_info;
my $dryrun; my $dryrun;
my $loglevel = 1; my $loglevel = 1;
sub VERSION_MESSAGE sub VERSION_MESSAGE
{ {
print STDERR $version_info . "\n\n"; print STDERR $version_info . "\n\n";
@ -92,6 +92,7 @@ sub INFO { my $t = shift; print STDOUT "$t\n" if($loglevel >= 2); }
sub WARN { my $t = shift; print STDOUT "WARNING: $t\n" if($loglevel >= 1); } sub WARN { my $t = shift; print STDOUT "WARNING: $t\n" if($loglevel >= 1); }
sub ERROR { my $t = shift; print STDOUT "ERROR: $t\n"; } sub ERROR { my $t = shift; print STDOUT "ERROR: $t\n"; }
sub run_cmd($;$) sub run_cmd($;$)
{ {
my $cmd = shift; my $cmd = shift;
@ -121,33 +122,57 @@ sub check_vol($$)
} }
sub check_src($$) sub create_snapdir($$$)
{ {
my $root = shift; my $root = shift;
my $vol = shift; my $vol = shift;
return 0 unless(check_vol($root, $vol)); my $snapdir = shift;
unless($dryrun) if($snapdir && (not $dryrun))
{ {
my $dir = "${root}/${src_snapshot_dir}"; my $dir = "$root/$snapdir";
unless(-d $dir) { unless(-d $dir) {
INFO "Creating snapshot directory: $dir\n"; INFO "Creating snapshot directory: $dir\n";
make_path("${root}/${src_snapshot_dir}"); make_path($dir);
} }
} }
return 1;
} }
sub check_rootvol($) sub btr_subvolume_detail($)
{ {
my $vol = shift; my $vol = shift;
my $ret = run_cmd("/sbin/btrfs subvolume show $vol 2>/dev/null", 1); my $ret = run_cmd("/sbin/btrfs subvolume show $vol 2>/dev/null", 1);
if($ret eq "$vol is btrfs root") { if($ret eq "$vol is btrfs root") {
TRACE "rootvol check passed: $vol"; TRACE "btr_detail: found btrfs root: $vol";
return 1; return { ID => 5, is_root => 1 };
} }
TRACE "rootvol check failed: $vol"; elsif($ret =~ /^$vol/) {
return 0; TRACE "btr_detail: found btrfs subvolume: $vol";
my %trans = (
name => "Name",
uuid => "uuid",
parent_uuid => "Parent uuid",
creation_time => "Creation time",
ID => "Object ID",
gen => "Generation \\(Gen\\)",
cgen => "Gen at creation",
parent_id => "Parent",
top_level => "Top Level",
flags => "Flags",
);
my %detail;
foreach (keys %trans) {
if($ret =~ /^\s+$trans{$_}:\s+(.*)$/m) {
$detail{$_} = $1;
} else {
WARN "Failed to parse subvolume detail \"$trans{$_}\": $ret";
}
}
TRACE "btr_detail for $vol: " . Dumper \%detail;
return \%detail;
}
ERROR "Failed to fetch subvolume detail for: $vol";
return undef;
} }
@ -167,35 +192,54 @@ sub parse_config($)
next if /^\s*#/; # ignore comments next if /^\s*#/; # ignore comments
next if /^\s*$/; # ignore empty lines next if /^\s*$/; # ignore empty lines
TRACE "parse_config: parsing line: $_"; TRACE "parse_config: parsing line: $_";
if(/^\s*(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s*$/) if(/^\s*(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s*$/)
{ {
my %job = ( type => "subvol_backup", my %job = ( type => "subvol_backup",
sroot => $1, sroot => $1,
svol => $2, svol => $2,
droot => $3, droot => $3,
dvol => $4,
options => [ split(/,/, $5) ],
); );
my @options = split(/,/, $4);
$job{sroot} =~ s/\/+$//; # remove trailing slash $job{sroot} =~ s/\/+$//; # remove trailing slash
$job{sroot} =~ s/^\/+/\//; # sanitize leading slash $job{sroot} =~ s/^\/+/\//; # sanitize leading slash
$job{svol} =~ s/\/+$//; # remove trailing slash $job{svol} =~ s/\/+$//; # remove trailing slash
$job{svol} =~ s/^\/+//; # remove leading slash $job{svol} =~ s/^\/+//; # remove leading slash
die("svol contains slashes: $job{svol}") if($job{svol} =~ /\//); if($job{svol} =~ /\//) {
ERROR "src_subvol contains slashes: $job{svol}";
return undef;
}
$job{droot} =~ s/\/+$//; # remove trailing slash $job{droot} =~ s/\/+$//; # remove trailing slash
$job{droot} =~ s/^\/+/\//; # sanitize leading slash $job{droot} =~ s/^\/+/\//; # sanitize leading slash
$job{dvol} =~ s/\/+$//; # remove trailing slash
$job{dvol} =~ s/^\/+//; # remove leading slash
die("dvol contains slashes: $job{svol}") if($job{svol} =~ /\//);
$job{mountpoint} = $job{sroot}; # TODO: honor this, automount $job{mountpoint} = $job{sroot}; # TODO: honor this, automount
TRACE "parse_config: adding job \"$job{type}\": $job{sroot}/$job{svol} -> $job{droot}/$job{dvol}"; foreach(@options) {
if ($_ eq "incremental") { $job{options}->{incremental} = 1; }
elsif($_ eq "init") { $job{options}->{init} = 1; }
elsif($_ eq "create") { $job{options}->{create} = 1; }
elsif($_ eq "log") { $job{options}->{log} = 1; }
elsif($_ =~ /^log=(\S+)$/) { $job{options}->{log} = 1; $job{options}->{logfile} = $1; }
elsif($_ =~ /^snapdir=(\S+)$/) {
my $snapdir = $1;
$snapdir =~ s/\/+$//; # remove trailing slash
$snapdir =~ s/^\/+//; # remove leading slash
$snapdir .= '/'; # add trailing slash
$job{options}->{snapdir} = $snapdir;
}
else {
ERROR "Ambiguous option=\"$_\": $file line $.";
return undef; # be very strict here
}
}
TRACE "parse_config: adding job \"$job{type}\": $job{sroot}/$job{svol} -> $job{droot}/";
push @jobs, \%job; push @jobs, \%job;
} }
else else
{ {
WARN "Ambiguous configuration: $file line $."; ERROR "Ambiguous configuration: $file line $.";
return undef; # be very strict here return undef; # be very strict here
} }
} }
@ -205,16 +249,14 @@ sub parse_config($)
} }
sub btr_tree($) sub btr_subvolume_list($;@)
{ {
my $vol = shift; my $vol = shift;
unless(check_rootvol($vol)) { my %opts = @_;
ERROR "\"$vol\" is not btrfs root!"; my $filter_option = "-a";
return undef; $filter_option = "-o" if($opts{subvol_only});
} my $ret = run_cmd("/sbin/btrfs subvolume list $filter_option -c -u -q -R $vol", 1);
my $ret = run_cmd("/sbin/btrfs subvolume list -a -c -u -q -R $vol", 1); my @nodes;
my %tree;
my %id;
foreach (split(/\n/, $ret)) foreach (split(/\n/, $ret))
{ {
# ID <ID> top level <ID> path <path> where path is the relative path # ID <ID> top level <ID> path <path> where path is the relative path
@ -224,56 +266,109 @@ sub btr_tree($)
# the output between ID and top level. The parent?s ID may be used at # the output between ID and top level. The parent?s ID may be used at
# mount time via the subvolrootid= option. # mount time via the subvolrootid= option.
die("Failed to parse line: \"$_\"") unless(/^ID ([0-9]+) gen ([0-9]+) cgen ([0-9]+) top level ([0-9]+) parent_uuid ([0-9a-z-]+) received_uuid ([0-9a-z-]+) uuid ([0-9a-z-]+) path (.+)$/); die("Failed to parse line: \"$_\"") unless(/^ID ([0-9]+) gen ([0-9]+) cgen ([0-9]+) top level ([0-9]+) parent_uuid ([0-9a-z-]+) received_uuid ([0-9a-z-]+) uuid ([0-9a-z-]+) path (.+)$/);
my %node = ( ID => $1, push @nodes, { id => $1,
gen => $2, gen => $2,
cgen => $3, cgen => $3,
top_level => $4, top_level => $4,
parent_uuid => $5, parent_uuid => $5, # note: parent_uuid="-" if no parent
received_uuid => $6, received_uuid => $6,
uuid => $7, uuid => $7,
path => $8 path => $8
); };
# $node{parent_uuid} = undef if($node{parent_uuid} eq '-'); # $node{parent_uuid} = undef if($node{parent_uuid} eq '-');
TRACE "btr_tree: processing subvolid=$node{ID}"; }
return @nodes;
}
sub btr_tree($)
{
my $vol = shift;
my $detail = btr_subvolume_detail($vol);
unless($detail && $detail->{is_root}) {
ERROR "\"$vol\" is not btrfs root!";
return undef;
}
my %tree;
my %id;
foreach my $node (btr_subvolume_list($vol, subvol_only => 0))
{
TRACE "btr_tree: processing subvolid=$node->{id}";
# set FS_PATH # set FS_PATH
# #
# NOTE: these substitutions are only valid if $root is a # NOTE: these substitutions are only valid if $root is a
# absolute path to a btrfs root volume (mounted with # absolute path to a btrfs root volume (mounted with
# subvolumeid=0) # subvolumeid=0)
TRACE "btr_tree: original path: $node{path}"; TRACE "btr_tree: original path: $node->{path}";
$node{FS_PATH} = $node{path}; $node->{FS_PATH} = $node->{path};
if($node{FS_PATH} =~ s/^<FS_TREE>\///) { if($node->{FS_PATH} =~ s/^<FS_TREE>\///) {
TRACE "btr_tree: removed <FS_TREE> portion subvolume path: $node{FS_PATH}"; TRACE "btr_tree: removed <FS_TREE> portion subvolume path: $node->{FS_PATH}";
} }
$node{SUBVOL_PATH} = $node{FS_PATH}; $node->{SUBVOL_PATH} = $node->{FS_PATH};
TRACE "btr_tree: set SUBVOL_PATH: $node{FS_PATH}"; TRACE "btr_tree: set SUBVOL_PATH: $node->{FS_PATH}";
$node{FS_PATH} = $vol . "/" . $node{FS_PATH}; $node->{FS_PATH} = $vol . "/" . $node->{FS_PATH};
TRACE "btr_tree: set FS_PATH: $node{FS_PATH}"; TRACE "btr_tree: set FS_PATH: $node->{FS_PATH}";
$id{$node{ID}} = \%node; $id{$node->{id}} = $node;
$tree{$node{SUBVOL_PATH}} = \%node; $tree{$node->{SUBVOL_PATH}} = $node;
$uuid_info{$node{uuid}} = \%node; $uuid_info{$node->{uuid}} = $node;
if($node{top_level} != 5) if($node->{top_level} != 5)
{ {
# man btrfs-subvolume: # man btrfs-subvolume:
# Also every btrfs filesystem has a default subvolume as its initially # Also every btrfs filesystem has a default subvolume as its initially
# top-level subvolume, whose subvolume id is 5(FS_TREE). # top-level subvolume, whose subvolume id is 5(FS_TREE).
# set child/parent node # set child/parent node
die unless exists($id{$node{top_level}}); die unless exists($id{$node->{top_level}});
die if exists($id{$node{top_level}}->{SUBVOLUME}->{$node{SUBVOL_PATH}}); die if exists($id{$node->{top_level}}->{SUBVOLUME}->{$node->{SUBVOL_PATH}});
$id{$node{top_level}}->{SUBVOLUME}->{$node{SUBVOL_PATH}} = \%node; $id{$node->{top_level}}->{SUBVOLUME}->{$node->{SUBVOL_PATH}} = $node;
$node{TOP_LEVEL_NODE} = $id{$node{top_level}}; $node->{TOP_LEVEL_NODE} = $id{$node->{top_level}};
} }
} }
return \%tree; return \%tree;
} }
sub btr_subtree($)
{
my $vol = shift;
my $detail = btr_subvolume_detail($vol);
my $volname = $detail->{name} || "";
my %tree;
foreach my $node (btr_subvolume_list($vol, subvol_only => 1))
{
TRACE "btr_subtree: processing subvolid=$node->{id}";
# set FS_PATH
TRACE "btr_subtree: original path: $node->{path}";
my $path = $node->{path};
if($volname) {
# strip leading volume name
unless($path =~ s/^$volname\///) {
# if $vol is a sub-subvolume, strip whole prefix
unless($path =~ s/.+\/$volname\///) {
die("ambiguous btrfs subvolume info line");
}
}
TRACE "btr_subtree: removed \"$&\" prefix of subvolume path: $path";
}
$node->{SUBVOL_PATH} = $path;
TRACE "btr_subtree: set SUBVOL_PATH: $node->{SUBVOL_PATH}";
$node->{FS_PATH} = $vol . "/" . $path;
TRACE "btr_subtree: set FS_PATH: $node->{FS_PATH}";
$tree{$node->{SUBVOL_PATH}} = $node;
$uuid_info{$node->{uuid}} = $node;
}
return \%tree;
}
sub btrfs_snapshot($$) sub btrfs_snapshot($$)
{ {
my $src = shift; my $src = shift;
@ -297,9 +392,6 @@ sub btrfs_send_receive($$;$$)
my $src_name = $src; my $src_name = $src;
$src_name =~ s/^.*\///; $src_name =~ s/^.*\///;
INFO ">>> $dst/$src_name"; INFO ">>> $dst/$src_name";
# INFO (($parent ? ">>>" : "+++") . " $dst/$src_name");
# INFO (($parent ? ">>> receive(incremental):" : ">>> receive(complete):") . " $dst/$src_name");
# INFO ">>> $dst/$src_name ". ($parent ? "(incremental)" : "(INIT)");
my @info; my @info;
push @info, "[btrfs] send/receive" . ($parent ? " (incremental)" : " (complete)") . ":"; push @info, "[btrfs] send/receive" . ($parent ? " (incremental)" : " (complete)") . ":";
@ -353,16 +445,16 @@ sub get_children($$)
} }
sub get_receive_targets_by_uuid($$$) sub get_receive_targets_by_uuid($$)
{ {
my $droot = shift; my $droot = shift;
my $dvol = shift;
my $uuid = shift; my $uuid = shift;
die("root subvolume info not present: $droot") unless(exists($vol_info{$droot})); die("root subvolume info not present: $droot") unless(exists($vol_info{$droot}));
die("subvolume info not present: $uuid") unless(exists($uuid_info{$uuid})); die("subvolume info not present: $uuid") unless(exists($uuid_info{$uuid}));
DEBUG "Getting receive targets in \"$droot/$dvol\" for: $uuid_info{$uuid}->{FS_PATH}"; DEBUG "Getting receive targets in \"$droot/\" for: $uuid_info{$uuid}->{FS_PATH}";
my @ret; my @ret;
foreach (values %{$vol_info{$droot}->{$dvol}->{SUBVOLUME}}) { # foreach (values %{$vol_info{$droot}->{SUBVOLUME}}) { # this is for btr_tree, not btr_subtree!
foreach (values %{$vol_info{$droot}}) {
next unless($_->{received_uuid} eq $uuid); next unless($_->{received_uuid} eq $uuid);
DEBUG "Found receive target: $_->{SUBVOL_PATH}"; DEBUG "Found receive target: $_->{SUBVOL_PATH}";
push(@ret, $_); push(@ret, $_);
@ -372,27 +464,26 @@ sub get_receive_targets_by_uuid($$$)
} }
sub get_latest_common($$$$) sub get_latest_common($$$)
{ {
my $sroot = shift; my $sroot = shift;
my $svol = shift; my $svol = shift;
my $droot = shift; my $droot = shift;
my $dvol = shift;
die("source subvolume info not present: $sroot") unless(exists($vol_info{$sroot})); die("source subvolume info not present: $sroot") unless(exists($vol_info{$sroot}));
die("target subvolume info not present: $droot") unless(exists($vol_info{$droot})); die("target subvolume info not present: $droot") unless(exists($vol_info{$droot}));
# sort children of svol descending by generation
foreach my $child (sort { $b->{gen} <=> $a->{gen} } get_children($sroot, $svol)) { foreach my $child (sort { $b->{gen} <=> $a->{gen} } get_children($sroot, $svol)) {
TRACE "get_latest_common: checking source snapshot: $child->{SUBVOL_PATH}"; TRACE "get_latest_common: checking source snapshot: $child->{SUBVOL_PATH}";
next unless($child->{SUBVOL_PATH} =~ /^$src_snapshot_dir\/$svol\./); foreach (get_receive_targets_by_uuid($droot, $child->{uuid})) {
foreach (get_receive_targets_by_uuid($droot, $dvol, $child->{uuid})) {
TRACE "get_latest_common: found receive target: $_->{FS_PATH}"; TRACE "get_latest_common: found receive target: $_->{FS_PATH}";
DEBUG("Latest common snapshots for: $sroot/$svol: src=$child->{FS_PATH} dst=$_->{FS_PATH}"); DEBUG("Latest common snapshots for: $sroot/$svol: src=$child->{FS_PATH} dst=$_->{FS_PATH}");
return ($child, $_); return ($child, $_);
} }
TRACE "get_latest_common: no matching targets found for: $child->{FS_PATH}"; TRACE "get_latest_common: no matching targets found for: $child->{FS_PATH}";
} }
DEBUG("No common snapshots for \"$sroot/$svol\" found in src=$sroot/$src_snapshot_dir/ dst=$droot/$dvol/"); DEBUG("No common snapshots for \"$sroot/$svol\" found in src=$sroot/ dst=$droot/");
return (undef, undef); return (undef, undef);
} }
@ -453,8 +544,8 @@ MAIN:
{ {
my $sroot = $job->{sroot} || die; my $sroot = $job->{sroot} || die;
my $droot = $job->{droot} || die; my $droot = $job->{droot} || die;
$vol_info{$sroot} //= btr_tree($sroot); $vol_info{$sroot} //= btr_subtree($sroot);
$vol_info{$droot} //= btr_tree($droot); $vol_info{$droot} //= btr_subtree($droot);
unless($vol_info{$sroot} && $vol_info{$droot}) { unless($vol_info{$sroot} && $vol_info{$droot}) {
ERROR "Failed to read btrfs subvolume information, aborting job"; ERROR "Failed to read btrfs subvolume information, aborting job";
$job->{ABORTED} = 1; $job->{ABORTED} = 1;
@ -481,6 +572,7 @@ MAIN:
{ {
my $sroot = $job->{sroot} || die; my $sroot = $job->{sroot} || die;
my $svol = $job->{svol} || die; my $svol = $job->{svol} || die;
my $snapdir = $job->{options}->{snapdir} || "";
next unless $vol_info{$job->{sroot}}; next unless $vol_info{$job->{sroot}};
print "|-- $svol\n"; print "|-- $svol\n";
my $sroot_uuid; my $sroot_uuid;
@ -493,14 +585,14 @@ MAIN:
die unless $sroot_uuid; die unless $sroot_uuid;
foreach (sort { $a->{SUBVOL_PATH} cmp $b->{SUBVOL_PATH} } (values $vol_info{$sroot})) { foreach (sort { $a->{SUBVOL_PATH} cmp $b->{SUBVOL_PATH} } (values $vol_info{$sroot})) {
next unless($_->{parent_uuid} eq $sroot_uuid); next unless($_->{parent_uuid} eq $sroot_uuid);
# next unless($_->{SUBVOL_PATH} =~ /^$src_snapshot_dir\//); # don't print non-btrbk snapshots # next unless($_->{SUBVOL_PATH} =~ /^$snapdir/); # don't print non-btrbk snapshots
print "| ^-- $_->{SUBVOL_PATH}\n"; print "| ^-- $_->{SUBVOL_PATH}\n";
my $snapshot = $_->{FS_PATH}; my $snapshot = $_->{FS_PATH};
$snapshot =~ s/^.*\///; $snapshot =~ s/^.*\///;
foreach (sort { $a->{droot} cmp $b->{droot} } @$jobs) { foreach (sort { $a->{droot} cmp $b->{droot} } @$jobs) {
next unless $vol_info{$_->{droot}}; next unless $vol_info{$_->{droot}};
next unless(($_->{sroot} eq $sroot) && ($_->{svol} eq $svol)); next unless(($_->{sroot} eq $sroot) && ($_->{svol} eq $svol));
my $match = "$_->{droot}/$_->{dvol}/$snapshot"; my $match = "$_->{droot}/$snapshot";
foreach (sort { $a->{FS_PATH} cmp $b->{FS_PATH} } (values $vol_info{$_->{droot}})) { foreach (sort { $a->{FS_PATH} cmp $b->{FS_PATH} } (values $vol_info{$_->{droot}})) {
print "| | # $_->{FS_PATH}\n" if($_->{FS_PATH} eq $match); print "| | # $_->{FS_PATH}\n" if($_->{FS_PATH} eq $match);
} }
@ -523,9 +615,9 @@ MAIN:
my $sroot = $job->{sroot} || die; my $sroot = $job->{sroot} || die;
my $svol = $job->{svol} || die; my $svol = $job->{svol} || die;
my $droot = $job->{droot} || die; my $droot = $job->{droot} || die;
my $dvol = $job->{dvol} || die;
my $type = $job->{type} || die; my $type = $job->{type} || die;
my $ssnap = "$src_snapshot_dir/$svol$postfix"; my $snapdir = $job->{options}->{snapdir} || "";
my $ssnap = "$snapdir$svol$postfix"; # NOTE: $snapdir always has trailing slash!
# perform checks # perform checks
if(check_vol($sroot, $ssnap)) { if(check_vol($sroot, $ssnap)) {
@ -534,16 +626,17 @@ MAIN:
$job->{ABORTED} = 1; $job->{ABORTED} = 1;
next; next;
} }
if(check_vol($droot, "$dvol/$svol$postfix")) { if(check_vol($droot, "$svol$postfix")) {
WARN "Snapshot already exists at destination, aborting job: $droot/$dvol/$svol$postfix"; WARN "Snapshot already exists at destination, aborting job: $droot/$svol$postfix";
$job->{ABORTED} = 1; $job->{ABORTED} = 1;
next; next;
} }
unless(check_src($sroot, $svol) && check_vol($sroot, $svol)) { unless(check_vol($sroot, $svol)) {
WARN "Source subvolume not found, aborting job: $sroot/$svol"; WARN "Source subvolume not found, aborting job: $sroot/$svol";
$job->{ABORTED} = 1; $job->{ABORTED} = 1;
next; next;
} }
create_snapdir($sroot, $svol, $snapdir);
# make snapshot of svol, if not already created by another job # make snapshot of svol, if not already created by another job
unless($snapshots{"$sroot/$svol"}) unless($snapshots{"$sroot/$svol"})
@ -571,59 +664,48 @@ MAIN:
my $sroot = $job->{sroot} || die; my $sroot = $job->{sroot} || die;
my $svol = $job->{svol} || die; my $svol = $job->{svol} || die;
my $droot = $job->{droot} || die; my $droot = $job->{droot} || die;
my $dvol = $job->{dvol} || die;
my $type = $job->{type} || die; my $type = $job->{type} || die;
my $snapshot = $job->{snapshot} || die; my $snapshot = $job->{snapshot} || die;
my @job_opts = @{$job->{options}}; my $job_opts = $job->{options} || die;
DEBUG "***"; DEBUG "***";
DEBUG "*** $type\[" . join(',', @job_opts) . "]"; DEBUG "*** $type\[" . join(',', map { "$_=$job_opts->{$_}" } keys(%$job_opts)) . "]";
DEBUG "*** source: $sroot/$svol"; DEBUG "*** source: $sroot/$svol";
DEBUG "*** dest : $droot/$dvol"; DEBUG "*** dest : $droot/";
DEBUG "***"; DEBUG "***";
INFO "Creating subvolume backup for: $sroot/$svol"; INFO "Creating subvolume backup for: $sroot/$svol";
my $changelog = ""; my $changelog = "";
if(grep(/^log/, @job_opts)) if($job_opts->{log})
{ {
if(my @res = grep(/^log=\S+$/, @job_opts)) { # log defaults to sidecar of destination snapshot
die if(scalar(@res) != 1); $changelog = $job_opts->{logfile} || "$droot/$svol$postfix.btrbk.log";
$changelog = $res[0];
$changelog =~ s/^log=//;
}
else {
# log defaults to sidecar of destination snapshot
$changelog = "$droot/$dvol/$svol$postfix.btrbk.log";
}
} }
if(grep(/incremental/, @job_opts)) if($job_opts->{incremental})
{ {
INFO "Using previously created snapshot: $snapshot"; INFO "Using previously created snapshot: $snapshot";
# INFO "Attempting incremantal backup (option=incremental)"; # INFO "Attempting incremantal backup (option=incremental)";
my ($latest_common_src, $latest_common_dst) = get_latest_common($sroot, $svol, $droot, $dvol); my ($latest_common_src, $latest_common_dst) = get_latest_common($sroot, $svol, $droot);
if($latest_common_src && $latest_common_dst) if($latest_common_src && $latest_common_dst)
{ {
my $parent_snap = $latest_common_src->{FS_PATH}; my $parent_snap = $latest_common_src->{FS_PATH};
INFO "Using parent snapshot: $parent_snap"; INFO "Using parent snapshot: $parent_snap";
btrfs_send_receive($snapshot, "$droot/$dvol", $parent_snap, $changelog); btrfs_send_receive($snapshot, $droot, $parent_snap, $changelog);
} }
elsif(grep(/init/, @job_opts)) { elsif($job_opts->{init}) {
if(check_vol($droot, $dvol)) { # if(check_vol($droot, $dvol)) { # TODO: perform checks
INFO "No common parent snapshots found, creating initial backup (option=init)"; INFO "No common parent snapshots found, creating initial backup (option=init)";
btrfs_send_receive($snapshot, "$droot/$dvol", undef, $changelog); btrfs_send_receive($snapshot, $droot, undef, $changelog);
} # }
else {
WARN "Backup to $droot failed: target subvolume not found: $droot/$dvol";
}
} }
else { else {
WARN "Backup to $droot failed: no common parent subvolume found, and job option \"create\" is not set"; WARN "Backup to $droot failed: no common parent subvolume found, and job option \"create\" is not set";
} }
} }
elsif(grep(/create/, @job_opts)) elsif($job_opts->{create})
{ {
INFO "Creating new snapshot copy (option=create))"; INFO "Creating new snapshot copy (option=create))";
btrfs_send_receive($snapshot, "${droot}/${dvol}", undef, $changelog); btrfs_send_receive($snapshot, $droot, undef, $changelog);
} }
} }
} }

View File

@ -1,3 +1,11 @@
# config lines: <src_dir> <src_subvol> <dst_dir> <options>
#
# src_dir directory of a btrfs subvolume containing the subvolume to be backuped
# (usually the mount-point of a btrfs filesystem mounted with subvolid=0 option)
# src_subvol subvolume to be backuped (relative to <src_dir>)
# dst_dir directory of a btrfs subvolume containing the backuped target subvolumes
# options backup options, see below
#
# options: # options:
# #
# init create initial (non-incremental) snapshot if needed # init create initial (non-incremental) snapshot if needed
@ -5,27 +13,28 @@
# create always create non-incremental snapshots # create always create non-incremental snapshots
# log log to "sidecar" file for each revision (suffix ".btrfs.log") # log log to "sidecar" file for each revision (suffix ".btrfs.log")
# log=<logfile> append log to specified logfile # log=<logfile> append log to specified logfile
# snapdir=<name> create source snapshots within <src_dir>/<snapdir>/, rather than within <src_dir>
# note: snapdir will be created on the fly, and cannot be a separate subvolume!
# #
# <src_mountpoint> <src_subvol> <dst_mountpoint> <dst_subvol_pool> <options>
/mnt/btr_system root_gentoo /mnt/btr_ext _btrbk incremental,init /mnt/btr_system root_gentoo /mnt/btr_ext/_btrbk incremental,init,snapdir=_btrbk_snap
/mnt/btr_system root_gentoo /mnt/btr_backup _btrbk incremental,init,log /mnt/btr_system root_gentoo /mnt/btr_backup/_btrbk incremental,init,log,snapdir=_btrbk_snap
/mnt/btr_system kvm /mnt/btr_ext _btrbk incremental,init /mnt/btr_system kvm /mnt/btr_ext/_btrbk incremental,init,snapdir=_btrbk_snap
/mnt/btr_system kvm /mnt/btr_backup _btrbk incremental,init,log /mnt/btr_system kvm /mnt/btr_backup/_btrbk incremental,init,log,snapdir=_btrbk_snap
/mnt/btr_data home /mnt/btr_backup _btrbk incremental,init,log /mnt/btr_data home /mnt/btr_backup/_btrbk incremental,init,log,snapdir=_btrbk_snap
/mnt/btr_data sdms.data /mnt/btr_backup _btrbk incremental,init,log /mnt/btr_data sdms.data /mnt/btr_backup/_btrbk incremental,init,log,snapdir=_btrbk_snap
/mnt/btr_ext data /mnt/btr_backup _btrbk incremental,init,log /mnt/btr_ext data /mnt/btr_backup/_btrbk incremental,init,log,snapdir=_btrbk_snap
# TODO: these monthly # TODO: these monthly
#/mnt/btr_ext video /mnt/btr_backup _btrbk incremental,init,log #/mnt/btr_ext video /mnt/btr_backup/_btrbk incremental,init,log,snapdir=_btrbk_snap
#/mnt/btr_ext audio /mnt/btr_backup _btrbk incremental,init,log #/mnt/btr_ext audio /mnt/btr_backup/_btrbk incremental,init,log,snapdir=_btrbk_snap
# TODO: these monthly # TODO: these monthly
#/mnt/btr_boot boot /mnt/btr_ext _btrbk incremental,init,log #/mnt/btr_boot boot /mnt/btr_ext/_btrbk incremental,init,log,snapdir=_btrbk_snap
#/mnt/btr_boot boot /mnt/btr_backup _btrbk incremental #/mnt/btr_boot boot /mnt/btr_backup/_btrbk incremental,snapdir=_btrbk_snap
# non-incremental, create a new snapshot at every invocation! # non-incremental, create a new snapshot at every invocation!
##/mnt/btr_boot boot /mnt/btr_backup _btrbk create ##/mnt/btr_boot boot /mnt/btr_backup/_btrbk create,snapdir=_btrbk_snap