]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - html/cgi-bin/p2p-block.cgi
IPsec: Add dropdown to select tunnel interface mode
[people/pmueller/ipfire-2.x.git] / html / cgi-bin / p2p-block.cgi
CommitLineData
7bf83f9d
AM
1#!/usr/bin/perl
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
4f585d55 5# Copyright (C) 2013 #
7bf83f9d
AM
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###############################################################################
4f585d55
AM
21# Author: Alexander Marx (Amarx@ipfire.org) #
22###############################################################################
7bf83f9d
AM
23
24use strict;
25no warnings 'uninitialized';
26# enable only the following on debugging purpose
27#use warnings;
28#use CGI::Carp 'fatalsToBrowser';
29
30require '/var/ipfire/general-functions.pl';
31require "${General::swroot}/lang.pl";
32require "${General::swroot}/header.pl";
33
4a75efa5 34my $errormessage = '';
e9a05623 35my $notice;
6d8eb5de 36my $p2pfile = "${General::swroot}/firewall/p2protocols";
7bf83f9d
AM
37
38my @p2ps = ();
4a75efa5
MT
39my %fwdfwsettings = ();
40my %color = ();
41my %mainsettings = ();
7bf83f9d 42
7bf83f9d
AM
43&General::readhash("${General::swroot}/main/settings", \%mainsettings);
44&General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \%color);
45
7bf83f9d
AM
46&Header::showhttpheaders();
47&Header::getcgihash(\%fwdfwsettings);
7bf83f9d 48
0e430797 49if ($fwdfwsettings{'ACTION'} eq 'togglep2p') {
4a75efa5 50 open( FILE, "<$p2pfile") or die "Unable to read $p2pfile";
7bf83f9d
AM
51 @p2ps = <FILE>;
52 close FILE;
4a75efa5
MT
53 open( FILE, ">$p2pfile") or die "Unable to write $p2pfile";
54 foreach my $p2pentry (sort @p2ps) {
55 my @p2pline = split( /\;/, $p2pentry);
7bf83f9d 56 if ($p2pline[1] eq $fwdfwsettings{'P2PROT'}) {
4a75efa5
MT
57 if ($p2pline[2] eq 'on') {
58 $p2pline[2] = 'off';
59 } else {
60 $p2pline[2] = 'on';
7bf83f9d
AM
61 }
62 }
63 print FILE "$p2pline[0];$p2pline[1];$p2pline[2];\n";
64 }
65 close FILE;
7bf83f9d 66
0e430797 67 &General::firewall_config_changed();
e9a05623
MT
68
69 $notice = $Lang::tr{'p2p block save notice'};
0e430797 70}
7bf83f9d 71
e9a05623
MT
72&Header::openpage($Lang::tr{'p2p block'}, 1, '');
73&Header::openbigbox('100%', 'center', $errormessage);
4a75efa5 74
e9a05623
MT
75if ($notice) {
76 &Header::openbox('100%', 'left', $Lang::tr{'notice'});
77 print "<font class='base'>$notice</font>";
78 &Header::closebox();
79}
4a75efa5 80
e9a05623
MT
81my $gif;
82
83open(FILE, "<$p2pfile") or die "Unable to read $p2pfile";
84@p2ps = <FILE>;
85close FILE;
86
57ba5e81 87&Header::openbox('100%', 'center',);
e9a05623 88print <<END;
783bf6af
AM
89 <table width='35%' class='tbl'>
90 <tr>
631b67b7 91 <th align='center' colspan='2' bgcolor='$color{'color22'}' >
e9a05623 92 <b>$Lang::tr{'protocol'}</b>
783bf6af 93 </th>
631b67b7 94 <th align='center' bgcolor='$color{'color22'}' >
e9a05623 95 <b>$Lang::tr{'status'}</b>
783bf6af 96 </th>
e9a05623 97 </tr>
7bf83f9d 98END
783bf6af
AM
99my $lines=0;
100my $col="";
e9a05623
MT
101foreach my $p2pentry (sort @p2ps) {
102 my @p2pline = split( /\;/, $p2pentry);
103 if ($p2pline[2] eq 'on') {
104 $gif = "/images/on.gif"
105 } else {
106 $gif = "/images/off.gif"
7bf83f9d 107 }
783bf6af
AM
108 if ($lines % 2) {
109 print "<tr>";
110 $col="bgcolor='$color{'color20'}'"; }
111 else {
112 print "<tr>";
113 $col="bgcolor='$color{'color22'}'"; }
4a75efa5 114 print <<END;
783bf6af 115 <td align='center' colspan='2' $col>
e9a05623
MT
116 $p2pline[0]:
117 </td>
783bf6af 118 <td align='center' $col>
e9a05623
MT
119 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
120 <input type='hidden' name='P2PROT' value='$p2pline[1]'>
121 <input type='image' img src='$gif' alt='$Lang::tr{'click to disable'}' title='$Lang::tr{'fwdfw toggle'}' style='padding-top: 0px; padding-left: 0px; padding-bottom: 0px ;padding-right: 0px ;display: block;'>
122 <input type='hidden' name='ACTION' value='togglep2p'>
123 </form>
124 </td>
125 </tr>
4a75efa5 126END
783bf6af 127$lines++;
7bf83f9d 128}
0e430797 129
e9a05623 130print <<END;
783bf6af 131</table><table>
e9a05623
MT
132 <tr>
133 <td>
134 <img src='/images/on.gif'>
135 </td>
136 <td>
137 $Lang::tr{'outgoing firewall p2p allow'}
138 </td>
139 </tr>
140 <tr>
141 <td>
142 <img src='/images/off.gif'>
143 </td>
144 <td>
145 $Lang::tr{'outgoing firewall p2p deny'}
146 </td>
147 </tr>
148 </table>
149END
150
151&Header::closebox();
152
7bf83f9d
AM
153&Header::closebigbox();
154&Header::closepage();