",&text('index_enamed', "$config{'named_path'}", "@{[&get_webprefix()]}/config.cgi?$module_name"),"
\n"; &foreign_require("software", "software-lib.pl"); my $lnk = &software::missing_install_link("bind", $text{'index_bind'}, "../$module_name/", $text{'index_title'}); print $lnk,"
\n" if ($lnk); &ui_print_footer("/", $text{"index"}); exit; } # Try to get the version number, and save for later calls my $bind_version = &get_bind_version(); if ($bind_version && $bind_version =~ /^(\d+\.\d+)\./) { # Convert to properly formatted number $bind_version = $1; } my $VERSION; &open_tempfile($VERSION, ">$module_config_directory/version"); &print_tempfile($VERSION, "$bind_version\n"); &close_tempfile($VERSION); # Get the list of zones my @allzones = &list_zone_names(); my @zones = grep { $_->{'type'} ne 'view' && &can_edit_zone($_) && (!$access{'ro'} || $_->{'name'} ne '.') } @allzones; my @views = grep { $_->{'type'} eq 'view' } @allzones; @views = sort { $a->{'name'} cmp $b->{'name'} } @views; my @hashint = grep { $_->{'type'} ne 'view' && $_->{'name'} eq '.' } @allzones; if (@zones == 1 && $access{'zones'} ne '*' && !$access{'defaults'} && !$access{'views'} && $access{'apply'} != 1 && !$access{'master'} && !$access{'slave'} && !$access{'forward'} && $access{'noconfig'}) { # Only one zone, so go direct to it my $z = $zones[0]; &redirect("edit_master.cgi?zone=$z->{'name'}". ($z->{'viewindex'} eq '' ? '' : '&view='.$z->{'viewindex'})); exit; } my $chroot = &get_chroot() || ""; &ui_print_header(undef, $text{'index_title'}, "", undef, 1, 1, 0, &restart_links().''. &help_search_link("bind", "doc", "google"), undef, undef, &text($chroot eq "/" || !$chroot ? 'index_version' : 'index_chroot', &get_bind_version(), "$chroot")); # If the named.conf file does not exist, offer to create it if ($need_create) { print &text('index_eempty', "".&make_chroot($config{'named_conf'}).""),"
\n"; print &ui_form_start("dns_boot.cgi"); print &ui_radio("real", 1, [ [ 0, $text{'index_local'}."" ], [ 1, $text{'index_download'}."" ], [ 2, $text{'index_webmin'}."" ] ]); print &ui_form_end([ [ undef, $text{'index_create'} ] ]); &ui_print_footer("/", $text{"index"}); exit; } # Check for possibly invalid chroot, which shows up as missing zone files if (@zones && $access{'zones'} eq '*' && !$access{'ro'}) { my @missing; foreach my $z (@zones) { my $zonefile = &make_chroot(&absolute_path($z->{'file'})); if ($z->{'type'} eq 'master' && $z->{'file'} && !-r $zonefile) { push(@missing, $z); } } if (scalar(@missing) >= scalar(@zones)/2) { if ($chroot && $chroot ne '/') { print "
",&text('index_ewrongchroot', scalar(@missing), "$chroot"),"
\n"; } else { print "
",&text('index_emissingchroot', scalar(@missing)),"
\n"; } print "",&text('index_checkconfig', "../config.cgi?$module_name"),"
\n"; } } # Check for obsolete DNSSEC config if ($access{'defaults'}) { my $err = &check_dnssec_client(); print "
\n"; print &ui_form_start("find_zones.cgi"); print "$text{'index_find'}\n"; print &ui_textbox("search", undef, 20); print &ui_form_end([ [ undef, $text{'index_search'} ] ]); print &ui_links_row(\@crlinks); } elsif (@zones && (!@views || !$config{'by_view'})) { # Show all zones print &ui_subheading($text{'index_zones'}); if (&have_dnssec_tools_support()) { # Parse the rollrec file to determine zone status &lock_file($config{"dnssectools_rollrec"}); rollrec_lock(); rollrec_read($config{"dnssectools_rollrec"}); } foreach my $z (@zones) { my $v = $z->{'name'}; my $t = $z->{'type'}; next if (!$t); $t = "delegation" if ($t eq "delegation-only"); $t = "master" if ($t eq "primary"); $t = "slave" if ($t eq "secondary"); my $zn = $v eq "." ? "$text{'index_root'}" : &ip6int_to_net(&arpa_to_ip($v)); if ($z->{'view'}) { my $vw = $z->{'viewindex'}; push(@zlinks, "edit_$t.cgi?zone=$z->{'name'}". "&view=$vw"); push(@ztitles, $zn." ". &text('index_view', "$z->{'view'}")); push(@zdels, &can_edit_zone($z, $vw) ? $z->{'name'}." ".$z->{'viewindex'} : undef); } else { push(@zlinks, "edit_$t.cgi?zone=$z->{'name'}"); push(@ztitles, $zn); push(@zdels, &can_edit_zone($z) ? $z->{'name'} : undef); } push(@zsort, $t eq 'hint' ? undef : $ztitles[$#ztitles]); push(@zicons, "images/$t.gif"); push(@ztypes, $text{"index_$t"}); if (&have_dnssec_tools_support()) { my $rrr = rollrec_fullrec($v); if ($rrr) { if($rrr->{'kskphase'} > 0) { if($rrr->{'kskphase'} == 6) { push(@zstatus, $text{"dt_status_waitfords"}); } else { push(@zstatus, $text{"dt_status_inKSKroll"}); } } elsif($rrr->{'zskphase'} > 0) { push(@zstatus, $text{"dt_status_inZSKroll"}); } else { push(@zstatus, $text{"dt_status_signed"}); } } else { push(@zstatus, $text{"dt_status_unsigned"}); } } $zhash{$zn} = $z; $ztitlehash{$zn} = $ztitles[$#ztitles]; $zlinkhash{$zn} = $zlinks[$#zlinks]; $ztypeshash{$zn} = $ztypes[$#ztypes]; $zdelhash{$zn} = $zdels[$#zdels]; if (&have_dnssec_tools_support()) { $zstatushash{$zn} = $zstatus[$#zstatus]; } $len++; } if (&have_dnssec_tools_support()) { rollrec_close(); rollrec_unlock(); &unlock_file($config{"dnssectools_rollrec"}); } # sort list of zones @zorder = sort { &compare_zones($zsort[$a], $zsort[$b]) } (0 .. $len-1); @zlinks = map { $zlinks[$_] } @zorder; @ztitles = map { $ztitles[$_] } @zorder; @zicons = map { $zicons[$_] } @zorder; @ztypes = map { $ztypes[$_] } @zorder; @zdels = map { $zdels[$_] } @zorder; @zstatus = map { $zstatus[$_] } @zorder; print &ui_form_start("mass_delete.cgi", "post"); my @links = ( &select_all_link("d", 0), &select_invert_link("d", 0), @crlinks ); print &ui_links_row(\@links); if ($config{'show_list'} == 1) { # display as list my $mid = int((@zlinks+1)/2); my @grid = ( ); if (&have_dnssec_tools_support()) { push(@grid, &zones_table([ @zlinks[0 .. $mid-1] ], [ @ztitles[0 .. $mid-1] ], [ @ztypes[0 .. $mid-1] ], [ @zdels[0 .. $mid-1] ], [ @zstatus[0 .. $mid-1] ])); } else { push(@grid, &zones_table([ @zlinks[0 .. $mid-1] ], [ @ztitles[0 .. $mid-1] ], [ @ztypes[0 .. $mid-1] ], [ @zdels[0 .. $mid-1] ])); } if ($mid < @zlinks) { if (&have_dnssec_tools_support()) { push(@grid, &zones_table([ @zlinks[$mid .. $#zlinks] ], [ @ztitles[$mid .. $#ztitles] ], [ @ztypes[$mid .. $#ztypes] ], [ @zdels[$mid .. $#ztypes] ], [ @zstatus[$mid .. $#ztypes] ])); } else { push(@grid, &zones_table([ @zlinks[$mid .. $#zlinks] ], [ @ztitles[$mid .. $#ztitles] ], [ @ztypes[$mid .. $#ztypes] ], [ @zdels[$mid .. $#ztypes] ])); } } print &ui_grid_table(\@grid, 2, 100, [ "width=50%", "width=50%" ]); } elsif ($config{'show_list'} == 2) { # Show as collapsible tree, broken down by domain parts %heiropen = map { $_, 1 } &get_heiropen(); $heiropen{""} = 1; foreach my $z (grep { $_->{'type'} } @zones) { my $v = $z->{'name'}; my @p = split(/\./, &ip6int_to_net(&arpa_to_ip($v))); for(my $i=1; $i<=@p; $i++) { my $ch = join(".", @p[$i-1 .. $#p]); my $par = $i == @p ? "" : join(".", @p[$i .. $#p]); @{$ztree{$par}} = &unique(@{$ztree{$par}}, $ch); } } print "
\n"; print &ui_links_row(\@crlinks); } if ($access{'views'}) { # Display list of views print &ui_hr(); print &ui_subheading($text{'index_views'}); # Show a warning if any zones are not in a view my @notinview = grep { !defined($_->{'viewindex'}) || $_->{'viewindex'} eq '' } @zones; if (@notinview && @views) { print "",&text('index_viewwarn', join(" , ", map { "".&ip6int_to_net( &arpa_to_ip($_->{'name'}))."" } @notinview)),"
\n"; print "$text{'index_viewwarn2'}
\n"; } @views = grep { &can_edit_view($_) } @views; my (@vicons, @vtitles, @vlinks); foreach my $v (@views) { push(@vlinks, "edit_view.cgi?index=$v->{'index'}"); push(@vtitles, $v->{'name'}); push(@vicons, "images/view.gif"); } my @links = ( ); push(@links, &ui_link("view_form.cgi", $text{'index_addview'}) ) if (!$access{'ro'} && $access{'views'} != 2); if (@views) { print &ui_links_row(\@links); &icons_table(\@vlinks, \@vtitles, \@vicons, 5); } else { print "$text{'index_vnone'}
\n"; } print &ui_links_row(\@links); } &ui_print_footer("/", $text{"index"}); sub dump_config { foreach my $c (@{$_[0]}) { print "$_[1]$c->{'name'} ", join(',', @{$c->{'values'}}); if ($c->{'type'}) { print " {\n"; &dump_config($c->{'members'}, "$_[1]\t"); print "$_[1]}\n"; } else { print "\n"; } } } sub compare_zones { my @sp0 = split(/\./, lc($_[0] || "")); my @sp1 = split(/\./, lc($_[1] || "")); for(my $i=0; $i<@sp0 || $i<@sp1; $i++) { $sp0[$i] = "" if (!defined($sp0[$i])); $sp1[$i] = "" if (!defined($sp1[$i])); if ($sp0[$i] =~ /^\d+$/ && $sp1[$i] =~ /^\d+$/) { return -1 if ($sp0[$i] < $sp1[$i]); return 1 if ($sp0[$i] > $sp1[$i]); } else { my $c = $sp0[$i] cmp $sp1[$i]; return $c if ($c); } } return 0; } sub recursive_tree { my ($name, $depth) = @_; print "