]> git.ipfire.org Git - ipfire-2.x.git/blame - config/backup/backup.pl
Forward Firewall: edited Backup.pl. If someone put /var/ipfire/outgoing into /var...
[ipfire-2.x.git] / config / backup / backup.pl
CommitLineData
cf29614f 1#!/usr/bin/perl
70df8302
MT
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
5# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
6# #
7# This program is free software: you can redistribute it and/or modify #
8# it under the terms of the GNU General Public License as published by #
9# the Free Software Foundation, either version 3 of the License, or #
10# (at your option) any later version. #
11# #
12# This program is distributed in the hope that it will be useful, #
13# but WITHOUT ANY WARRANTY; without even the implied warranty of #
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15# GNU General Public License for more details. #
16# #
17# You should have received a copy of the GNU General Public License #
18# along with this program. If not, see <http://www.gnu.org/licenses/>. #
19# #
20###############################################################################
cf29614f
CS
21
22require '/var/ipfire/general-functions.pl';
23require "${General::swroot}/lang.pl";
24require "${General::swroot}/header.pl";
e0800c21 25use File::Path;
cf29614f
CS
26my $debug = 1;
27my @include = "";
28my ($Sekunden, $Minuten, $Stunden, $Monatstag, $Monat, $Jahr, $Wochentag, $Jahrestag, $Sommerzeit) = localtime(time);
29$Jahr = $Jahr + 1900;$Monat = $Monat + 1;
30$Monat = sprintf("%02d", $Monat);
31$Monatstag = sprintf("%02d", $Monatstag);
32$Stunden = sprintf("%02d", $Stunden);
33$Minuten = sprintf("%02d", $Minuten);
34
f31d3c1f 35if (($ARGV[0] eq 'include') || ($ARGV[0] eq 'iso')) {
8e8bbd9d 36 &createinclude;
d39a5cb6
CS
37 my @files = `find / -name *.log* 2>/dev/null`;
38 foreach (@files){
39 push(@include,$_);
40 }
41 my @files = `find /var/log/ -name *messages* 2>/dev/null`;
8e8bbd9d
CS
42 foreach (@files){
43 push(@include,$_);
44 }
45 open(DATEI, ">/tmp/include") || die "Could not save temp include file";
46 print DATEI @include;
d39a5cb6 47 print "/var/log/messages";
8e8bbd9d 48 close(DATEI);
cb13f50d 49 system("tar -cvzf /var/ipfire/backup/$Jahr$Monat$Monatstag-$Stunden$Minuten.ipf --files-from='/tmp/include' --exclude-from='/var/ipfire/backup/exclude' --files-from='/var/ipfire/backup/include.user' --exclude-from='/var/ipfire/backup/exclude.user'");
8e8bbd9d 50 system("rm /tmp/include");
f31d3c1f
DG
51 if ($ARGV[0] eq 'iso') {
52 system("/usr/local/bin/backupiso $Jahr$Monat$Monatstag-$Stunden$Minuten &");
53 }
8e8bbd9d 54}
69addbb8 55elsif ($ARGV[0] eq 'exclude') {
cf29614f
CS
56 &createinclude;
57 open(DATEI, ">/tmp/include") || die "Could not save temp include file";
58 print DATEI @include;
59 close(DATEI);
cb13f50d 60 system("tar -cvzf /var/ipfire/backup/$Jahr$Monat$Monatstag-$Stunden$Minuten.ipf --files-from='/tmp/include' --exclude-from='/var/ipfire/backup/exclude' --files-from='/var/ipfire/backup/include.user' --exclude-from='/var/ipfire/backup/exclude.user'");
cf29614f
CS
61 system("rm /tmp/include");
62}
69addbb8 63elsif ($ARGV[0] eq 'restore') {
c0faa0ef 64 system("cd / && tar -xvz -p -f /tmp/restore.ipf");
c490c6e8
AM
65 #Here some converter scripts to correct old Backups (before core 65)
66 system("/usr/sbin/ovpn-ccd-convert");
9edb1d7a
AM
67 if( -d "${General::swroot}/outgoing"){
68 if( -f "${General::swroot}/forward/config" ){
69 unlink("${General::swroot}/forward/config");
70 system("touch ${General::swroot}/forward/config");
71 chown 99,99,"${General::swroot}/forward/config";
72 }
73 if( -f "${General::swroot}/forward/input" ){
74 unlink("${General::swroot}/forward/input");
75 system("touch ${General::swroot}/forward/input");
76 chown 99,99,"${General::swroot}/forward/input";
77 }
99e698d0 78 system("/usr/sbin/convert-outgoingfw");
9edb1d7a
AM
79 rmtree("${General::swroot}/outgoing");
80 system("/usr/local/bin/forwrdfwctrl");
e0800c21 81 }
9edb1d7a 82 if( -d "${General::swroot}/xtaccess"){
99e698d0 83 system("/usr/sbin/convert-xtaccess");
9edb1d7a 84 rmtree("${General::swroot}/xtaccess");
e0800c21
AM
85 }
86 }
5ad5a6bc 87elsif ($ARGV[0] eq 'restoreaddon') {
b8e5a9c5 88 if ( -e "/tmp/$ARGV[1]" ){system("mv /tmp/$ARGV[1] /var/ipfire/backup/addons/backup/$ARGV[1]");}
c0faa0ef 89 system("cd / && tar -xvz -p -f /var/ipfire/backup/addons/backup/$ARGV[1]");
5ad5a6bc 90}
69addbb8 91elsif ($ARGV[0] eq 'cli') {
75abe7e9 92 system("tar -cvzf /var/ipfire/backup/$Jahr$Monat$Monatstag-$Stunden$Minuten-$ARGV[1].ipf --files-from='$ARGV[2]' --exclude-from='$ARGV[3]'");
cf29614f 93}
901a50cf
CS
94elsif ($ARGV[0] eq 'addonbackup') {
95 system("tar -cvzf /var/ipfire/backup/addons/backup/$ARGV[1].ipf --files-from='/var/ipfire/backup/addons/includes/$ARGV[1]'");
96}
69addbb8
CS
97elsif ($ARGV[0] =~ /ipf$/ ) {
98 system("rm /var/ipfire/backup/$ARGV[0]");
8e8bbd9d 99}
b90a7e56
DG
100elsif ($ARGV[0] =~ /iso$/ ) {
101 system("rm /var/tmp/backupiso/$ARGV[0]");
102}
69addbb8
CS
103elsif ($ARGV[0] eq '') {
104 printf "No argument given, please use <include><exclude><cli>\n"
8e8bbd9d 105}
a609bfb0 106elsif ($ARGV[0] eq 'makedirs') {
2a1f6aa7
CS
107 system("mkdir -p /var/ipfire/backup/addons");
108 system("mkdir -p /var/ipfire/backup/addons/backup");
109 system("mkdir -p /var/ipfire/backup/addons/includes");
a609bfb0 110}
8e8bbd9d 111
cf29614f
CS
112sub createinclude(){
113
114 open(DATEI, "<${General::swroot}/backup/include") || die "Can not open include file";
115 my @Zeilen = <DATEI>;
116 close(DATEI);
117
118 foreach (@Zeilen){
119 if ( $_ =~ /\*/){
120 my @files = `ls $_`;
121 foreach (@files){
122 push(@include,$_);
8e8bbd9d
CS
123 }
124 }
cf29614f
CS
125 else {push(@include,$_);}
126 }
127}