]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - html/cgi-bin/dnsforward.cgi
IPsec: Add dropdown to select tunnel interface mode
[people/pmueller/ipfire-2.x.git] / html / cgi-bin / dnsforward.cgi
1 #!/usr/bin/perl
2 ###############################################################################
3 # #
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2013 IPFire Development 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
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 #workaround to suppress a warning when a variable is used only once
33 my @dummy = ( ${Header::colouryellow} );
34 undef (@dummy);
35
36 my %cgiparams=();
37 my %checked=();
38 my %selected=();
39 my $errormessage = '';
40 my $filename = "${General::swroot}/dnsforward/config";
41 my $changed = 'no';
42
43 my %color = ();
44 my %mainsettings = ();
45 &General::readhash("${General::swroot}/main/settings", \%mainsettings);
46 &General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \%color);
47
48 &Header::showhttpheaders();
49
50 $cgiparams{'ENABLED'} = 'off';
51 $cgiparams{'ACTION'} = '';
52 $cgiparams{'ZONE'} = '';
53 $cgiparams{'FORWARD_SERVERS'} = '';
54 $cgiparams{'REMARK'} ='';
55 &Header::getcgihash(\%cgiparams);
56 open(FILE, $filename) or die 'Unable to open config file.';
57 my @current = <FILE>;
58 close(FILE);
59
60 ###
61 # Add / Edit entries.
62 #
63 if ($cgiparams{'ACTION'} eq $Lang::tr{'add'})
64 {
65 # Check if the entered domainname is valid.
66 unless (&General::validdomainname($cgiparams{'ZONE'})) {
67 $errormessage = $Lang::tr{'invalid domain name'};
68 }
69
70 my @forward_servers = split(/\,/, $cgiparams{'FORWARD_SERVERS'});
71 foreach my $forward_server (@forward_servers) {
72 # Check if the settings for the forward server are valid.
73 unless(&General::validip($forward_server) || &General::validfqdn($forward_server)) {
74 $errormessage = "$Lang::tr{'invalid ip or hostname'}: $forward_server";
75 last;
76 }
77 }
78
79 # Go further if there was no error.
80 if ( ! $errormessage)
81 {
82 # Save servers separated by |
83 $cgiparams{'FORWARD_SERVERS'} = join("|", @forward_servers);
84
85 # Check if a remark has been entered.
86 $cgiparams{'REMARK'} = &Header::cleanhtml($cgiparams{'REMARK'});
87
88 # Check if we want to edit an existing or add a new entry.
89 if($cgiparams{'EDITING'} eq 'no') {
90 open(FILE,">>$filename") or die 'Unable to open config file.';
91 flock FILE, 2;
92 print FILE "$cgiparams{'ENABLED'},$cgiparams{'ZONE'},$cgiparams{'FORWARD_SERVERS'},$cgiparams{'REMARK'}\n";
93 } else {
94 open(FILE, ">$filename") or die 'Unable to open config file.';
95 flock FILE, 2;
96 my $id = 0;
97 foreach my $line (@current)
98 {
99 $id++;
100 if ($cgiparams{'EDITING'} eq $id) {
101 print FILE "$cgiparams{'ENABLED'},$cgiparams{'ZONE'},$cgiparams{'FORWARD_SERVERS'},$cgiparams{'REMARK'}\n";
102 } else { print FILE "$line"; }
103 }
104 }
105 close(FILE);
106 undef %cgiparams;
107 $changed = 'yes';
108 } else {
109 # stay on edit mode if an error occur
110 if ($cgiparams{'EDITING'} ne 'no')
111 {
112 $cgiparams{'ACTION'} = $Lang::tr{'edit'};
113 $cgiparams{'ID'} = $cgiparams{'EDITING'};
114 }
115 }
116 # Restart unbound
117 system('/usr/local/bin/unboundctrl restart >/dev/null');
118 }
119
120 ###
121 # Remove existing entries.
122 #
123 if ($cgiparams{'ACTION'} eq $Lang::tr{'remove'})
124 {
125 my $id = 0;
126 open(FILE, ">$filename") or die 'Unable to open config file.';
127 flock FILE, 2;
128 foreach my $line (@current)
129 {
130 $id++;
131 unless ($cgiparams{'ID'} eq $id) { print FILE "$line"; }
132 }
133 close(FILE);
134 # Restart unbound.
135 system('/usr/local/bin/unboundctrl restart >/dev/null');
136 }
137
138 ###
139 # Toggle Enable/Disable for entries.
140 #
141 if ($cgiparams{'ACTION'} eq $Lang::tr{'toggle enable disable'})
142 {
143 open(FILE, ">$filename") or die 'Unable to open config file.';
144 flock FILE, 2;
145 my $id = 0;
146 foreach my $line (@current)
147 {
148 $id++;
149 unless ($cgiparams{'ID'} eq $id) { print FILE "$line"; }
150 else
151 {
152 chomp($line);
153 my @temp = split(/\,/,$line);
154 print FILE "$cgiparams{'ENABLE'},$temp[1],$temp[2],$temp[3]\n";
155 }
156 }
157 close(FILE);
158 # Restart unbound.
159 system('/usr/local/bin/unboundctrl restart >/dev/null');
160 }
161
162 ###
163 # Read items for edit mode.
164 #
165 if ($cgiparams{'ACTION'} eq $Lang::tr{'edit'})
166 {
167 my $id = 0;
168 foreach my $line (@current)
169 {
170 $id++;
171 if ($cgiparams{'ID'} eq $id)
172 {
173 chomp($line);
174 my @temp = split(/\,/,$line);
175 $cgiparams{'ENABLED'} = $temp[0];
176 $cgiparams{'ZONE'} = $temp[1];
177 $cgiparams{'FORWARD_SERVERS'} = join(",", split(/\|/, $temp[2]));
178 $cgiparams{'REMARK'} = $temp[3];
179 }
180 }
181 }
182
183 $checked{'ENABLED'}{'off'} = '';
184 $checked{'ENABLED'}{'on'} = '';
185 $checked{'ENABLED'}{$cgiparams{'ENABLED'}} = "checked='checked'";
186
187 &Header::openpage($Lang::tr{'dnsforward configuration'}, 1, '');
188
189 &Header::openbigbox('100%', 'left', '', $errormessage);
190
191 ###
192 # Error messages layout.
193 #
194 if ($errormessage) {
195 &Header::openbox('100%', 'left', $Lang::tr{'error messages'});
196 print "<class name='base'>$errormessage\n";
197 print "&nbsp;</class>\n";
198 &Header::closebox();
199 }
200
201 print "<form method='post' action='$ENV{'SCRIPT_NAME'}'>\n";
202
203 my $buttontext = $Lang::tr{'add'};
204 if ($cgiparams{'ACTION'} eq $Lang::tr{'edit'}) {
205 &Header::openbox('100%', 'left', $Lang::tr{'dnsforward edit an entry'});
206 $buttontext = $Lang::tr{'update'};
207 } else {
208 &Header::openbox('100%', 'left', $Lang::tr{'dnsforward add a new entry'});
209 }
210
211 ###
212 # Content of the main page.
213 #
214 print <<END
215 <table width='100%'>
216 <tr>
217 <td width='20%' class='base'>$Lang::tr{'dnsforward zone'}:&nbsp;<img src='/blob.gif' alt='*' /></td>
218 <td><input type='text' name='ZONE' value='$cgiparams{'ZONE'}' size='24' /></td>
219 <td width='30%' class='base'>$Lang::tr{'enabled'}<input type='checkbox' name='ENABLED' $checked{'ENABLED'}{'on'} /></td>
220 </tr>
221
222 <tr>
223 <td width='20%' class='base'>$Lang::tr{'dnsforward forward_servers'}:&nbsp;<img src='/blob.gif' alt='*' /></td>
224 <td><input type='text' name='FORWARD_SERVERS' value='$cgiparams{'FORWARD_SERVERS'}' size='24' /></td>
225 </tr>
226 </table>
227
228 <table width='100%'>
229 <tr>
230 <td width ='20%' class='base'>$Lang::tr{'remark'}:</td>
231 <td><input type='text' name='REMARK' value='$cgiparams{'REMARK'}' size='40' maxlength='50' /></td>
232 </tr>
233 </table>
234 <br>
235 <hr>
236
237 <table width='100%'>
238 <tr>
239 <td class='base' width='55%'><img src='/blob.gif' alt ='*' align='top' />&nbsp;$Lang::tr{'required field'}</td>
240 <td width='40%' align='right'>
241 <input type='hidden' name='ACTION' value='$Lang::tr{'add'}' />
242 <input type='submit' name='SUBMIT' value='$buttontext' />
243 </td>
244 </tr>
245 </table>
246 END
247 ;
248 if ($cgiparams{'ACTION'} eq $Lang::tr{'edit'}) {
249 print "<input type='hidden' name='EDITING' value='$cgiparams{'ID'}' />\n";
250 } else {
251 print "<input type='hidden' name='EDITING' value='no' />\n";
252 }
253
254 &Header::closebox();
255 print "</form>\n";
256
257 ###
258 # Existing rules.
259 #
260 &Header::openbox('100%', 'left', $Lang::tr{'dnsforward entries'});
261 print <<END
262 <table width='100%' class='tbl'>
263 <tr>
264 <th width='35%' class='boldbase' align='center'><b>$Lang::tr{'dnsforward zone'}</b></th>
265 <th width='30%' class='boldbase' align='center'><b>$Lang::tr{'dnsforward forward_servers'}</b></th>
266 <th width='30%' class='boldbase' align='center'><b>$Lang::tr{'remark'}</b></th>
267 <th width='5%' class='boldbase' colspan='3' align='center'><b>$Lang::tr{'action'}</b></th>
268 </tr>
269 END
270 ;
271
272 # If something has happened re-read config
273 if($cgiparams{'ACTION'} ne '' or $changed ne 'no')
274 {
275 open(FILE, $filename) or die 'Unable to open config file.';
276 @current = <FILE>;
277 close(FILE);
278 }
279
280 ###
281 # Re-read entries and highlight selected item for editing.
282 #
283 my $id = 0;
284 my $col="";
285 foreach my $line (@current)
286 {
287 $id++;
288 chomp($line);
289 my @temp = split(/\,/,$line);
290 my $toggle = '';
291 my $gif = '';
292 my $gdesc = '';
293 my $toggle = '';
294
295 # Format lists of servers
296 my $servers = join(", ", split(/\|/, $temp[2]));
297
298 if($cgiparams{'ACTION'} eq $Lang::tr{'edit'} && $cgiparams{'ID'} eq $id) {
299 print "<tr>";
300 $col="bgcolor='${Header::colouryellow}'"; }
301 elsif ($id % 2) {
302 print "<tr>";
303 $col="bgcolor='$color{'color22'}'"; }
304 else {
305 print "<tr>";
306 $col="bgcolor='$color{'color20'}'"; }
307
308 if ($temp[0] eq 'on') { $gif='on.gif'; $toggle='off'; $gdesc=$Lang::tr{'click to disable'};}
309 else { $gif='off.gif'; $toggle='on'; $gdesc=$Lang::tr{'click to enable'}; }
310
311 ###
312 # Display edit page.
313 #
314 print <<END
315 <td align='center' $col>$temp[1]</td>
316 <td align='center' $col>$servers</td>
317 <td align='center' $col>$temp[3]</td>
318 <td align='center' $col>
319 <form method='post' name='frma$id' action='$ENV{'SCRIPT_NAME'}'>
320 <input type='image' name='$Lang::tr{'toggle enable disable'}' src='/images/$gif' title='$gdesc' alt='$gdesc' />
321 <input type='hidden' name='ID' value='$id' />
322 <input type='hidden' name='ENABLE' value='$toggle' />
323 <input type='hidden' name='ACTION' value='$Lang::tr{'toggle enable disable'}' />
324 </form>
325 </td>
326 <td align='center' $col>
327 <form method='post' name='frmb$id' action='$ENV{'SCRIPT_NAME'}'>
328 <input type='image' name='$Lang::tr{'edit'}' src='/images/edit.gif' title='$Lang::tr{'edit'}' alt='$Lang::tr{'edit'}' />
329 <input type='hidden' name='ID' value='$id' />
330 <input type='hidden' name='ACTION' value='$Lang::tr{'edit'}' />
331 </form>
332 </td>
333 <td align='center' $col>
334 <form method='post' name='frmc$id' action='$ENV{'SCRIPT_NAME'}'>
335 <input type='image' name='$Lang::tr{'remove'}' src='/images/delete.gif' title='$Lang::tr{'remove'}' alt='$Lang::tr{'remove'}' />
336 <input type='hidden' name='ID' value='$id' />
337 <input type='hidden' name='ACTION' value='$Lang::tr{'remove'}' />
338 </form>
339 </td>
340 </tr>
341 END
342 ;
343 }
344 print "</table>\n";
345
346 ###
347 # Print the legend at the bottom if there are any configured entries.
348 #
349 # Check if the file size is zero - no existing entries.
350 if ( ! -z "$filename") {
351 print <<END
352 <table>
353 <tr>
354 <td class='boldbase'>&nbsp; <b>$Lang::tr{'legend'}:</b></td>
355 <td>&nbsp; <img src='/images/on.gif' alt='$Lang::tr{'click to disable'}' /></td>
356 <td class='base'>$Lang::tr{'click to disable'}</td>
357 <td>&nbsp; &nbsp; <img src='/images/off.gif' alt='$Lang::tr{'click to enable'}' /></td>
358 <td class='base'>$Lang::tr{'click to enable'}</td>
359 <td>&nbsp; &nbsp; <img src='/images/edit.gif' alt='$Lang::tr{'edit'}' /></td>
360 <td class='base'>$Lang::tr{'edit'}</td>
361 <td>&nbsp; &nbsp; <img src='/images/delete.gif' alt='$Lang::tr{'remove'}' /></td>
362 <td class='base'>$Lang::tr{'remove'}</td>
363 </tr>
364 </table>
365 END
366 ;
367 }
368
369 &Header::closebox();
370
371 &Header::closebigbox();
372
373 &Header::closepage();