]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - html/cgi-bin/backup.cgi
Some more stderr fixes for the CGIs.
[people/pmueller/ipfire-2.x.git] / html / cgi-bin / backup.cgi
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
22 use strict;
23 # enable only the following on debugging purpose
24 #use warnings;
25 #use CGI::Carp 'fatalsToBrowser';
26 use File::Copy;
27
28 require '/var/ipfire/general-functions.pl';
29 require "${General::swroot}/lang.pl";
30 require "${General::swroot}/header.pl";
31
32 my %color = ();
33 my %mainsettings = ();
34 my %cgiparams=();
35 my %checked = ();
36 my $message = "";
37 my $errormessage = "";
38 my @backups = "";
39 my @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
56 system("/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
64 if ( $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 }
73 if ( $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 }
82 if ( $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 }
91 elsif ( $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 }
102 elsif ( $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
119 sub 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
127 if ( $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 }
137 if ( $cgiparams{'ACTION'} eq "addonbackup" )
138 {
139 system("/usr/local/bin/backupctrl addonbackup $cgiparams{'ADDON'} >/dev/null 2>&1");
140 }
141 elsif ( $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
149 if ( $message ne "" ){
150 &Header::openbox('100%','left',$Lang::tr{'error messages'});
151 print "<font color='red'>$message</font>\n";
152 &Header::closebox();
153 }
154
155 if ( -e "/var/ipfire/backup/" ){
156 @backups = `cd /var/ipfire/backup/ && ls *.ipf 2>/dev/null`;
157 }
158
159 if ( -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
165 print <<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>
182 END
183 ;
184 &Header::closebox();
185
186 ############################################################################################################################
187 ############################################ Backups des Systems downloaden ################################################
188
189 &Header::openbox('100%', 'center', $Lang::tr{'backups'});
190
191 print <<END
192 <table width='95%' cellspacing='0'>
193 END
194 ;
195 foreach (@backups){
196 chomp($_);
197 my $Datei = "/var/ipfire/backup/".$_;
198 my @Info = stat($Datei);
199 my $Size = $Info[7] / 1024 / 1024;
200 $Size = sprintf("%0.2f", $Size);
201 print "<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>";
202 print "<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 }
204 foreach (@backupisos){
205 chomp($_);
206 my $Datei = "/var/tmp/backupiso/".$_;
207 my @Info = stat($Datei);
208 my $Size = $Info[7] / 1024 / 1024;
209 $Size = sprintf("%0.2f", $Size);
210 print "<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>";
211 print "<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 }
213 print <<END
214 </table>
215 END
216 ;
217 &Header::closebox();
218
219 ############################################################################################################################
220 ############################################# Backups von Addons erstellen #################################################
221
222 &Header::openbox('100%', 'center', 'addons');
223
224 my @addonincluds = `ls /var/ipfire/backup/addons/includes/ 2>/dev/null`;
225 my @addons = `ls /var/ipfire/backup/addons/backup/ 2>/dev/null`;
226 my %addons;
227
228 foreach (@addons){
229 my $addon=substr($_,0,length($_)-5);
230 $addons{$addon}='';
231 }
232
233 print "<table width='95%' cellspacing='0'>";
234 foreach (@addonincluds){
235 chomp($_);
236 delete $addons{$_};
237 my $Datei = "/var/ipfire/backup/addons/backup/".$_.".ipf";
238 my @Info = stat($Datei);
239 my $Size = $Info[7] / 1024;
240
241 if ( -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
251 print <<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>
266 END
267 ;
268 }
269 else{
270 print "<tr><td align='center'>$Lang::tr{'backup from'} $_ </td><td width='5' align='right'></td><td width='5' align='right'></td>";
271 }
272 print <<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>
280 END
281 ;
282 }
283 foreach (keys(%addons)){
284 chomp($_);
285 my $Datei = "/var/ipfire/backup/addons/backup/".$_.".ipf";
286 my @Info = stat($Datei);
287 my $Size = $Info[7] / 1024;
288 $Size = sprintf("%2d", $Size);
289 print "<tr><td align='center'>$Lang::tr{'backup from'} $_ $Lang::tr{'size'} $Size KB $Lang::tr{'date'} ".localtime($Info[9])."</td>";
290 print <<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>
306 END
307 ;
308 }
309
310 print "</table>";
311 &Header::closebox();
312
313 ############################################################################################################################
314 ####################################### Backups des Systems wiederherstellen ###############################################
315
316 &Header::openbox('100%', 'center', $Lang::tr{'restore'});
317
318 print <<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>
324 END
325 ;
326 &Header::closebox();
327 &Header::closebigbox();
328 &Header::closepage();