]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blame - html/cgi-bin/backup.cgi
Re-add missing language string "DNS Servers".
[people/teissler/ipfire-2.x.git] / html / cgi-bin / backup.cgi
CommitLineData
cf29614f 1#!/usr/bin/perl
70df8302
MT
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
eb7fff99 5# Copyright (C) 2005-2013 IPFire Team <info@ipfire.org> #
70df8302
MT
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
22use strict;
23# enable only the following on debugging purpose
36dfbfcf
CS
24#use warnings;
25#use CGI::Carp 'fatalsToBrowser';
8e8bbd9d 26use File::Copy;
cf29614f
CS
27
28require '/var/ipfire/general-functions.pl';
29require "${General::swroot}/lang.pl";
30require "${General::swroot}/header.pl";
31
32my %color = ();
33my %mainsettings = ();
8e8bbd9d 34my %cgiparams=();
cf29614f
CS
35my %checked = ();
36my $message = "";
37my $errormessage = "";
26906d98
CS
38my @backups = "";
39my @backupisos = "";
cf29614f 40
8e8bbd9d 41$a = new CGI;
cf29614f
CS
42
43&General::readhash("${General::swroot}/main/settings", \%mainsettings);
44&General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \%color);
45
8e8bbd9d
CS
46$cgiparams{'ACTION'} = '';
47$cgiparams{'FILE'} = '';
48$cgiparams{'UPLOAD'} = '';
49$cgiparams{'BACKUPLOGS'} = '';
69addbb8 50
8e8bbd9d 51&Header::getcgihash(\%cgiparams);
cf29614f 52
a609bfb0
CS
53############################################################################################################################
54################################################ Workaround for Directories ################################################
55
2a1f6aa7 56system("/usr/local/bin/backupctrl makedirs >/dev/null 2>&1 ") unless ( -e '/var/ipfire/backup/addons/backup') ;
a609bfb0 57
cf29614f 58############################################################################################################################
69addbb8 59############################################## System calls ohne Http Header ###############################################
cf29614f 60
b90a7e56
DG
61# Replace slashes from filename
62$cgiparams{'FILE'} =~ s/\///;
69addbb8
CS
63
64if ( $cgiparams{'ACTION'} eq "download" )
8e8bbd9d 65{
901a50cf
CS
66 open(DLFILE, "</var/ipfire/backup/$cgiparams{'FILE'}") or die "Unable to open $cgiparams{'FILE'}: $!";
67 my @fileholder = <DLFILE>;
68 print "Content-Type:application/x-download\n";
98e8c7b5
JPT
69 my @fileinfo = stat("/var/ipfire/backup/$cgiparams{'FILE'}");
70 print "Content-Length:$fileinfo[7]\n";
901a50cf
CS
71 print "Content-Disposition:attachment;filename=$cgiparams{'FILE'}\n\n";
72 print @fileholder;
73 exit (0);
8e8bbd9d 74}
b90a7e56
DG
75if ( $cgiparams{'ACTION'} eq "downloadiso" )
76{
77 open(DLFILE, "</var/tmp/backupiso/$cgiparams{'FILE'}") or die "Unable to open $cgiparams{'FILE'}: $!";
78 my @fileholder = <DLFILE>;
79 print "Content-Type:application/x-download\n";
98e8c7b5
JPT
80 my @fileinfo = stat("/var/tmp/backupiso/$cgiparams{'FILE'}");
81 print "Content-Length:$fileinfo[7]\n";
b90a7e56
DG
82 print "Content-Disposition:attachment;filename=$cgiparams{'FILE'}\n\n";
83 print @fileholder;
84 exit (0);
85}
5ad5a6bc
MT
86if ( $cgiparams{'ACTION'} eq "downloadaddon" )
87{
88 open(DLFILE, "</var/ipfire/backup/addons/backup/$cgiparams{'FILE'}") or die "Unable to open $cgiparams{'FILE'}: $!";
89 my @fileholder = <DLFILE>;
90 print "Content-Type:application/x-download\n";
98e8c7b5
JPT
91 my @fileinfo = stat("/var/ipfire/backup/addons/backup/$cgiparams{'FILE'}");
92 print "Content-Length:$fileinfo[7]\n";
5ad5a6bc
MT
93 print "Content-Disposition:attachment;filename=$cgiparams{'FILE'}\n\n";
94 print @fileholder;
95 exit (0);
96}
8e8bbd9d
CS
97elsif ( $cgiparams{'ACTION'} eq "restore" )
98{
901a50cf
CS
99 my $upload = $a->param("UPLOAD");
100 open UPLOADFILE, ">/tmp/restore.ipf";
101 binmode $upload;
102 while ( <$upload> ) {
103 print UPLOADFILE;
104 }
105 close UPLOADFILE;
106 system("/usr/local/bin/backupctrl restore >/dev/null 2>&1");
8e8bbd9d 107}
5ad5a6bc
MT
108elsif ( $cgiparams{'ACTION'} eq "restoreaddon" )
109{
d2b476e8
CS
110 chomp($cgiparams{'UPLOAD'});
111 # we need to fix cause IE7 gives the full path and FF only the filename
112 my @temp = split(/\\/,$cgiparams{'UPLOAD'});
5ad5a6bc 113 my $upload = $a->param("UPLOAD");
d2b476e8 114 open UPLOADFILE, ">/tmp/".$temp[$#temp];
5ad5a6bc
MT
115 binmode $upload;
116 while ( <$upload> ) {
117 print UPLOADFILE;
118 }
119 close UPLOADFILE;
d2b476e8 120 system("/usr/local/bin/backupctrl restoreaddon ".$temp[$#temp]." >/dev/null 2>&1");
5ad5a6bc 121}
cf29614f 122
8e8bbd9d 123&Header::showhttpheaders();
69addbb8
CS
124
125sub refreshpage{&Header::openbox( 'Waiting', 1, "<meta http-equiv='refresh' content='1;'>" );print "<center><img src='/images/clock.gif' alt='' /><br/><font color='red'>$Lang::tr{'pagerefresh'}</font></center>";&Header::closebox();}
126
8e8bbd9d
CS
127&Header::openpage($Lang::tr{'backup'}, 1, "");
128&Header::openbigbox('100%', 'left', '', $errormessage);
129
69addbb8
CS
130############################################################################################################################
131################################################### Default System calls ###################################################
132
133if ( $cgiparams{'ACTION'} eq "backup" )
134{
f31d3c1f
DG
135 if ( $cgiparams{'BACKUPLOGS'} eq "include" ) {
136 system("/usr/local/bin/backupctrl include >/dev/null 2>&1");
137 } elsif ( $cgiparams{'BACKUPLOGS'} eq "exclude" ) {
138 system("/usr/local/bin/backupctrl exclude >/dev/null 2>&1");
139 } elsif ( $cgiparams{'BACKUPLOGS'} eq "iso" ) {
140 system("/usr/local/bin/backupctrl iso >/dev/null 2>&1");
141 }
901a50cf
CS
142}
143if ( $cgiparams{'ACTION'} eq "addonbackup" )
144{
5ad5a6bc 145 system("/usr/local/bin/backupctrl addonbackup $cgiparams{'ADDON'} >/dev/null 2>&1");
69addbb8
CS
146}
147elsif ( $cgiparams{'ACTION'} eq "delete" )
148{
901a50cf 149 system("/usr/local/bin/backupctrl $cgiparams{'FILE'} >/dev/null 2>&1");
69addbb8
CS
150}
151
152############################################################################################################################
901a50cf 153############################################ Backups des Systems erstellen #################################################
69addbb8 154
8e8bbd9d
CS
155if ( $message ne "" ){
156 &Header::openbox('100%','left',$Lang::tr{'error messages'});
157 print "<font color='red'>$message</font>\n";
158 &Header::closebox();
159}
cf29614f 160
26906d98
CS
161if ( -e "/var/ipfire/backup/" ){
162 @backups = `cd /var/ipfire/backup/ && ls *.ipf 2>/dev/null`;
163}
164
165if ( -e "/var/tmp/backupiso/" ){
166 @backupisos = `cd /var/tmp/backupiso/ && ls *.iso 2>/dev/null`;
167}
901a50cf 168
6f5487d7 169&Header::openbox('100%', 'center', );
cf29614f
CS
170
171print <<END
172<form method='post' action='$ENV{'SCRIPT_NAME'}'>
173<table width='95%' cellspacing='0'>
f31d3c1f
DG
174<tr>
175 <td align='left' width='40%'>$Lang::tr{'logs'}</td>
176 <td align='left'>
177 <input type='radio' name='BACKUPLOGS' value='include'/> $Lang::tr{'include logfiles'}<br/>
178 <input type='radio' name='BACKUPLOGS' value='exclude' checked='checked'/> $Lang::tr{'exclude logfiles'}<br/>
eb7fff99
AF
179END
180;
181my $MACHINE=`uname -m`;
182if ( ! ( $MACHINE =~ "arm" )) {
183 print" <input type='radio' name='BACKUPLOGS' value='iso' /> $Lang::tr{'generate iso'}<br/>"
184}
185print <<END
f31d3c1f
DG
186 </td>
187</tr>
901a50cf
CS
188<tr><td align='center' colspan='2'>
189 <input type='hidden' name='ACTION' value='backup' />
190 <input type='image' alt='$Lang::tr{'backup'}' title='$Lang::tr{'backup'}' src='/images/document-save.png' />
191</td></tr>
cf29614f
CS
192</table>
193</form>
194END
195;
196&Header::closebox();
197
901a50cf
CS
198############################################################################################################################
199############################################ Backups des Systems downloaden ################################################
200
cf29614f
CS
201&Header::openbox('100%', 'center', $Lang::tr{'backups'});
202
203print <<END
cf29614f
CS
204<table width='95%' cellspacing='0'>
205END
206;
207foreach (@backups){
6b8be088
CS
208if ( $_ !~ /ipf$/){next;}
209chomp($_);
69addbb8 210my $Datei = "/var/ipfire/backup/".$_;
8e8bbd9d 211my @Info = stat($Datei);
5504342a
JPT
212my $Size = $Info[7] / 1024 / 1024;
213$Size = sprintf("%0.2f", $Size);
214print "<tr><td align='center'>$Lang::tr{'backup from'} $_ $Lang::tr{'size'} $Size MB</td><td width='5'><form method='post' action='$ENV{'SCRIPT_NAME'}'><input type='hidden' name='ACTION' value='download' /><input type='hidden' name='FILE' value='$_' /><input type='image' alt='$Lang::tr{'download'}' title='$Lang::tr{'download'}' src='/images/package-x-generic.png' /></form></td>";
69addbb8 215print "<td width='5'><form method='post' action='$ENV{'SCRIPT_NAME'}'><input type='hidden' name='ACTION' value='delete' /><input type='hidden' name='FILE' value='$_' /><input type='image' alt='$Lang::tr{'delete'}' title='$Lang::tr{'delete'}' src='/images/user-trash.png' /></form></td></tr>";
cf29614f 216}
b90a7e56 217foreach (@backupisos){
6b8be088 218if ( $_ !~ /iso$/){next;}
b90a7e56
DG
219chomp($_);
220my $Datei = "/var/tmp/backupiso/".$_;
221my @Info = stat($Datei);
5504342a
JPT
222my $Size = $Info[7] / 1024 / 1024;
223$Size = sprintf("%0.2f", $Size);
224print "<tr><td align='center'>$Lang::tr{'backup from'} $_ $Lang::tr{'size'} $Size MB</td><td width='5'><form method='post' action='$ENV{'SCRIPT_NAME'}'><input type='hidden' name='ACTION' value='downloadiso' /><input type='hidden' name='FILE' value='$_' /><input type='image' alt='$Lang::tr{'download'}' title='$Lang::tr{'download'}' src='/images/package-x-generic.png' /></form></td>";
b90a7e56
DG
225print "<td width='5'><form method='post' action='$ENV{'SCRIPT_NAME'}'><input type='hidden' name='ACTION' value='delete' /><input type='hidden' name='FILE' value='$_' /><input type='image' alt='$Lang::tr{'delete'}' title='$Lang::tr{'delete'}' src='/images/user-trash.png' /></form></td></tr>";
226}
901a50cf 227print <<END
cf29614f 228</table>
8e8bbd9d
CS
229END
230;
231&Header::closebox();
232
901a50cf
CS
233############################################################################################################################
234############################################# Backups von Addons erstellen #################################################
235
4ede2956 236&Header::openbox('100%', 'center', $Lang::tr{'addons'});
901a50cf
CS
237
238my @addonincluds = `ls /var/ipfire/backup/addons/includes/ 2>/dev/null`;
98ab7f50
CS
239my @addons = `ls /var/ipfire/backup/addons/backup/ 2>/dev/null`;
240my %addons;
241
242foreach (@addons){
243 my $addon=substr($_,0,length($_)-5);
244 $addons{$addon}='';
245}
901a50cf
CS
246
247print "<table width='95%' cellspacing='0'>";
248foreach (@addonincluds){
249chomp($_);
98ab7f50 250delete $addons{$_};
901a50cf
CS
251my $Datei = "/var/ipfire/backup/addons/backup/".$_.".ipf";
252my @Info = stat($Datei);
253my $Size = $Info[7] / 1024;
c35ac552 254
901a50cf 255if ( -e $Datei ){
c35ac552
JPT
256 if ($Size < 1) {
257 $Size = sprintf("%.2f", $Size);
258 print "<tr><td align='center'>$Lang::tr{'backup from'} $_ $Lang::tr{'size'} $Size KB $Lang::tr{'date'} ".localtime($Info[9])."</td>";
259 } else {
260 $Size = sprintf("%2d", $Size);
261 print "<tr><td align='center'>$Lang::tr{'backup from'} $_ $Lang::tr{'size'} $Size KB $Lang::tr{'date'} ".localtime($Info[9])."</td>";
262
263 }
264
901a50cf
CS
265print <<END
266 <td align='right' width='5'>
267 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
5ad5a6bc
MT
268 <input type='hidden' name='ACTION' value='downloadaddon' />
269 <input type='hidden' name='FILE' value='$_.ipf' />
901a50cf
CS
270 <input type='image' alt='$Lang::tr{'download'}' title='$Lang::tr{'download'}' src='/images/package-x-generic.png' />
271 </form>
272 </td>
273 <td align='right' width='5'>
274 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
275 <input type='hidden' name='ACTION' value='delete' />
363a19ee 276 <input type='hidden' name='FILE' value='addons//backup/$_.ipf' />
901a50cf
CS
277 <input type='image' alt='$Lang::tr{'delete'}' title='$Lang::tr{'delete'}' src='/images/user-trash.png' />
278 </form>
279 </td>
280END
281;
282}
283else{
b8e5a9c5 284 print "<tr><td align='center'>$Lang::tr{'backup from'} $_ </td><td width='5' align='right'></td><td width='5' align='right'></td>";
901a50cf
CS
285}
286print <<END
287 <td align='right' width='5'>
288 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
289 <input type='hidden' name='ACTION' value='addonbackup' />
290 <input type='hidden' name='ADDON' value='$_' />
291 <input type='image' alt='$Lang::tr{'backup'}' title='$Lang::tr{'backup'}' src='/images/document-save.png' />
292 </form>
293 </td></tr>
294END
295;
296}
b8e5a9c5
CS
297foreach (keys(%addons)){
298chomp($_);
98ab7f50 299my $Datei = "/var/ipfire/backup/addons/backup/".$_.".ipf";
b8e5a9c5
CS
300my @Info = stat($Datei);
301my $Size = $Info[7] / 1024;
302$Size = sprintf("%2d", $Size);
98ab7f50 303print "<tr><td align='center'>$Lang::tr{'backup from'} $_ $Lang::tr{'size'} $Size KB $Lang::tr{'date'} ".localtime($Info[9])."</td>";
b8e5a9c5
CS
304print <<END
305 <td align='right' width='5'>
306 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
307 <input type='hidden' name='ACTION' value='downloadaddon' />
98ab7f50 308 <input type='hidden' name='FILE' value='$_.ipf' />
b8e5a9c5
CS
309 <input type='image' alt='$Lang::tr{'download'}' title='$Lang::tr{'download'}' src='/images/package-x-generic.png' />
310 </form>
311 </td>
312 <td align='right' width='5'>
313 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
314 <input type='hidden' name='ACTION' value='delete' />
41708968 315 <input type='hidden' name='FILE' value='addons//backup/$_.ipf' />
b8e5a9c5
CS
316 <input type='image' alt='$Lang::tr{'delete'}' title='$Lang::tr{'delete'}' src='/images/user-trash.png' />
317 </form>
318 </td>
319 <td align='right' width='5'></td></tr>
320END
321;
322}
323
901a50cf
CS
324print "</table>";
325&Header::closebox();
5ad5a6bc
MT
326
327############################################################################################################################
328####################################### Backups des Systems wiederherstellen ###############################################
329
330&Header::openbox('100%', 'center', $Lang::tr{'restore'});
331
332print <<END
333<table width='95%' cellspacing='0'>
334<tr><td align='center' colspan='2'><font color='red'><br />$Lang::tr{'backupwarning'}</font><br /><br /></td></tr>
d2b476e8
CS
335<tr><td align='left'>$Lang::tr{'backup'}</td><td align='left'><form method='post' enctype='multipart/form-data' action='$ENV{'SCRIPT_NAME'}'><input type="file" size='50' name="UPLOAD" /><input type='hidden' name='ACTION' value='restore' /><input type='hidden' name='FILE' /><input type='image' alt='$Lang::tr{'restore'}' title='$Lang::tr{'restore'}' src='/images/media-floppy.png' /></form></td></tr>
336<tr><td align='left'>$Lang::tr{'backupaddon'}</td><td align='left'><form method='post' enctype='multipart/form-data' action='$ENV{'SCRIPT_NAME'}'><input type="file" size='50' name="UPLOAD" /><input type='hidden' name='ACTION' value='restoreaddon' /><input type='hidden' name='FILE' /><input type='image' alt='$Lang::tr{'restore'}' title='$Lang::tr{'restore'}' src='/images/media-floppy.png' /></form></td></tr>
5ad5a6bc
MT
337</table>
338END
339;
340&Header::closebox();
cf29614f 341&Header::closebigbox();
4ede2956 342&Header::closepage();