]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - html/cgi-bin/index.cgi
Merge branch 'master' of ssh://arne_f@ipfire.org/pub/git/ipfire-2.x
[people/pmueller/ipfire-2.x.git] / html / cgi-bin / index.cgi
1 #!/usr/bin/perl
2 ###############################################################################
3 # #
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2007 Michael Tremer & Christian Schmidt #
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
24 # enable only the following on debugging purpose
25 #use warnings;
26 #use CGI::Carp 'fatalsToBrowser';
27
28 require '/var/ipfire/general-functions.pl';
29 require "${General::swroot}/lang.pl";
30 require "${General::swroot}/header.pl";
31
32 my %cgiparams=();
33 my %pppsettings=();
34 my %modemsettings=();
35 my %netsettings=();
36 my %ddnssettings=();
37 my $warnmessage = '';
38 my $refresh = "";
39 my $ipaddr='';
40
41 &Header::showhttpheaders();
42
43 $cgiparams{'ACTION'} = '';
44 &Header::getcgihash(\%cgiparams);
45 $pppsettings{'VALID'} = '';
46 $pppsettings{'PROFILENAME'} = 'None';
47 &General::readhash("${General::swroot}/ppp/settings", \%pppsettings);
48 &General::readhash("${General::swroot}/modem/settings", \%modemsettings);
49 &General::readhash("${General::swroot}/ethernet/settings", \%netsettings);
50 &General::readhash("${General::swroot}/ddns/settings", \%ddnssettings);
51
52 my %color = ();
53 my %mainsettings = ();
54 &General::readhash("${General::swroot}/main/settings", \%mainsettings);
55 &General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \%color);
56
57 my $connstate = &Header::connectionstatus();
58
59 if ($cgiparams{'ACTION'} eq $Lang::tr{'shutdown'} || $cgiparams{'ACTION'} eq $Lang::tr{'reboot'}) {
60 $refresh = "<meta http-equiv='refresh' content='300;'>";
61 } elsif ($connstate =~ /$Lang::tr{'connecting'}/ || /$Lang::tr{'connection closed'}/ ){
62 $refresh = "<meta http-equiv='refresh' content='5;'>";
63 } elsif ($connstate =~ /$Lang::tr{'dod waiting'}/ || -e "${General::swroot}/main/refreshindex") {
64 $refresh = "<meta http-equiv='refresh' content='30;'>";
65 }
66
67 if ($cgiparams{'ACTION'} eq $Lang::tr{'dial profile'})
68 {
69 my $profile = $cgiparams{'PROFILE'};
70 my %tempcgiparams = ();
71 $tempcgiparams{'PROFILE'} = '';
72 &General::readhash("${General::swroot}/ppp/settings-$cgiparams{'PROFILE'}",
73 \%tempcgiparams);
74
75 # make a link from the selected profile to the "default" one.
76 unlink("${General::swroot}/ppp/settings");
77 link("${General::swroot}/ppp/settings-$cgiparams{'PROFILE'}",
78 "${General::swroot}/ppp/settings");
79 system ("/usr/bin/touch", "${General::swroot}/ppp/updatesettings");
80
81 # read in the new params "early" so we can write secrets.
82 %cgiparams = ();
83 &General::readhash("${General::swroot}/ppp/settings", \%cgiparams);
84 $cgiparams{'PROFILE'} = $profile;
85 $cgiparams{'BACKUPPROFILE'} = $profile;
86 &General::writehash("${General::swroot}/ppp/settings-$cgiparams{'PROFILE'}",
87 \%cgiparams);
88
89 # write secrets file.
90 open(FILE, ">/${General::swroot}/ppp/secrets") or die "Unable to write secrets file.";
91 flock(FILE, 2);
92 my $username = $cgiparams{'USERNAME'};
93 my $password = $cgiparams{'PASSWORD'};
94 print FILE "'$username' * '$password'\n";
95 chmod 0600, "${General::swroot}/ppp/secrets";
96 close FILE;
97
98 &General::log("$Lang::tr{'profile made current'} $tempcgiparams{'PROFILENAME'}");
99 $cgiparams{'ACTION'} = "$Lang::tr{'dial'}";
100 }
101
102 if ($cgiparams{'ACTION'} eq $Lang::tr{'dial'}) {
103 system('/usr/local/bin/redctrl start > /dev/null') == 0
104 or &General::log("Dial failed: $?"); sleep 1;}
105 elsif ($cgiparams{'ACTION'} eq $Lang::tr{'hangup'}) {
106 system('/usr/local/bin/redctrl stop > /dev/null') == 0
107 or &General::log("Hangup failed: $?"); sleep 1;}
108
109 my $c;
110 my $maxprofiles = 5;
111 my @profilenames = ();
112
113 for ($c = 1; $c <= $maxprofiles; $c++)
114 {
115 my %temppppsettings = ();
116 $temppppsettings{'PROFILENAME'} = '';
117 &General::readhash("${General::swroot}/ppp/settings-$c", \%temppppsettings);
118 $profilenames[$c] = $temppppsettings{'PROFILENAME'};
119 }
120 my %selected;
121 for ($c = 1; $c <= $maxprofiles; $c++) {
122 $selected{'PROFILE'}{$c} = '';
123 }
124 $selected{'PROFILE'}{$pppsettings{'PROFILE'}} = "selected='selected'";
125 my $dialButtonDisabled = "disabled='disabled'";
126
127
128 &Header::openpage($Lang::tr{'main page'}, 1, $refresh);
129 &Header::openbigbox('', 'center');
130 &Header::openbox('100%', 'center', &Header::cleanhtml(`/bin/uname -n`,"y"));
131
132
133
134 if ( ( $pppsettings{'VALID'} eq 'yes' && $modemsettings{'VALID'} eq 'yes' ) || ( $netsettings{'CONFIG_TYPE'} =~ /^(1|2|3|4)$/ && $netsettings{'RED_TYPE'} =~ /^(DHCP|STATIC)$/ )) {
135 if (open(IPADDR,"${General::swroot}/ddns/ipcache")) {
136 $ipaddr = <IPADDR>;
137 close IPADDR;
138 chomp ($ipaddr);
139 }
140 if (open(IPADDR,"${General::swroot}/red/local-ipaddress")) {
141 $ipaddr = <IPADDR>;
142 close IPADDR;
143 chomp ($ipaddr);
144 }
145 } elsif ($modemsettings{'VALID'} eq 'no') {
146 print "$Lang::tr{'modem settings have errors'}\n </b></font>\n";
147 } else {
148 print "$Lang::tr{'profile has errors'}\n </b></font>\n";
149 }
150
151 #if ( $netsettings{'RED_TYPE'} =~ /^(DHCP|STATIC)$/ ) {
152 # $ipaddr = $netsettings{'RED_ADDRESS'};
153 #}
154
155 my $death = 0;
156 my $rebirth = 0;
157
158 if ($cgiparams{'ACTION'} eq $Lang::tr{'shutdown'}) {
159 $death = 1;
160 &General::log($Lang::tr{'shutting down ipfire'});
161 system '/usr/local/bin/ipfirereboot down';
162 } elsif ($cgiparams{'ACTION'} eq $Lang::tr{'reboot'}) {
163 $rebirth = 1;
164 &General::log($Lang::tr{'rebooting ipfire'});
165 system '/usr/local/bin/ipfirereboot boot';
166 }
167
168 if ($death == 0 && $rebirth == 0) {
169
170 if ($mainsettings{'REBOOTQUESTION'} eq "off") {
171 print <<END
172 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
173 <table width='100%'>
174 <tr>
175 <td width='33%' align='center'><input type='submit' name='ACTION' value='$Lang::tr{'reboot'}' /></td>
176 <td width='33%' align='center'><input type='submit' name='ACTION' value='$Lang::tr{'refresh'}' /></td>
177 <td width='33%' align='center'><input type='submit' name='ACTION' value='$Lang::tr{'shutdown'}' /></td>
178 </tr>
179 </table>
180 </form>
181 END
182 ;
183 } else {
184 if ($cgiparams{'ACTION'} eq $Lang::tr{'reboot ask'}) {
185 print <<END
186 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
187 <table width='100%'>
188 <tr>
189 <td colspan="3" align='left'><font color="red">$Lang::tr{'reboot sure'}</font></td>
190 </tr>
191 <tr>
192 <td width='33%' align='center'><input type='submit' name='ACTION' value='$Lang::tr{'reboot'}' /></td>
193 <td width='33%' align='center'><input type='submit' name='ACTION' value='$Lang::tr{'refresh'}' /></td>
194 <td width='33%' align='center'><input type='submit' name='ACTION' value='$Lang::tr{'shutdown ask'}' /></td>
195 </tr>
196 </table>
197 </form>
198 END
199 ;
200 } elsif ($cgiparams{'ACTION'} eq $Lang::tr{'shutdown ask'}) {
201 print <<END
202 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
203 <table width='100%'>
204 <tr>
205 <td colspan="3" align='right'><font color="red">$Lang::tr{'shutdown sure'}</font></td>
206 </tr>
207 <tr>
208 <td width='33%' align='center'><input type='submit' name='ACTION' value='$Lang::tr{'reboot ask'}' /></td>
209 <td width='33%' align='center'><input type='submit' name='ACTION' value='$Lang::tr{'refresh'}' /></td>
210 <td width='33%' align='center'><input type='submit' name='ACTION' value='$Lang::tr{'shutdown'}' /></td>
211 </tr>
212 </table>
213 </form>
214 END
215 ;
216 } else {
217 print <<END
218 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
219 <table width='100%'>
220 <tr>
221 <td width='33%' align='center'><input type='submit' name='ACTION' value='$Lang::tr{'reboot ask'}' /></td>
222 <td width='33%' align='center'><input type='submit' name='ACTION' value='$Lang::tr{'refresh'}' /></td>
223 <td width='33%' align='center'><input type='submit' name='ACTION' value='$Lang::tr{'shutdown ask'}' /></td>
224 </tr>
225 </table>
226 </form>
227 END
228 ;
229 }
230 }
231 print <<END;
232
233
234 <!-- Table of networks -->
235 <table border='0' width=80%>
236 <tr> <th bgcolor='$color{'color20'}'>$Lang::tr{'network'}
237 <th bgcolor='$color{'color20'}'>IP
238 <th bgcolor='$color{'color20'}'>$Lang::tr{'status'}
239 <tr> <td align='center' bgcolor='$Header::colourred' width='25%'><a href="/cgi-bin/pppsetup.cgi"><font size='2' color='white'><b>$Lang::tr{'internet'}</b></font></a><br>
240 <td width='30%' align='center'>$ipaddr
241 <td width='45%' align='center'>$connstate
242 END
243 if ( $netsettings{'RED_TYPE'} ne "STATIC" && $netsettings{'RED_TYPE'} ne "DHCP" ){
244 print `/usr/local/bin/dialctrl.pl show`;
245 print <<END;
246 <tr><td colspan='2'>
247 <form method='post' action='$ENV{'SCRIPT_NAME'}'>$Lang::tr{'profile'}:
248 <select name='PROFILE'>
249 END
250 for ($c = 1; $c <= $maxprofiles; $c++)
251 {
252 if ($profilenames[$c] ne '') {
253 $dialButtonDisabled = "";
254 print "\t<option value='$c' $selected{'PROFILE'}{$c}>$c. $profilenames[$c]</option>\n";
255 }
256 }
257 $dialButtonDisabled = "disabled='disabled'" if (-e '/var/run/ppp-ipfire.pid' || -e "${General::swroot}/red/active");
258 if ( ( $pppsettings{'VALID'} eq 'yes' ) || ( $netsettings{'CONFIG_TYPE'} =~ /^(1|2|3|4)$/ && $netsettings{'RED_TYPE'} =~ /^(DHCP|STATIC)$/ ) ) {
259 print <<END;
260 </select>
261 <input type='submit' name='ACTION' value='$Lang::tr{'dial profile'}' $dialButtonDisabled />
262 </form>
263 <td align='center'>
264 <table width='100%' border='0'>
265 <tr>
266 <td width='50%' align='right'> <form method='post' action='$ENV{'SCRIPT_NAME'}'>
267 <input type='submit' name='ACTION' value='$Lang::tr{'dial'}'>
268 </form>
269 <td width='50%' align='left'> <form method='post' action='$ENV{'SCRIPT_NAME'}'>
270 <input type='submit' name='ACTION' value='$Lang::tr{'hangup'}'>
271 </form>
272 </table>
273 END
274 } else {
275 print "$Lang::tr{'profile has errors'}\n </b></font>\n";
276 }
277 }
278 my $HOSTNAME = (gethostbyaddr(pack("C4", split(/\./, $ipaddr)), 2))[0];
279 if ( "$HOSTNAME" ne "" ) {
280 print <<END;
281 <tr><td><b>Hostname:</b><td align='center'>$HOSTNAME<td>&nbsp;
282 END
283 }
284
285 if ( -e "/var/ipfire/red/remote-ipaddress" ) {
286 my $GATEWAY = `cat /var/ipfire/red/remote-ipaddress`;
287 chomp($GATEWAY);
288 print <<END;
289 <tr><td><b>Gateway:</b><td align='center'>$GATEWAY<td>&nbsp;
290 END
291 }
292
293 my $DNS1 = `cat /var/ipfire/red/dns1`;
294 my $DNS2 = `cat /var/ipfire/red/dns2`;
295 chomp($DNS1);
296 chomp($DNS1);
297
298 if ( $DNS1 ) { print <<END;
299 <tr><td><b>DNS-Server:</b><td align='center'>$DNS1
300 END
301 }
302 if ( $DNS2 ) { print <<END;
303 <td align='center'>$DNS2
304 END
305 } else { print <<END;
306 <td>&nbsp;
307 END
308 }
309
310 if ( $netsettings{'GREEN_DEV'} ) { print <<END;
311 <tr><td align='center' bgcolor='$Header::colourgreen' width='25%'><a href="/cgi-bin/dhcp.cgi"><font size='2' color='white'><b>$Lang::tr{'lan'}</b></font></a>
312 <td width='30%' align='center'>$netsettings{'GREEN_ADDRESS'}
313 <td width='45%' align='center'>
314 END
315 if ( `cat /var/ipfire/proxy/advanced/settings | grep ^ENABLE=on` ) {
316 print "Proxy an";
317 if ( `cat /var/ipfire/proxy/advanced/settings | grep ^TRANSPARENT=on` ) { print " (transparent)"; }
318 } else { print "Proxy aus"; }
319 }
320 if ( $netsettings{'BLUE_DEV'} ) { print <<END;
321 <tr><td align='center' bgcolor='$Header::colourblue' width='25%'><a href="/cgi-bin/wireless.cgi"><font size='2' color='white'><b>$Lang::tr{'wireless'}</b></font></a><br>
322 <td width='30%' align='center'>$netsettings{'BLUE_ADDRESS'}
323 <td width='45%' align='center'>
324 END
325 if ( `cat /var/ipfire/proxy/advanced/settings | grep ^ENABLE_BLUE=on` ) {
326 print "Proxy an";
327 if ( `cat /var/ipfire/proxy/advanced/settings | grep ^TRANSPARENT_BLUE=on` ) { print " (transparent)"; }
328 } else { print "Proxy aus"; }
329 }
330 if ( $netsettings{'ORANGE_DEV'} ) { print <<END;
331 <tr><td align='center' bgcolor='$Header::colourorange' width='25%'><a href="/cgi-bin/dmzholes.cgi"><font size='2' color='white'><b>$Lang::tr{'dmz'}</b></font></a><br>
332 <td width='30%' align='center'>$netsettings{'ORANGE_ADDRESS'}
333 <td width='45%' align='center'><font color=$Header::colourgreen>Online</font>
334 END
335 }
336 if ( `cat /var/ipfire/vpn/settings | grep ^ENABLED=on` ||
337 `cat /var/ipfire/vpn/settings | grep ^ENABLED_BLUE=on` ) {
338 my $ipsecip = `cat /var/ipfire/vpn/settings | grep ^VPN_IP= | cut -c 8-`;
339 my @status = `/usr/sbin/ipsec auto --status`;
340 my %confighash = ();
341 &General::readhasharray("${General::swroot}/vpn/config", \%confighash);
342 print <<END;
343 <tr><td align='center' bgcolor='$Header::colourvpn' width='25%'><a href="/cgi-bin/vpnmain.cgi"><font size='2' color='white'><b>$Lang::tr{'vpn'}</b></font></a><br>
344 <td width='30%' align='center'>$ipsecip
345 <td width='45%' align='center'><font color=$Header::colourgreen>Online</font>
346 END
347 my $id = 0;
348 my $gif;
349 foreach my $key (keys %confighash) {
350 if ($confighash{$key}[0] eq 'on') { $gif = 'on.gif'; } else { $gif = 'off.gif'; }
351
352 if ($id % 2) {
353 print "<tr><td align='left' nowrap='nowrap' bgcolor='$color{'color20'}'>$confighash{$key}[1] / " . $Lang::tr{"$confighash{$key}[3]"} . " (" . $Lang::tr{"$confighash{$key}[4]"} . ")</td><td align='center'>$confighash{$key}[11]</td>";
354 } else {
355 print "<tr></td><td align='left' nowrap='nowrap' bgcolor='$color{'color22'}'>$confighash{$key}[1] / " . $Lang::tr{"$confighash{$key}[3]"} . " (" . $Lang::tr{"$confighash{$key}[4]"} . ")</td><td align='center'>$confighash{$key}[11]</td>";
356 }
357
358 my $active = "<table cellpadding='2' cellspacing='0' bgcolor='${Header::colourred}' width='100%'><tr><td align='center'><b><font color='#FFFFFF'>$Lang::tr{'capsclosed'}</font></b></td></tr></table>";
359 if ($confighash{$key}[0] eq 'off') {
360 $active = "<table cellpadding='2' cellspacing='0' bgcolor='${Header::colourblue}' width='100%'><tr><td align='center'><b><font color='#FFFFFF'>$Lang::tr{'capsclosed'}</font></b></td></tr></table>";
361 } else {
362 foreach my $line (@status) {
363 if ($line =~ /\"$confighash{$key}[1]\".*IPsec SA established/) {
364 $active = "<table cellpadding='2' cellspacing='0' bgcolor='${Header::colourgreen}' width='100%'><tr><td align='center'><b><font color='#FFFFFF'>$Lang::tr{'capsopen'}</font></b></td></tr></table>";
365 }
366 }
367 }
368 print "<td align='center'>$active</td>";
369 }
370 }
371 if ( `cat /var/ipfire/ovpn/settings | grep ^ENABLED=on` ||
372 `cat /var/ipfire/ovpn/settings | grep ^ENABLED_BLUE=on` ||
373 `cat /var/ipfire/ovpn/settings | grep ^ENABLED_ORANGE=on`) {
374 my $ovpnip = `cat /var/ipfire/ovpn/settings | grep ^DOVPN_SUBNET= | cut -c 14- | sed -e 's\/\\/255.255.255.0\/\/'`;
375 print <<END;
376 <tr><td align='center' bgcolor='$Header::colourovpn' width='25%'><a href="/cgi-bin/ovpnmain.cgi"><font size='2' color='white'><b>OpenVPN</b></font></a><br>
377 <td width='30%' align='center'>$ovpnip
378 <td width='45%' align='center'><font color=$Header::colourgreen>Online</font>
379 END
380 }
381
382 # Memory usage warning
383 my @free = `/usr/bin/free`;
384 $free[1] =~ m/(\d+)/;
385 my $mem = $1;
386 $free[2] =~ m/(\d+)/;
387 my $used = $1;
388 my $pct = int 100 * ($mem - $used) / $mem;
389 if ($used / $mem > 90) {
390 $warnmessage .= "<li> $Lang::tr{'high memory usage'}: $pct% !</li>\n";
391 }
392
393 # Diskspace usage warning
394 my @temp=();
395 my $temp2=();
396 my @df = `/bin/df -B M -x rootfs`;
397 foreach my $line (@df) {
398 next if $line =~ m/^Filesystem/;
399 if ($line =~ m/root/ ) {
400 $line =~ m/^.* (\d+)M.*$/;
401 @temp = split(/ +/,$line);
402 if ($1<5) {
403 # available:plain value in MB, and not %used as 10% is too much to waste on small disk
404 # and root size should not vary during time
405 $warnmessage .= "$Lang::tr{'filesystem full'}: $temp[0] <b>$Lang::tr{'free'}=$1M</b> !\n";
406 }
407
408 } else {
409 # $line =~ m/^.* (\d+)m.*$/;
410 $line =~ m/^.* (\d+)\%.*$/;
411 if ($1>90) {
412 @temp = split(/ /,$line);
413 $temp2=int(100-$1);
414 $warnmessage .= "$Lang::tr{'filesystem full'}: $temp[0] <b>$Lang::tr{'free'}=$temp2%</b> !\n";
415 }
416 }
417 }
418
419 if ($warnmessage) {
420 print "<tr><td align='center' bgcolor=$Header::colourred colspan='3'><font color='white'>$warnmessage</font></table>";
421 }
422 print <<END;
423 </table>
424
425 END
426 } else {
427 my $message='';
428 if ($death) {
429 $message = $Lang::tr{'ipfire has now shutdown'};
430 } else {
431 $message = $Lang::tr{'ipfire has now rebooted'};
432 }
433 print <<END
434 <div align='center'>
435 <table width='100%' bgcolor='#ffffff'>
436 <tr><td align='center'>
437 <br /><br /><img src='/images/IPFire.png' /><br /><br /><br />
438 </td></tr>
439 </table>
440 <br />
441 <font size='6'>$message</font>
442 </div>
443 END
444 ;
445
446 }
447
448 &Header::closebox();
449 &Header::closebigbox();
450 &Header::closepage();