1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364
|
#!/usr/local/bin/perl
# index.cgi
# Display current iptables firewall configuration from save file
require './firewall-lib.pl';
&ReadParse();
&ui_print_header(undef, $text{'index_title'}, undef, "intro", 1, 1, 0,
&help_search_link("iptables", "man", "doc"));
# Check for iptables and iptables-restore commands
if ($c = &missing_firewall_commands()) {
print "<p>",&text('index_ecommand', "<tt>$c</tt>"),"<p>\n";
&ui_print_footer("/", $text{'index'});
exit;
}
# Check if the kernel supports iptables
$out = `iptables -n -t filter -L OUTPUT 2>&1`;
if ($?) {
print "<p>",&text('index_ekernel', "<pre>$out</pre>"),"<p>\n";
&ui_print_footer("/", $text{'index'});
exit;
}
# Check if the distro supports iptables
if (!$config{'direct'} && defined(&check_iptables) &&
($err = &check_iptables())) {
print "<p>$err</p>\n";
&ui_print_footer("/", $text{'index'});
exit;
}
# Check if firewall is being started at boot
if (!$config{'direct'} && &foreign_check("init")) {
$init_support++;
if (defined(&started_at_boot)) {
$atboot = &started_at_boot();
}
else {
&foreign_require("init", "init-lib.pl");
$atboot = &init::action_status("webmin-iptables") == 2;
}
}
# Check if the save file exists. If not, check for any existing firewall
# rules, and offer to create a save file from them
@livetables = &get_iptables_save("iptables-save |");
&shorewall_message(\@livetables);
if (!$config{'direct'} &&
(!-s $iptables_save_file || $in{'reset'}) && $access{'setup'}) {
@tables = @livetables;
foreach $t (@tables) {
$rules++ if (@{$t->{'rules'}});
foreach $c (keys %{$t->{'defaults'}}) {
$chains++ if ($t->{'defaults'}->{$c} ne 'ACCEPT');
}
$hastable{$t->{'name'}}++;
}
foreach $t (@known_tables) {
system("iptables -t $t -n -L >/dev/null") if (!$hastable{$t});
}
if (!$in{'reset'} && ($rules || $chains)) {
# Offer to save the current rules
print &text('index_existing', $rules,
"<tt>$iptables_save_file</tt>"),"<p>\n";
print "<form action=convert.cgi>\n";
print "<center><input type=submit ",
"value='$text{'index_saveex'}'><p>\n";
if ($init_support && !$atboot) {
print "<input type=checkbox name=atboot value=1> ",
"$text{'index_atboot'}\n";
}
print "</center></form><p>\n";
print "<table border width=100%>\n";
print "<tr $tb><td><b>$text{'index_headerex'}</b></td></tr>\n";
print "<tr $cb> <td><pre>";
open(OUT, "iptables-save |");
while(<OUT>) {
print &html_escape($_);
}
close(OUT);
print "</pre></td> </tr></table>\n";
}
else {
# Offer to set up a firewall
print &text($in{'reset'} ? 'index_rsetup' : 'index_setup',
"<tt>$iptables_save_file</tt>"),"<p>\n";
print "<form action=setup.cgi>\n";
print "<input type=hidden name=reset value='$in{'reset'}'>\n";
print "<center><table><tr><td>\n";
print "<input type=radio name=auto value=0 checked> ",
"$text{'index_auto0'}<p>\n";
foreach $a (1 .. 4) {
print "<input type=radio name=auto value=$a> ",
"$text{'index_auto'.$a} ",
&interface_choice("iface".$a),"<p>\n";
}
print "</td></tr></table>\n";
print "<input type=submit value='$text{'index_auto'}'><p>\n";
if ($init_support && !$atboot) {
print "<input type=checkbox name=atboot value=1> ",
"$text{'index_atboot'}\n";
}
print "</center></form>\n";
}
}
else {
@tables = &get_iptables_save();
if (!$config{'direct'}) {
# Verify that all known tables exist, and if not add them to the
# save file
foreach $t (@tables) {
$hastable{$t->{'name'}}++;
}
foreach $t (@known_tables) {
if (!$hastable{$t}) {
local ($missing) = &get_iptables_save(
"iptables-save --table $t |");
if ($missing) {
delete($missing->{'line'});
&save_table($missing);
}
$need_reload++;
}
}
@tables = &get_iptables_save() if ($need_reload);
}
# Work out the default table
if (!defined($in{'table'})) {
foreach $t (@tables) {
if (@{$t->{'rules'}} && &can_edit_table($t->{'name'})) {
$in{'table'} = $t->{'index'};
last;
}
}
}
if (!defined($in{'table'})) {
foreach $t (@tables) {
if (&can_edit_table($t->{'name'})) {
$in{'table'} = $t->{'index'};
last;
}
}
}
$table = $tables[$in{'table'}];
# Allow selection of a table
print "<table width=100%><tr>\n";
print "<form action=index.cgi>\n";
print "<td><input type=submit value='$text{'index_change'}'>\n";
print "<select name=table>\n";
foreach $t (@tables) {
if (&can_edit_table($t->{'name'})) {
printf "<option value=%s %s>%s\n",
$t->{'index'}, $t eq $table ? "selected" : "",
&text('index_table_'.$t->{'name'}) || $t->{'name'};
}
}
print "</select></td></form>\n";
print "<form action=newchain.cgi>\n";
print "<td align=right><input type=hidden name=table ",
"value='$in{'table'}'>\n";
print "<input type=submit value='$text{'index_cadd'}'>\n";
print "<input name=chain size=20></td></form>\n";
print "</tr></table>\n";
# Display a table of rules for each chain
foreach $c (sort by_string_for_iptables keys %{$table->{'defaults'}}) {
print "<hr>\n";
@rules = grep { lc($_->{'chain'}) eq lc($c) }
@{$table->{'rules'}};
print "<b>",$text{"index_chain_".lc($c)} ||
&text('index_chain', "<tt>$c</tt>"),"</b><br>\n";
print "<form action=save_policy.cgi>\n";
print "<input type=hidden name=table value='$in{'table'}'>\n";
print "<input type=hidden name=chain value='$c'>\n";
if (@rules) {
print "<table border width=100%>\n";
print "<tr $tb> ",
"<td width=10%><b>$text{'index_action'}</b></td>";
if ($config{'view_condition'} && $config{'view_comment'}){
print "<td><b>$text{'index_desc'}</b></td> ";
print "<td><b>$text{'index_comm'}</b></td> ";}
elsif ($config{'view_condition'}){
print "<td><b>$text{'index_desc'}</b></td> ";}
elsif ($config{'view_comment'}){
print "<td><b>$text{'index_comm'}</b></td> ";}
else{ print "<td><b>$text{'index_no_comment'}</b></td>"};
print "<td width=5%><b>$text{'index_move'}</b></td> ",
"<td width=5%><b>$text{'index_add'}</b></td> ",
"</tr>\n";
foreach $r (@rules) {
print "<tr $cb>\n";
local $act =
$text{"index_jump_".lc($r->{'j'}->[1])} ||
&text('index_jump', $r->{'j'}->[1]);
print "<td nowrap width=10%><a href='edit_rule.cgi?table=$in{'table'}&idx=$r->{'index'}'>$act</a></td>\n";
if ($config{'view_condition'} && $config{'view_comment'}){
print "<td>",&describe_rule($r),"</td>\n";
print "<td>",$r->{'cmt'} || "<br>","</td>\n";
}
elsif ($config{'view_condition'}) {
print "<td>",&describe_rule($r),"</td>\n";
}
elsif ($config{'view_comment'}) {
print "<td>",$r->{'cmt'} || "<br>","</td>\n";
}
else{ print "<td>-</td>"};
print "<td width=5%>";
if ($r eq $rules[@rules-1]) {
print "<img src=images/gap.gif>";
}
else {
print "<a href='move.cgi?table=",
"$in{'table'}&idx=$r->{'index'}&",
"down=1'><img src=",
"images/down.gif border=0></a>";
}
if ($r eq $rules[0]) {
print "<img src=images/gap.gif>";
}
else {
print "<a href='move.cgi?table=",
"$in{'table'}&idx=$r->{'index'}&",
"up=1'><img src=images/up.gif ",
"border=0></a>";
}
print "</td>\n";
print "<td width=5% nowrap>\n";
print "<a href='edit_rule.cgi?table=",
"$in{'table'}&chain=$c&new=1&",
"after=$r->{'index'}'><img src=",
"images/after.gif border=0></a>";
print "<a href='edit_rule.cgi?table=",
"$in{'table'}&chain=$c&new=1&",
"before=$r->{'index'}'><img src=",
"images/before.gif border=0></a>";
print "</td>\n";
print "</tr>\n";
}
print "</table>\n";
}
else {
print "<b>$text{'index_none'}</b><br>\n";
}
# Show policy changing button for chains that support it,
# and rule-adding button
print "<table width=100%><tr>\n";
local $d = $table->{'defaults'}->{$c};
if ($d ne '-') {
print "<td width=33% nowrap><input type=submit ",
"value='$text{'index_policy'}'>\n";
print "<select name=policy>\n";
foreach $t ('ACCEPT', 'DROP', 'QUEUE', 'RETURN') {
printf "<option value=%s %s>%s\n",
$t, $d eq $t ? "selected" : "",
$text{"index_policy_".lc($t)};
}
print "</select></td>\n";
print "<td align=center width=33%>\n";
if (@rules) {
print "<input type=submit name=clear ",
"value='$text{'index_cclear'}'>\n";
}
print "</td>\n";
}
else {
print "<td width=66%><input type=submit name=delete ",
"value='$text{'index_cdelete'}'></td>\n";
}
print "<td align=right width=33%><input type=submit name=add ",
"value='$text{'index_radd'}'></td>\n";
print "</tr></table></form>\n";
}
# Display buttons for applying and un-applying the configuration,
# and for creating an init script if possible
print "<hr>\n";
print "<table width=100%>\n";
if (!$config{'direct'}) {
if (&foreign_check("servers")) {
@servers = &list_cluster_servers();
}
if ($access{'apply'}) {
print "<tr><form action=apply.cgi>\n";
print "<input type=hidden name=table value='$in{'table'}'>\n";
print "<td><input type=submit ",
"value='$text{'index_apply'}'></td>\n";
if (@servers) {
print "<td>$text{'index_applydesc2'}</td>\n";
}
else {
print "<td>$text{'index_applydesc'}</td>\n";
}
print "</form></tr>\n";
}
if ($access{'unapply'}) {
print "<tr><form action=unapply.cgi>\n";
print "<input type=hidden name=table value='$in{'table'}'>\n";
print "<td><input type=submit ",
"value='$text{'index_unapply'}'></td>\n";
print "<td>$text{'index_unapplydesc'}</td>\n";
print "</form></tr>\n";
}
if ($init_support && $access{'bootup'}) {
print "<tr><form action=bootup.cgi>\n";
print "<input type=hidden name=table ",
"value='$in{'table'}'>\n";
print "<td nowrap><input type=submit ",
"value='$text{'index_bootup'}'>\n";
printf "<input type=radio name=boot value=1 %s> %s\n",
$atboot ? "checked" : "", $text{'yes'};
printf "<input type=radio name=boot value=0 %s> %s\n",
$atboot ? "" : "checked", $text{'no'};
print "</td> <td>$text{'index_bootupdesc'}</td>\n";
print "</form></tr>\n";
}
if ($access{'setup'}) {
print "<tr><form action=index.cgi>\n";
print "<input type=hidden name=reset value=1>\n";
print "<td><input type=submit ",
"value='$text{'index_reset'}'></td>\n";
print "<td>$text{'index_resetdesc'}</td>\n";
print "</form></tr>\n";
}
}
# Show button for cluster page
if (&foreign_check("servers")) {
&foreign_require("servers", "servers-lib.pl");
@allservers = grep { $_->{'user'} }
&servers::list_servers();
}
if ($access{'cluster'} && @allservers) {
print "<tr><form action=cluster.cgi>\n";
print "<td><input type=submit ",
"value='$text{'index_cluster'}'></td>\n";
print "<td>$text{'index_clusterdesc'}</td>\n";
print "</form></tr>\n";
}
print "</table>\n";
}
&ui_print_footer("/", $text{'index'});
sub shorewall_message
{
local ($filter) = grep { $_->{'name'} eq 'filter' } @{$_[0]};
if ($filter->{'defaults'}->{'shorewall'}) {
print "<b><center>",
&text('index_shorewall', "$gconfig{'webprefix'}/shorewall/"),
"</b></center><p>\n";
}
}
|