]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blob - config/backup/backup.pl
Forward Firewall: added dmz-converter.
[people/teissler/ipfire-2.x.git] / config / backup / backup.pl
1 #!/usr/bin/perl
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 ###############################################################################
21
22 require '/var/ipfire/general-functions.pl';
23 require "${General::swroot}/lang.pl";
24 require "${General::swroot}/header.pl";
25 use File::Path;
26 my $debug = 1;
27 my @include = "";
28 my ($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
35 if (($ARGV[0] eq 'include') || ($ARGV[0] eq 'iso')) {
36 &createinclude;
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`;
42 foreach (@files){
43 push(@include,$_);
44 }
45 open(DATEI, ">/tmp/include") || die "Could not save temp include file";
46 print DATEI @include;
47 print "/var/log/messages";
48 close(DATEI);
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'");
50 system("rm /tmp/include");
51 if ($ARGV[0] eq 'iso') {
52 system("/usr/local/bin/backupiso $Jahr$Monat$Monatstag-$Stunden$Minuten &");
53 }
54 }
55 elsif ($ARGV[0] eq 'exclude') {
56 &createinclude;
57 open(DATEI, ">/tmp/include") || die "Could not save temp include file";
58 print DATEI @include;
59 close(DATEI);
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'");
61 system("rm /tmp/include");
62 }
63 elsif ($ARGV[0] eq 'restore') {
64 system("cd / && tar -xvz -p -f /tmp/restore.ipf");
65 #Here some converter scripts to correct old Backups (before core 65)
66 system("/usr/sbin/ovpn-ccd-convert");
67 #OUTGOINGFW CONVERTER
68 if( -d "${General::swroot}/outgoing"){
69 if( -f "${General::swroot}/forward/config" ){
70 unlink("${General::swroot}/forward/config");
71 system("touch ${General::swroot}/forward/config");
72 chown 99,99,"${General::swroot}/forward/config";
73 }
74 if( -f "${General::swroot}/forward/outgoing" ){
75 unlink("${General::swroot}/forward/outgoing");
76 system("touch ${General::swroot}/forward/outgoing");
77 chown 99,99,"${General::swroot}/forward/outgoing";
78 }
79 unlink("${General::swroot}/fwhosts/*");
80 system("touch ${General::swroot}/fwhosts/customgroups");
81 system("touch ${General::swroot}/fwhosts/customhosts");
82 system("touch ${General::swroot}/fwhosts/customnetworks");
83 system("touch ${General::swroot}/fwhosts/customservicegrp");
84 system("touch ${General::swroot}/fwhosts/customservices");
85 chown 99,99,"${General::swroot}/fwhosts/*";
86 #START CONVERTER "OUTGOINGFW"
87 system("/usr/sbin/convert-outgoingfw");
88 rmtree("${General::swroot}/outgoing");
89 }
90 #XTACCESS CONVERTER
91 if( -d "${General::swroot}/xtaccess"){
92 if( -f "${General::swroot}/forward/input" ){
93 unlink("${General::swroot}/forward/input");
94 system("touch ${General::swroot}/forward/input");
95 chown 99,99,"${General::swroot}/forward/input";
96 }
97 #START CONVERTER "XTACCESS"
98 system("/usr/sbin/convert-xtaccess");
99 rmtree("${General::swroot}/xtaccess");
100 }
101 #DMZ-HOLES CONVERTER
102 if( -d "${General::swroot}/dmz-holes"){
103 if( -f "${General::swroot}/forward/dmz" ){
104 unlink("${General::swroot}/forward/dmz");
105 system("touch ${General::swroot}/forward/dmz");
106 chown 99,99,"${General::swroot}/forward/dmz";
107 }
108 #START CONVERTER "DMZ-HOLES"
109 system("/usr/sbin/convert-dmz");
110 rmtree("${General::swroot}/xtaccess");
111 }
112 #PORTFORWARD CONVERTER
113 if( -d "${General::swroot}/portfw"){
114 if( -f "${General::swroot}/forward/nat" ){
115 unlink("${General::swroot}/forward/nat");
116 system("touch ${General::swroot}/forward/nat");
117 chown 99,99,"${General::swroot}/forward/nat";
118 }
119 #START CONVERTER "PORTFW"
120 system("/usr/sbin/convert-portfw");
121 rmtree("${General::swroot}/portfw");
122 }
123 system("/usr/local/bin/forwardfwctrl");
124 }
125 elsif ($ARGV[0] eq 'restoreaddon') {
126 if ( -e "/tmp/$ARGV[1]" ){system("mv /tmp/$ARGV[1] /var/ipfire/backup/addons/backup/$ARGV[1]");}
127 system("cd / && tar -xvz -p -f /var/ipfire/backup/addons/backup/$ARGV[1]");
128 }
129 elsif ($ARGV[0] eq 'cli') {
130 system("tar -cvzf /var/ipfire/backup/$Jahr$Monat$Monatstag-$Stunden$Minuten-$ARGV[1].ipf --files-from='$ARGV[2]' --exclude-from='$ARGV[3]'");
131 }
132 elsif ($ARGV[0] eq 'addonbackup') {
133 system("tar -cvzf /var/ipfire/backup/addons/backup/$ARGV[1].ipf --files-from='/var/ipfire/backup/addons/includes/$ARGV[1]'");
134 }
135 elsif ($ARGV[0] =~ /ipf$/ ) {
136 system("rm /var/ipfire/backup/$ARGV[0]");
137 }
138 elsif ($ARGV[0] =~ /iso$/ ) {
139 system("rm /var/tmp/backupiso/$ARGV[0]");
140 }
141 elsif ($ARGV[0] eq '') {
142 printf "No argument given, please use <include><exclude><cli>\n"
143 }
144 elsif ($ARGV[0] eq 'makedirs') {
145 system("mkdir -p /var/ipfire/backup/addons");
146 system("mkdir -p /var/ipfire/backup/addons/backup");
147 system("mkdir -p /var/ipfire/backup/addons/includes");
148 }
149
150 sub createinclude(){
151
152 open(DATEI, "<${General::swroot}/backup/include") || die "Can not open include file";
153 my @Zeilen = <DATEI>;
154 close(DATEI);
155
156 foreach (@Zeilen){
157 if ( $_ =~ /\*/){
158 my @files = `ls $_`;
159 foreach (@files){
160 push(@include,$_);
161 }
162 }
163 else {push(@include,$_);}
164 }
165 }