rename MaxArchiveFileSize to ArchiveChunkSize
[BackupPC.git] / bin / BackupPC_ASA_PostArchive_Update
1 #!/usr/local/bin/perl -w
2
3 use strict;
4 use lib "/usr/local/BackupPC/lib";
5
6 use DBI;
7 use BackupPC::Lib;
8 use BackupPC::View;
9 use BackupPC::Attrib qw/:all/;
10 use Data::Dump qw(dump);
11 use Time::HiRes qw/time/;
12 use POSIX qw/strftime/;
13 use Cwd qw/abs_path/;
14 use Archive::Tar::Streamed;
15 use Algorithm::Diff;
16 use File::Slurp;
17 use Getopt::Long::Descriptive;
18
19 =head1 NAME
20
21 BackupPC_ASA_PostArchive_Update
22
23 =head1 DESCRIPTION
24
25         # /etc/BackupPC/pc/_search_archive.pl
26
27 =cut
28
29
30 my $bpc = BackupPC::Lib->new || die "can't create BackupPC::Lib";
31 $bpc->ConfigRead('_search_archive'); # read our configuration
32 my %Conf = $bpc->Conf();
33
34 use BackupPC::Search;
35 %BackupPC::Search::Conf = %Conf;
36
37 my ($opt,$usage) = describe_options(
38 "%c %o",
39 [ 'host|h=s@',  "import just host(s)" ],
40 [ 'num|n=s@',   "import just backup number(s)" ],
41 [ 'check|c',    "check archives on disk and sync", { default => 1 } ],
42 [ 'debug|d',    "debug", { default => 1 } ],
43 [ 'help',       "show help" ],
44 );
45
46 print($usage->text), exit if $opt->help;
47
48 $|=1;
49
50 my $start_t = time();
51
52 my $t_fmt = '%Y-%m-%d %H:%M:%S';
53
54 #warn "## Conf = ",dump( \%Conf );
55
56 my $dbh = DBI->connect($Conf{SearchDSN}, $Conf{SearchUser}, "", { RaiseError => 1, AutoCommit => 0 });
57
58 #---- subs ----
59
60
61 sub curr_time {
62         return strftime($t_fmt,localtime());
63 }
64
65 sub fmt_time {
66         my $t = shift || return;
67         my $out = "";
68         my ($ss,$mm,$hh) = gmtime($t);
69         $out .= "${hh}h" if ($hh);
70         $out .= sprintf("%02d:%02d", $mm,$ss);
71         return $out;
72 }
73
74 my $hsn_cache;
75
76 sub get_backup_id($$) {
77         my ($host, $num) = @_;
78
79         my $key = "$host $num";
80         return $hsn_cache->{$key} if ($hsn_cache->{$key});
81
82         my $sth = $dbh->prepare(qq{
83                 SELECT 
84                         backups.id
85                 FROM backups 
86                 INNER JOIN shares       ON backups.shareID=shares.ID
87                 INNER JOIN hosts        ON backups.hostID = hosts.ID
88                 WHERE hosts.name = ? and backups.num = ?
89         });
90         $sth->execute($host, $num);
91         my ($id) = $sth->fetchrow_array;
92
93         $hsn_cache->{"$host $num"} = $id;
94
95         print STDERR "# $host $num == $id\n" if $opt->debug;
96
97         return $id;
98 }
99
100 sub backup_inc_deleted($) {
101         my $backup_id = shift;
102         my $sth_inc_deleted = $dbh->prepare(qq{
103                 update backups set
104                         inc_deleted = true
105                 where id = ?
106         });
107         $sth_inc_deleted->execute($backup_id);
108 }
109
110 sub system_ok {
111         warn "## system_ok @_\n";
112         system(@_) == 0 || die "system @_:$!";
113 }
114
115 my $sth_inc_size = $dbh->prepare(qq{
116         update backups set
117                 inc_size = ?,
118                 parts = ?,
119                 inc_deleted = false
120         where id = ?
121 });
122
123 sub check_archive {
124         my ($host,$num) = @_;
125         warn "# check_archive $host $num";
126
127         my $t = time();
128
129         my $glob = "$Conf{ArchiveDest}/$host.$num.*";
130
131         my @tar_parts = sort map { s/^\Q$Conf{ArchiveDest}\E\/*//; $_ } glob $glob ;
132
133         if ( ! @tar_parts ) {
134                 warn "ERROR: no files for $glob";
135                 return;
136         }
137
138         print curr_time, " check $host $num";
139
140         my $md5_path = "$Conf{ArchiveDest}/$host.$num.md5";
141         unlink $md5_path if -s $md5_path == 0; # fix empty
142
143         if ( ! -e $md5_path ) {
144                 system_ok "cd $Conf{ArchiveDest} && /usr/bin/md5sum $host.$num.* > $md5_path";
145         } else {
146                 system_ok "cd $Conf{ArchiveDest} && /usr/bin/md5sum -c $md5_path" if $opt->check;
147         }
148
149         my $md5sum;
150         foreach ( split(/\n/, read_file "$Conf{ArchiveDest}/$host.$num.md5" ) ) {
151                 my ( $md5, $path ) = split(/\s+/,$_);
152                 $md5sum->{$path} = $md5;
153         }
154
155         # depending on expected returned value this is used like:
156         # my $uncompress_size = get_gzip_size('/full/path/to.gz');
157         # my ($compress_size, $uncompress_size) = get_gzip_size('/path.gz');
158         sub get_gzip_size($) {
159                 my $filename = shift;
160                 die "file $filename problem: $!" unless (-r $filename);
161
162                 if ( $filename !~ m/\.gz$/ ) {
163                         return -s $filename;
164                 }
165
166                 open(my $gzip, $Conf{GzipPath}." -l $filename |") || die "can't gzip -l $filename: $!";
167                 local $/ = undef;
168                 my $line = <$gzip>;
169                 close($gzip);
170
171                 my ($comp, $uncomp) = (0,0);
172
173                 if ($line =~ m/\s+(\d+)\s+(\d+)\s+\d+\.\d+/s) {
174                         if (wantarray) {
175                                 return [ $1, $2 ];
176                         } else {
177                                 return $2;
178                         }
179                 } else {
180                         warn "ERROR can't parse: $line";
181                         return -s $filename;
182                 }
183         }
184
185         sub check_part {
186                 my ($host, $num, $part_nr, $tar_size, $size, $md5, $items) = @_;
187                 my $backup_id = get_backup_id($host, $num);
188                 my $sth_md5 = $dbh->prepare(qq{
189                         select
190                                 id, tar_size, size, md5, items
191                         from backup_parts
192                         where backup_id = ? and part_nr = ?
193                 });
194
195                 $sth_md5->execute($backup_id, $part_nr);
196
197                 if (my $row = $sth_md5->fetchrow_hashref) {
198                         return if (
199                                 $row->{tar_size} >= $tar_size &&
200                                 $row->{size} == $size &&
201                                 $row->{md5} eq $md5 &&
202                                 $row->{items} == $items
203                         );
204                         print ", deleting invalid backup_parts $row->{id}";
205                         $dbh->do(qq{ delete from backup_parts where id = $row->{id} });
206                 }
207                 print ", inserting new";
208                 my $sth_insert = $dbh->prepare(qq{
209                         insert into backup_parts (
210                                 backup_id,
211                                 part_nr,
212                                 tar_size,
213                                 size,
214                                 md5,
215                                 items
216                         ) values (?,?,?,?,?,?)
217                 });
218
219                 $sth_insert->execute($backup_id, $part_nr, $tar_size, $size, $md5, $items);
220                 $dbh->commit;
221         }
222
223         print " [parts: ",join(", ", @tar_parts),"]" if $opt->debug;
224
225         my @tar_files;
226
227         my $backup_part;
228
229         print " reading" if $opt->debug;
230
231         my $part_nr = 0;
232         my $inc_size = 0;
233
234         foreach my $filename (@tar_parts) {
235
236                 next if $filename eq "$host.$num.md5";
237
238                 print "\n\t- $filename";
239
240                 my $path = "$Conf{ArchiveDest}/$filename";
241                 $path =~ s{//+}{/}g;
242
243                 my $size = (stat( $path ))[7] || die "can't stat $path: $!";
244
245                 if ($size > $Conf{ArchiveMediaSize}) {
246                         print ", part bigger than media $size > $Conf{ArchiveMediaSize}\n";
247                         return 0;
248                 }
249
250                 print ", $size bytes";
251
252 =for later
253
254                 open(my $fh, "gzip -cd $path |") or die "can't open $path: $!";
255                 binmode($fh);
256                 my $tar = Archive::Tar::Streamed->new($fh);
257
258                 my $tar_size_inarc = 0;
259                 my $items = 0;
260
261                 while(my $entry = $tar->next) {
262                         push @tar_files, $entry->name;
263                         $items++;
264                         $tar_size_inarc += $entry->size;
265
266                         if ($tar_size_inarc > $Conf{ArchiveChunkSize}) {
267                                 print ", part $filename is too big $tar_size_inarc > $Conf{ArchiveChunkSize}\n";
268                                 return 0;
269                         }
270
271                 }
272
273                 close($fh);
274
275                 print ", $items items";
276
277                 if ($tar_size_inarc == 0 && $items == 0) {
278                         print ", EMPTY tar\n";
279
280                         my $backup_id = get_backup_id($host, $share, $num);
281                         backup_inc_deleted( $backup_id );
282
283                         $dbh->commit;
284
285                         return 1;
286                 }
287
288 =cut
289
290                 # FIXME
291                 my $tar_size = get_gzip_size( $path );
292
293                 #
294                 # finally, check if backup_parts table in database is valid
295                 #
296
297                 my $md5 = $md5sum->{$filename} || die "no md5sum for $filename in ",dump($md5sum);
298                 my $items = 1;
299                 $part_nr++;
300
301                 check_part($host, $num, $part_nr, $tar_size, $size, $md5, $items);
302
303                 # round increment size to 2k block size
304                 $inc_size += int(($size + 2048) / 2048);
305         }
306
307         $sth_inc_size->execute(
308                 $inc_size,
309                 $part_nr,
310                 get_backup_id($host, $num),
311         );
312         $dbh->commit;
313
314         @tar_files = sort @tar_files;
315         print "\n\t",($#tar_files + 1), " tar files";
316
317         my $sth = $dbh->prepare(qq{
318                 SELECT path,type
319                 FROM files
320                 JOIN shares on shares.id = shareid
321                 JOIN hosts on hosts.id = shares.hostid
322                 WHERE hosts.name = ? and backupnum = ?
323         });
324         $sth->execute($host, $num);
325         my @db_files;
326         while( my $row = $sth->fetchrow_hashref ) {
327
328                 my $path = $row->{'path'} || die "no path?";
329                 $path =~ s#^/#./#;
330                 $path .= '/' if ($row->{'type'} == BPC_FTYPE_DIR);
331                 push @db_files, $path;
332         }
333
334         print " ",($#db_files + 1), " database files, diff";
335
336         @db_files = sort @db_files;
337
338         my $same = 1;
339
340         if ($#tar_files != $#db_files) {
341                 $same = 0;
342                 print " NUMBER";
343         } else {
344                 my $diff = Algorithm::Diff->new(\@tar_files, \@db_files);
345                 while ( $diff->Next() ) {
346                         next if $diff->Same();
347                         $same = 0;
348                         print "< $_\n" for $diff->Items(1);
349                         print "> $_\n" for $diff->Items(2);
350                 }
351         }
352
353         print " ",($same ? 'ok' : 'DIFFERENT'),
354                 ", dur: ",fmt_time(time() - $t), "\n";
355
356         return $same;
357 }
358
359
360 #----- main
361
362 foreach ( 0 .. $#{ $opt->host } ) {
363
364         my $host = $opt->host->[$_];
365         my $num  = $opt->num->[$_];
366
367         check_archive $host => $num;
368
369 }
370
371 exit; # FIXME
372
373 my $sth = $dbh->prepare( qq{
374         
375 select
376         backups.id as backup_id,
377         hosts.name as host,
378         shares.name as share,
379         backups.num as num,
380         backups.date,
381         inc_size,
382         parts,
383         count(backup_parts.backup_id) as backup_parts
384 from backups
385         join shares on backups.hostid = shares.hostid
386                 and shares.id = backups.shareid
387         join hosts on shares.hostid = hosts.id
388         full outer join backup_parts on backups.id = backup_parts.backup_id
389 where not inc_deleted and backups.size > 0
390 group by backups.id, hosts.name, shares.name, backups.num, backups.date, inc_size, parts, backup_parts.backup_id
391 order by backups.date
392
393 } );
394
395 $sth->execute();
396 my $num_backups = $sth->rows;
397 my $curr_backup = 1;
398
399 while (my $row = $sth->fetchrow_hashref) {
400
401         $curr_backup++;
402
403         my $tar_file = BackupPC::Search::getGzipName($row->{'host'}, $row->{'share'}, $row->{'num'});
404
405         # this will return -1 if file doesn't exist
406         my $size = BackupPC::Search::get_tgz_size_by_name($tar_file);
407
408         print "# host: ".$row->{host}.", share: ".$row->{'share'}.", backup_num:".$row->{num}." size: $size backup.size: ", $row->{inc_size},"\n" if $opt->debug;
409
410         if ( $row->{'inc_size'} != -1 && $size != -1 && $row->{'inc_size'} >= $size && $row->{parts} == $row->{backup_parts}) {
411                 if ($opt->check) {
412                         tar_check($row->{'host'}, $row->{'share'}, $row->{'num'}, $tar_file) && next;
413                 } else {
414                         next;
415                 }
416         }
417
418         print curr_time, " creating $curr_backup/$num_backups ", $row->{host}, ":", $row->{share}, " #", $row->{num},
419                 " ", strftime('%Y-%m-%d', localtime($row->{date})), " -> $tar_file";
420
421         my $t = time();
422
423 =for later
424         # re-create archive?
425         my $cmd = qq[ $tarIncCreate -h "$row->{host}" -s "$row->{share}" -n $row->{num} -f ];
426         print STDERR "## $cmd\n" if ($opt->debug);
427
428         if (system($cmd) != 0) {
429                 print STDERR " FAILED, marking this backup deleted";
430                 backup_inc_deleted( $row->{backup_id} );
431         }
432 =cut
433
434         print ", dur: ",fmt_time(time() - $t), "\n";
435
436         $dbh->commit;
437
438 }
439
440 undef $sth;
441 $dbh->disconnect;