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