]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blob - html/cgi-bin/backup.cgi
Nginx: Bugfixed rootfile.
[people/teissler/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 my @fileinfo = stat("/var/ipfire/backup/$cgiparams{'FILE'}");
70 print "Content-Length:$fileinfo[7]\n";
71 print "Content-Disposition:attachment;filename=$cgiparams{'FILE'}\n\n";
72 print @fileholder;
73 exit (0);
74 }
75 if ( $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";
80 my @fileinfo = stat("/var/tmp/backupiso/$cgiparams{'FILE'}");
81 print "Content-Length:$fileinfo[7]\n";
82 print "Content-Disposition:attachment;filename=$cgiparams{'FILE'}\n\n";
83 print @fileholder;
84 exit (0);
85 }
86 if ( $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";
91 my @fileinfo = stat("/var/ipfire/backup/addons/backup/$cgiparams{'FILE'}");
92 print "Content-Length:$fileinfo[7]\n";
93 print "Content-Disposition:attachment;filename=$cgiparams{'FILE'}\n\n";
94 print @fileholder;
95 exit (0);
96 }
97 elsif ( $cgiparams{'ACTION'} eq "restore" )
98 {
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");
107 }
108 elsif ( $cgiparams{'ACTION'} eq "restoreaddon" )
109 {
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'});
113 my $upload = $a->param("UPLOAD");
114 open UPLOADFILE, ">/tmp/".$temp[$#temp];
115 binmode $upload;
116 while ( <$upload> ) {
117 print UPLOADFILE;
118 }
119 close UPLOADFILE;
120 system("/usr/local/bin/backupctrl restoreaddon ".$temp[$#temp]." >/dev/null 2>&1");
121 }
122
123 &Header::showhttpheaders();
124
125 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();}
126
127 &Header::openpage($Lang::tr{'backup'}, 1, "");
128 &Header::openbigbox('100%', 'left', '', $errormessage);
129
130 ############################################################################################################################
131 ################################################### Default System calls ###################################################
132
133 if ( $cgiparams{'ACTION'} eq "backup" )
134 {
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 }
142 }
143 if ( $cgiparams{'ACTION'} eq "addonbackup" )
144 {
145 system("/usr/local/bin/backupctrl addonbackup $cgiparams{'ADDON'} >/dev/null 2>&1");
146 }
147 elsif ( $cgiparams{'ACTION'} eq "delete" )
148 {
149 system("/usr/local/bin/backupctrl $cgiparams{'FILE'} >/dev/null 2>&1");
150 }
151
152 ############################################################################################################################
153 ############################################ Backups des Systems erstellen #################################################
154
155 if ( $message ne "" ){
156 &Header::openbox('100%','left',$Lang::tr{'error messages'});
157 print "<font color='red'>$message</font>\n";
158 &Header::closebox();
159 }
160
161 if ( -e "/var/ipfire/backup/" ){
162 @backups = `cd /var/ipfire/backup/ && ls *.ipf 2>/dev/null`;
163 }
164
165 if ( -e "/var/tmp/backupiso/" ){
166 @backupisos = `cd /var/tmp/backupiso/ && ls *.iso 2>/dev/null`;
167 }
168
169 &Header::openbox('100%', 'center', $Lang::tr{'backup'});
170
171 print <<END
172 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
173 <table width='95%' cellspacing='0'>
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/>
179 <input type='radio' name='BACKUPLOGS' value='iso' /> $Lang::tr{'generate iso'}
180 </td>
181 </tr>
182 <tr><td align='center' colspan='2'>
183 <input type='hidden' name='ACTION' value='backup' />
184 <input type='image' alt='$Lang::tr{'backup'}' title='$Lang::tr{'backup'}' src='/images/document-save.png' />
185 </td></tr>
186 </table>
187 </form>
188 END
189 ;
190 &Header::closebox();
191
192 ############################################################################################################################
193 ############################################ Backups des Systems downloaden ################################################
194
195 &Header::openbox('100%', 'center', $Lang::tr{'backups'});
196
197 print <<END
198 <table width='95%' cellspacing='0'>
199 END
200 ;
201 foreach (@backups){
202 if ( $_ !~ /ipf$/){next;}
203 chomp($_);
204 my $Datei = "/var/ipfire/backup/".$_;
205 my @Info = stat($Datei);
206 my $Size = $Info[7] / 1024 / 1024;
207 $Size = sprintf("%0.2f", $Size);
208 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>";
209 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>";
210 }
211 foreach (@backupisos){
212 if ( $_ !~ /iso$/){next;}
213 chomp($_);
214 my $Datei = "/var/tmp/backupiso/".$_;
215 my @Info = stat($Datei);
216 my $Size = $Info[7] / 1024 / 1024;
217 $Size = sprintf("%0.2f", $Size);
218 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>";
219 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>";
220 }
221 print <<END
222 </table>
223 END
224 ;
225 &Header::closebox();
226
227 ############################################################################################################################
228 ############################################# Backups von Addons erstellen #################################################
229
230 &Header::openbox('100%', 'center', 'addons');
231
232 my @addonincluds = `ls /var/ipfire/backup/addons/includes/ 2>/dev/null`;
233 my @addons = `ls /var/ipfire/backup/addons/backup/ 2>/dev/null`;
234 my %addons;
235
236 foreach (@addons){
237 my $addon=substr($_,0,length($_)-5);
238 $addons{$addon}='';
239 }
240
241 print "<table width='95%' cellspacing='0'>";
242 foreach (@addonincluds){
243 chomp($_);
244 delete $addons{$_};
245 my $Datei = "/var/ipfire/backup/addons/backup/".$_.".ipf";
246 my @Info = stat($Datei);
247 my $Size = $Info[7] / 1024;
248
249 if ( -e $Datei ){
250 if ($Size < 1) {
251 $Size = sprintf("%.2f", $Size);
252 print "<tr><td align='center'>$Lang::tr{'backup from'} $_ $Lang::tr{'size'} $Size KB $Lang::tr{'date'} ".localtime($Info[9])."</td>";
253 } else {
254 $Size = sprintf("%2d", $Size);
255 print "<tr><td align='center'>$Lang::tr{'backup from'} $_ $Lang::tr{'size'} $Size KB $Lang::tr{'date'} ".localtime($Info[9])."</td>";
256
257 }
258
259 print <<END
260 <td align='right' width='5'>
261 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
262 <input type='hidden' name='ACTION' value='downloadaddon' />
263 <input type='hidden' name='FILE' value='$_.ipf' />
264 <input type='image' alt='$Lang::tr{'download'}' title='$Lang::tr{'download'}' src='/images/package-x-generic.png' />
265 </form>
266 </td>
267 <td align='right' width='5'>
268 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
269 <input type='hidden' name='ACTION' value='delete' />
270 <input type='hidden' name='FILE' value='addons//backup/$_.ipf' />
271 <input type='image' alt='$Lang::tr{'delete'}' title='$Lang::tr{'delete'}' src='/images/user-trash.png' />
272 </form>
273 </td>
274 END
275 ;
276 }
277 else{
278 print "<tr><td align='center'>$Lang::tr{'backup from'} $_ </td><td width='5' align='right'></td><td width='5' align='right'></td>";
279 }
280 print <<END
281 <td align='right' width='5'>
282 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
283 <input type='hidden' name='ACTION' value='addonbackup' />
284 <input type='hidden' name='ADDON' value='$_' />
285 <input type='image' alt='$Lang::tr{'backup'}' title='$Lang::tr{'backup'}' src='/images/document-save.png' />
286 </form>
287 </td></tr>
288 END
289 ;
290 }
291 foreach (keys(%addons)){
292 chomp($_);
293 my $Datei = "/var/ipfire/backup/addons/backup/".$_.".ipf";
294 my @Info = stat($Datei);
295 my $Size = $Info[7] / 1024;
296 $Size = sprintf("%2d", $Size);
297 print "<tr><td align='center'>$Lang::tr{'backup from'} $_ $Lang::tr{'size'} $Size KB $Lang::tr{'date'} ".localtime($Info[9])."</td>";
298 print <<END
299 <td align='right' width='5'>
300 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
301 <input type='hidden' name='ACTION' value='downloadaddon' />
302 <input type='hidden' name='FILE' value='$_.ipf' />
303 <input type='image' alt='$Lang::tr{'download'}' title='$Lang::tr{'download'}' src='/images/package-x-generic.png' />
304 </form>
305 </td>
306 <td align='right' width='5'>
307 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
308 <input type='hidden' name='ACTION' value='delete' />
309 <input type='hidden' name='FILE' value='addons//backup/$_.ipf' />
310 <input type='image' alt='$Lang::tr{'delete'}' title='$Lang::tr{'delete'}' src='/images/user-trash.png' />
311 </form>
312 </td>
313 <td align='right' width='5'></td></tr>
314 END
315 ;
316 }
317
318 print "</table>";
319 &Header::closebox();
320
321 ############################################################################################################################
322 ####################################### Backups des Systems wiederherstellen ###############################################
323
324 &Header::openbox('100%', 'center', $Lang::tr{'restore'});
325
326 print <<END
327 <table width='95%' cellspacing='0'>
328 <tr><td align='center' colspan='2'><font color='red'><br />$Lang::tr{'backupwarning'}</font><br /><br /></td></tr>
329 <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>
330 <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>
331 </table>
332 END
333 ;
334 &Header::closebox();
335 &Header::closebigbox();
336 &Header::closepage();