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