| [2] | 1 | #!/usr/bin/perl -w -T | 
|---|
| [263] | 2 | # Main web UI script for DeepNet DNS Administrator | 
|---|
|  | 3 | ## | 
|---|
|  | 4 | # $Id: dns.cgi 725 2016-06-20 17:18:07Z kdeugau $ | 
|---|
| [548] | 5 | # Copyright 2008-2013 Kris Deugau <kdeugau@deepnet.cx> | 
|---|
| [263] | 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 | ## | 
|---|
| [2] | 20 |  | 
|---|
|  | 21 | use strict; | 
|---|
|  | 22 | use warnings; | 
|---|
|  | 23 |  | 
|---|
|  | 24 | use CGI::Carp qw (fatalsToBrowser); | 
|---|
|  | 25 | use CGI::Simple; | 
|---|
|  | 26 | use HTML::Template; | 
|---|
| [725] | 27 | use CGI::Session '-ip_match'; | 
|---|
| [30] | 28 | use Net::DNS; | 
|---|
| [2] | 29 | use DBI; | 
|---|
| [548] | 30 |  | 
|---|
| [83] | 31 | use Data::Dumper; | 
|---|
| [2] | 32 |  | 
|---|
| [95] | 33 | #sub is_tainted { | 
|---|
|  | 34 | #  # from perldoc perlsec | 
|---|
|  | 35 | #  return ! eval { eval("#" . substr(join("", @_), 0, 0)); 1 }; | 
|---|
|  | 36 | #} | 
|---|
|  | 37 | #use Cwd 'abs_path'; | 
|---|
|  | 38 | #use File::Basename; | 
|---|
|  | 39 | #use lib dirname( abs_path $0 ); | 
|---|
|  | 40 | #die "argh!  tainted!" if is_tainted($0); | 
|---|
|  | 41 | #die "argh! \@INC got tainted!" if is_tainted(@INC); | 
|---|
|  | 42 |  | 
|---|
| [216] | 43 | # don't remove!  required for GNU/FHS-ish install from tarball | 
|---|
|  | 44 | use lib '.';    ##uselib## | 
|---|
|  | 45 |  | 
|---|
| [547] | 46 | use DNSDB; | 
|---|
| [2] | 47 |  | 
|---|
| [13] | 48 | my @debugbits;  # temp, to be spit out near the end of processing | 
|---|
| [160] | 49 | my $debugenv = 0; | 
|---|
| [13] | 50 |  | 
|---|
| [2] | 51 | # Let's do these templates right... | 
|---|
|  | 52 | my $templatedir = "templates"; | 
|---|
|  | 53 |  | 
|---|
|  | 54 | # Set up the CGI object... | 
|---|
|  | 55 | my $q = new CGI::Simple; | 
|---|
|  | 56 | # ... and get query-string params as well as POST params if necessary | 
|---|
|  | 57 | $q->parse_query_string; | 
|---|
|  | 58 |  | 
|---|
|  | 59 | # This is probably excessive fiddling, but it puts the parameters somewhere my fingers know about... | 
|---|
| [7] | 60 | my %webvar = $q->Vars; | 
|---|
| [2] | 61 |  | 
|---|
| [168] | 62 | # shut up some warnings, in case we arrive somewhere we forgot to set this | 
|---|
| [544] | 63 | $webvar{defrec} = 'n' if !$webvar{defrec};      # non-default records | 
|---|
|  | 64 | $webvar{revrec} = 'n' if !$webvar{revrec};      # non-reverse (domain) records | 
|---|
| [168] | 65 |  | 
|---|
| [548] | 66 | # create a DNSDB object.  this loads some local system defaults and connects to the DB | 
|---|
|  | 67 | # with the credentials configured | 
|---|
|  | 68 | ##fixme:  pass params for loadConfig, and use them there, to allow one codebase to support multiple sites | 
|---|
| [547] | 69 | my $dnsdb = new DNSDB; | 
|---|
|  | 70 |  | 
|---|
|  | 71 | my $header = HTML::Template->new(filename => "$templatedir/header.tmpl"); | 
|---|
|  | 72 | my $footer = HTML::Template->new(filename => "$templatedir/footer.tmpl"); | 
|---|
|  | 73 | $footer->param(version => $DNSDB::VERSION); | 
|---|
|  | 74 |  | 
|---|
| [548] | 75 | ##fixme:  slim chance this could be triggered on errors other than DB failure? | 
|---|
| [547] | 76 | if (!$dnsdb) { | 
|---|
|  | 77 | print "Content-type: text/html\n\n"; | 
|---|
|  | 78 | print $header->output; | 
|---|
|  | 79 | my $errpage = HTML::Template->new(filename => "$templatedir/dberr.tmpl"); | 
|---|
|  | 80 | $errpage->param(errmsg => $DNSDB::errstr); | 
|---|
|  | 81 | print $errpage->output; | 
|---|
|  | 82 | print $footer->output; | 
|---|
|  | 83 | exit; | 
|---|
| [163] | 84 | } | 
|---|
|  | 85 |  | 
|---|
| [547] | 86 | $header->param(orgname => $dnsdb->{orgname}) if $dnsdb->{orgname} ne 'Example Corp'; | 
|---|
|  | 87 |  | 
|---|
| [548] | 88 | my $logingroup; | 
|---|
|  | 89 | my $curgroup; | 
|---|
|  | 90 | my @viewablegroups; | 
|---|
|  | 91 |  | 
|---|
|  | 92 | # retrieve the session ID from our cookie, if possible | 
|---|
|  | 93 | my $sid = $q->cookie('dnsadmin_session'); | 
|---|
|  | 94 |  | 
|---|
|  | 95 | # see if the session loads | 
|---|
|  | 96 | my $session = CGI::Session->load("driver:File", $sid, {Directory => $dnsdb->{sessiondir}}) | 
|---|
| [68] | 97 | or die CGI::Session->errstr(); | 
|---|
| [548] | 98 |  | 
|---|
| [649] | 99 | if (!$sid || $session->is_expired || !$session->param('uid') || !$dnsdb->userStatus($session->param('uid')) ) { | 
|---|
| [548] | 100 | $webvar{page} = 'login'; | 
|---|
|  | 101 | } else { | 
|---|
|  | 102 | # we have a session to load from, maybe | 
|---|
|  | 103 | $logingroup = ($session->param('logingroup') ? $session->param('logingroup') : 1); | 
|---|
|  | 104 | $curgroup = ($session->param('curgroup') ? $session->param('curgroup') : $logingroup); | 
|---|
|  | 105 | # security check - does the user have permission to view this entity? | 
|---|
|  | 106 | # this is a prep step used "many" places | 
|---|
|  | 107 | $dnsdb->getChildren($logingroup, \@viewablegroups, 'all'); | 
|---|
|  | 108 | push @viewablegroups, $logingroup; | 
|---|
|  | 109 | ##fixme: make sessions persist through closing the site? | 
|---|
|  | 110 | # this even bridges browser close too.  hmm... | 
|---|
|  | 111 | $webvar{page} = 'domlist' if !$webvar{page}; | 
|---|
| [2] | 112 | } | 
|---|
|  | 113 |  | 
|---|
| [548] | 114 | # set $webvar{page} before we try to use it. | 
|---|
| [176] | 115 | $webvar{page} = 'login' if !$webvar{page}; | 
|---|
|  | 116 |  | 
|---|
| [548] | 117 | ## per-page startwith, filter, searchsubs | 
|---|
| [160] | 118 |  | 
|---|
|  | 119 | ##fixme:  complain-munge-and-continue with non-"[a-z0-9-.]" filter and startwith | 
|---|
|  | 120 | $webvar{startwith} =~ s/^(0-9|[a-z]).*/$1/ if $webvar{startwith}; | 
|---|
|  | 121 | # not much call for chars not allowed in domain names | 
|---|
| [545] | 122 | $webvar{filter} =~ s/[^a-zA-Z0-9_.:\@-]//g if $webvar{filter}; | 
|---|
| [176] | 123 | ## only set 'y' if box is checked, no other values legal | 
|---|
|  | 124 | ## however, see https://secure.deepnet.cx/trac/dnsadmin/ticket/31 | 
|---|
|  | 125 | # first, drop obvious fakes | 
|---|
|  | 126 | delete $webvar{searchsubs} if $webvar{searchsubs} && $webvar{searchsubs} !~ /^[ny]/; | 
|---|
|  | 127 | # strip the known "turn me off!" bit. | 
|---|
|  | 128 | $webvar{searchsubs} =~ s/^n\s?// if $webvar{searchsubs}; | 
|---|
|  | 129 | # strip non-y/n - note this legitimately allows {searchsubs} to go empty | 
|---|
|  | 130 | $webvar{searchsubs} =~ s/[^yn]//g if $webvar{searchsubs}; | 
|---|
| [160] | 131 |  | 
|---|
| [548] | 132 | # pagination | 
|---|
|  | 133 | my $perpage = 15;  # Just In Case | 
|---|
|  | 134 | $perpage = $dnsdb->{perpage} if $dnsdb->{perpage}; | 
|---|
|  | 135 | my $offset = ($webvar{offset} ? $webvar{offset} : 0); | 
|---|
|  | 136 |  | 
|---|
|  | 137 | ## set up "URL to self" (whereami edition) | 
|---|
|  | 138 | # @#$%@%@#% XHTML - & in a URL must be escaped.  >:( | 
|---|
|  | 139 | my $uri_self = $ENV{REQUEST_URI}; | 
|---|
|  | 140 | $uri_self =~ s/\&([a-z])/\&\;$1/g; | 
|---|
|  | 141 |  | 
|---|
|  | 142 | # le sigh.  and we need to strip any previous action | 
|---|
|  | 143 | $uri_self =~ s/\&action=[^&]+//g; | 
|---|
|  | 144 |  | 
|---|
|  | 145 | # much magic happens.  if startwith or a search string change (to, from, or | 
|---|
|  | 146 | # across, in the request vs whatever's in the session) then the offset should | 
|---|
|  | 147 | # be reset to 0 so that the first/prev/next/last widget populates correctly, | 
|---|
|  | 148 | # and so that the list of whatever we're looking at actually shows things | 
|---|
|  | 149 | # (since we may have started on page 42 of 300 with a LOOOOONG list, but we | 
|---|
|  | 150 | # now only need 3 pages for the filtered list). | 
|---|
|  | 151 | # while we're at it, plonk these into the session for safekeeping. | 
|---|
|  | 152 | if (defined($webvar{startwith})) { | 
|---|
|  | 153 | if ($webvar{startwith} ne $session->param($webvar{page}.'startwith')) { | 
|---|
|  | 154 | $uri_self =~ s/\&offset=[^&]//; | 
|---|
|  | 155 | $offset = 0; | 
|---|
|  | 156 | } | 
|---|
|  | 157 | $session->param($webvar{page}.'startwith', $webvar{startwith}); | 
|---|
|  | 158 | } | 
|---|
|  | 159 | if (defined($webvar{filter})) { | 
|---|
| [725] | 160 | $session->param($webvar{page}.'filter', '') if !$session->param($webvar{page}.'filter'); | 
|---|
| [548] | 161 | if ($webvar{filter} ne $session->param($webvar{page}.'filter')) { | 
|---|
|  | 162 | $uri_self =~ s/\&offset=[^&]//; | 
|---|
|  | 163 | $offset = 0; | 
|---|
|  | 164 | } | 
|---|
|  | 165 | $session->param($webvar{page}.'filter', $webvar{filter}) | 
|---|
|  | 166 | } | 
|---|
| [57] | 167 | $session->param($webvar{page}.'searchsubs', $webvar{searchsubs}) if defined($webvar{searchsubs}); | 
|---|
| [54] | 168 |  | 
|---|
| [548] | 169 | # and now that the search/filter criteria for this page are set, put them in some globals for actual use. | 
|---|
| [54] | 170 | my $startwith = $session->param($webvar{page}.'startwith'); | 
|---|
|  | 171 | my $filter = $session->param($webvar{page}.'filter'); | 
|---|
|  | 172 | my $searchsubs = $session->param($webvar{page}.'searchsubs'); | 
|---|
|  | 173 |  | 
|---|
| [160] | 174 | # ... and assemble the args | 
|---|
|  | 175 | my @filterargs; | 
|---|
|  | 176 | push @filterargs, "^[$startwith]" if $startwith; | 
|---|
|  | 177 | push @filterargs, $filter if $filter; | 
|---|
|  | 178 |  | 
|---|
| [117] | 179 | # and search filter options.  these get stored in the session, but discarded | 
|---|
|  | 180 | # as soon as you switch to a different page. | 
|---|
|  | 181 | ##fixme:  think about retaining these on a per-page basis, as well as offset;  same as the sort-order bits | 
|---|
|  | 182 | no warnings qw(uninitialized); | 
|---|
|  | 183 | $uri_self =~ s/\&startwith=[a-z09-]*(\&)?/$1/g; | 
|---|
|  | 184 | $uri_self =~ s/\&searchsubs=[a-z09-]*(\&)?/$1/g; | 
|---|
|  | 185 | $uri_self =~ s/\&filter=[a-z09-]*(\&)?/$1/g; | 
|---|
|  | 186 | use warnings qw(uninitialized); | 
|---|
|  | 187 |  | 
|---|
| [213] | 188 | # Fix up $uri_self so we don't lose the session/page | 
|---|
| [548] | 189 | $uri_self .= "?page=$webvar{page}" if $uri_self =~ m{/dns.cgi$}; | 
|---|
|  | 190 | $uri_self = "$ENV{SCRIPT_NAME}?page=$webvar{page}$1" if $uri_self =~ m{/dns.cgi\&(.+)$}; | 
|---|
| [213] | 191 |  | 
|---|
| [548] | 192 | ## end uri_self monkeying | 
|---|
| [2] | 193 |  | 
|---|
|  | 194 | # NB:  these must match the field name and SQL ascend/descend syntax respectively | 
|---|
| [548] | 195 | # sortby is reset to a suitable "default", then re-reset to whatever the user has | 
|---|
|  | 196 | # clicked on last in the record=listing subs, but best to put a default here. | 
|---|
| [41] | 197 | my $sortby = "domain"; | 
|---|
|  | 198 | my $sortorder = "ASC"; | 
|---|
| [2] | 199 |  | 
|---|
| [548] | 200 | # Create the page template object.  Display a reasonable error page and whine if the template doesn't exist. | 
|---|
| [173] | 201 | my $page; | 
|---|
|  | 202 | eval { | 
|---|
| [544] | 203 | # sigh.  can't set loop_context_vars or global_vars once instantiated. | 
|---|
|  | 204 | $page = HTML::Template->new(filename => "$templatedir/$webvar{page}.tmpl", | 
|---|
|  | 205 | loop_context_vars => 1, global_vars => 1); | 
|---|
| [173] | 206 | }; | 
|---|
|  | 207 | if ($@) { | 
|---|
| [544] | 208 | my $msg = $@; | 
|---|
| [173] | 209 | $page = HTML::Template->new(filename => "$templatedir/badpage.tmpl"); | 
|---|
| [544] | 210 | if (-e "$templatedir/$webvar{page}.tmpl") { | 
|---|
|  | 211 | $page->param(badtemplate => $q->escapeHTML($msg)); | 
|---|
|  | 212 | } else { | 
|---|
|  | 213 | warn "Bad page $webvar{page} requested"; | 
|---|
|  | 214 | $page->param(badpage => $q->escapeHTML($webvar{page})); | 
|---|
|  | 215 | } | 
|---|
| [173] | 216 | $webvar{page} = 'badpage'; | 
|---|
|  | 217 | } | 
|---|
| [154] | 218 |  | 
|---|
| [554] | 219 | $session->expire($dnsdb->{timeout}); | 
|---|
| [552] | 220 | my $sesscookie = $q->cookie( -name => 'dnsadmin_session', | 
|---|
|  | 221 | -value => $sid, | 
|---|
| [649] | 222 | -expires => "+".$dnsdb->{timeout}, | 
|---|
| [552] | 223 | -secure => 0, | 
|---|
|  | 224 | ## fixme:  need to extract root path for cookie, so as to limit cookie to dnsadmin instance | 
|---|
|  | 225 | #        -path => $url | 
|---|
|  | 226 | ); | 
|---|
| [548] | 227 |  | 
|---|
|  | 228 | # handle can-happen-on-(almost)-any-page actions | 
|---|
| [30] | 229 | if ($webvar{action}) { | 
|---|
| [548] | 230 |  | 
|---|
| [30] | 231 | if ($webvar{action} eq 'login') { | 
|---|
| [65] | 232 | # Snag ACL/permissions here too | 
|---|
| [26] | 233 |  | 
|---|
| [547] | 234 | my $userdata = $dnsdb->login($webvar{username}, $webvar{password}); | 
|---|
| [183] | 235 |  | 
|---|
| [545] | 236 | if ($userdata) { | 
|---|
|  | 237 |  | 
|---|
| [548] | 238 | # (re)create the session | 
|---|
|  | 239 | $session = new CGI::Session("driver:File", $sid, {Directory => $dnsdb->{sessiondir}}) | 
|---|
|  | 240 | or die CGI::Session->errstr(); | 
|---|
|  | 241 | $sid = $session->id(); | 
|---|
|  | 242 |  | 
|---|
|  | 243 | $sesscookie = $q->cookie( -name => 'dnsadmin_session', | 
|---|
|  | 244 | -value => $sid, | 
|---|
| [649] | 245 | -expires => "+".$dnsdb->{timeout}, | 
|---|
| [548] | 246 | -secure => 0, | 
|---|
|  | 247 | ## fixme:  need to extract root path for cookie, so as to limit cookie to dnsadmin instance | 
|---|
|  | 248 | #        -path => $url | 
|---|
|  | 249 | ); | 
|---|
|  | 250 |  | 
|---|
| [183] | 251 | # set session bits | 
|---|
| [548] | 252 | $session->expire($dnsdb->{timeout}); | 
|---|
| [545] | 253 | $session->param('logingroup',$userdata->{group_id}); | 
|---|
|  | 254 | $session->param('curgroup',$userdata->{group_id}); | 
|---|
|  | 255 | $session->param('uid',$userdata->{user_id}); | 
|---|
| [183] | 256 | $session->param('username',$webvar{username}); | 
|---|
| [649] | 257 | $curgroup = $userdata->{group_id}; | 
|---|
| [183] | 258 |  | 
|---|
| [548] | 259 | # for reference.  seems we don't need to set these on login any more. | 
|---|
|  | 260 | #  $session->param('domlistsortby','domain'); | 
|---|
|  | 261 | #  $session->param('domlistorder','ASC'); | 
|---|
|  | 262 | #  $session->param('revzonessortby','revnet'); | 
|---|
|  | 263 | #  $session->param('revzonesorder','ASC'); | 
|---|
|  | 264 | #  $session->param('useradminsortby','user'); | 
|---|
|  | 265 | #  $session->param('useradminorder','ASC'); | 
|---|
|  | 266 | #  $session->param('grpmansortby','group'); | 
|---|
|  | 267 | #  $session->param('grpmanorder','ASC'); | 
|---|
|  | 268 | #  $session->param('reclistsortby','host'); | 
|---|
|  | 269 | #  $session->param('reclistorder','ASC'); | 
|---|
|  | 270 | #  $session->param('loclistsortby','description'); | 
|---|
|  | 271 | #  $session->param('loclistorder','ASC'); | 
|---|
|  | 272 | #  $session->param('logsortby','stamp'); | 
|---|
|  | 273 | #  $session->param('logorder','DESC'); | 
|---|
| [183] | 274 |  | 
|---|
| [548] | 275 | ## "recover my link" - tack on request bits and use requested page instead of hardcoding domlist | 
|---|
|  | 276 | # this could possibly be compacted by munging changepage a little so we don't have to deconstruct | 
|---|
|  | 277 | # and reconstruct the URI argument list. | 
|---|
|  | 278 | my %target = (page => "domlist"); | 
|---|
| [582] | 279 | if ($webvar{target} && $webvar{target} =~ /\?/ && $webvar{target} !~ /page=login/) { | 
|---|
| [548] | 280 | my $tmp = (split /\?/, $webvar{target})[1]; | 
|---|
|  | 281 | $tmp =~ s/^\&//; | 
|---|
|  | 282 | my @targs = split /\&/, $tmp; | 
|---|
|  | 283 | foreach (@targs) { | 
|---|
|  | 284 | my ($k,$v) = split /=/; | 
|---|
|  | 285 | $target{$k} = $v if $k; | 
|---|
|  | 286 | # if we're going through a "session expired" login, we may have a different | 
|---|
|  | 287 | # "current group" than the login group. | 
|---|
|  | 288 | $session->param('curgroup', $v) if $k eq 'curgroup'; | 
|---|
|  | 289 | ##fixme:  page=record goes "FOOM", sometimes - cause/fix? | 
|---|
|  | 290 | } | 
|---|
|  | 291 | } | 
|---|
|  | 292 | changepage(%target); | 
|---|
|  | 293 |  | 
|---|
| [30] | 294 | } else { | 
|---|
| [183] | 295 | $webvar{loginfailed} = 1; | 
|---|
|  | 296 | } # user data fetch check | 
|---|
| [29] | 297 |  | 
|---|
| [30] | 298 | } elsif ($webvar{action} eq 'logout') { | 
|---|
|  | 299 | # delete the session | 
|---|
|  | 300 | $session->delete(); | 
|---|
|  | 301 | $session->flush(); | 
|---|
|  | 302 |  | 
|---|
| [548] | 303 | my $sesscookie = $q->cookie( -name => 'dnsadmin_session', | 
|---|
|  | 304 | -value => $sid, | 
|---|
|  | 305 | -expires => "-1", | 
|---|
|  | 306 | -secure => 0, | 
|---|
|  | 307 | ## fixme:  need to extract root path for cookie, so as to limit cookie to dnsadmin instance | 
|---|
|  | 308 | #      -path => $url | 
|---|
|  | 309 | ); | 
|---|
|  | 310 |  | 
|---|
| [30] | 311 | my $newurl = "http://$ENV{HTTP_HOST}$ENV{SCRIPT_NAME}"; | 
|---|
|  | 312 | $newurl =~ s|/[^/]+$|/|; | 
|---|
| [548] | 313 | print $q->redirect( -uri => $newurl, -cookie => $sesscookie); | 
|---|
| [30] | 314 | exit; | 
|---|
|  | 315 |  | 
|---|
| [548] | 316 | } elsif ($webvar{action} eq 'chgroup' && $webvar{page} ne 'login') { | 
|---|
| [57] | 317 | # fiddle session-stored group data | 
|---|
|  | 318 | # magic incantation to... uhhh... | 
|---|
| [117] | 319 |  | 
|---|
|  | 320 | # ... and the "change group" bits... | 
|---|
|  | 321 | $uri_self =~ s/\&group=[^&]*//g; | 
|---|
|  | 322 |  | 
|---|
| [154] | 323 | # security check - does the user have permission to view this entity? | 
|---|
| [155] | 324 | my $errmsg; | 
|---|
| [154] | 325 | if (!(grep /^$webvar{group}$/, @viewablegroups)) { | 
|---|
|  | 326 | # hmm.  Reset the current group to the login group?  Yes.  Prevents confusing behaviour elsewhere. | 
|---|
|  | 327 | $session->param('curgroup',$logingroup); | 
|---|
|  | 328 | $webvar{group} = $logingroup; | 
|---|
|  | 329 | $curgroup = $logingroup; | 
|---|
| [155] | 330 | $errmsg = "You are not permitted to view or make changes in the requested group"; | 
|---|
|  | 331 | $page->param(errmsg => $errmsg); | 
|---|
| [154] | 332 | } | 
|---|
| [153] | 333 |  | 
|---|
| [57] | 334 | $session->param('curgroup', $webvar{group}); | 
|---|
|  | 335 | $curgroup = ($webvar{group} ? $webvar{group} : $session->param('curgroup')); | 
|---|
| [155] | 336 |  | 
|---|
|  | 337 | # I hate special cases. | 
|---|
| [544] | 338 | ##fixme: probably need to handle webvar{revrec}=='y' too | 
|---|
| [155] | 339 | if ($webvar{page} eq 'reclist' && $webvar{defrec} eq 'y') { | 
|---|
| [544] | 340 | my %args = (page => $webvar{page}, id => $curgroup, defrec => $webvar{defrec}, revrec => $webvar{revrec}); | 
|---|
| [155] | 341 | $args{errmsg} = $errmsg if $errmsg; | 
|---|
|  | 342 | changepage(%args); | 
|---|
|  | 343 | } | 
|---|
| [548] | 344 | # add offset back *into* $uri_self if we're also currently looking at a live record list. | 
|---|
|  | 345 | if ($webvar{page} eq 'reclist' && $webvar{defrec} eq 'n') { | 
|---|
|  | 346 | $uri_self .= "\&offset=$offset"; | 
|---|
|  | 347 | } | 
|---|
|  | 348 | } # done action=chgroup | 
|---|
| [57] | 349 | } # handle global webvar{action}s | 
|---|
| [26] | 350 |  | 
|---|
| [548] | 351 |  | 
|---|
| [545] | 352 | # finally check if the user was disabled.  we could just leave this for logout/session expiry, | 
|---|
|  | 353 | # but if they keep the session active they'll continue to have access long after being disabled.  :/ | 
|---|
|  | 354 | # Treat it as a session expiry. | 
|---|
| [547] | 355 | if ($session->param('uid') && !$dnsdb->userStatus($session->param('uid')) ) { | 
|---|
| [545] | 356 | $sid = ''; | 
|---|
|  | 357 | $session->delete;     # force expiry of the session Right Away | 
|---|
|  | 358 | $session->flush;      # make sure it hits storage | 
|---|
|  | 359 | changepage(page=> "login", sessexpired => 1); | 
|---|
|  | 360 | } | 
|---|
| [57] | 361 |  | 
|---|
| [545] | 362 | # Misc Things To Do on most pages | 
|---|
| [547] | 363 | my %permissions; | 
|---|
|  | 364 | $dnsdb->getPermissions('user', $session->param('uid'), \%permissions); | 
|---|
|  | 365 | $dnsdb->initActionLog($session->param('uid')); | 
|---|
| [545] | 366 |  | 
|---|
| [548] | 367 | ## | 
|---|
|  | 368 | ## Per-page processing | 
|---|
|  | 369 | ## | 
|---|
| [2] | 370 |  | 
|---|
| [26] | 371 | if ($webvar{page} eq 'login') { | 
|---|
| [3] | 372 |  | 
|---|
| [548] | 373 | my $target = $ENV{REQUEST_URI}; | 
|---|
|  | 374 | $target =~ s/\&/\&/g; | 
|---|
|  | 375 | $page->param(target => $target); # needs to be trimmed a little, maybe? | 
|---|
|  | 376 |  | 
|---|
|  | 377 | $page->param(sessexpired => 1) if (!$sid && $target !~ m|/$|); | 
|---|
|  | 378 |  | 
|---|
|  | 379 | if ($webvar{loginfailed}) { | 
|---|
|  | 380 | $page->param(loginfailed => 1); | 
|---|
|  | 381 | $webvar{target} =~ s/\&/\&/g;   # XHTML we do (not) love you so | 
|---|
|  | 382 | $page->param(target => $webvar{target}) if $webvar{target}; | 
|---|
|  | 383 | } | 
|---|
|  | 384 | #  if $webvar{sessexpired};      # or this with below? | 
|---|
|  | 385 | if ($session->is_expired) { | 
|---|
|  | 386 | $page->param(sessexpired => 1); | 
|---|
|  | 387 | $session->delete();   # Just to make sure | 
|---|
|  | 388 | $session->flush(); | 
|---|
|  | 389 | } | 
|---|
| [210] | 390 | $page->param(version => $DNSDB::VERSION); | 
|---|
| [548] | 391 | $page->param(script_self => ($ENV{SCRIPT_NAME} =~ m|/([^/]+)$|)[0]); | 
|---|
| [26] | 392 |  | 
|---|
|  | 393 | } elsif ($webvar{page} eq 'domlist' or $webvar{page} eq 'index') { | 
|---|
|  | 394 |  | 
|---|
| [544] | 395 | $page->param(domlist => 1); | 
|---|
|  | 396 |  | 
|---|
| [3] | 397 | # hmm.  seeing problems in some possibly-not-so-corner cases. | 
|---|
| [10] | 398 | # this currently only handles "domain on", "domain off" | 
|---|
| [545] | 399 | if (defined($webvar{zonestatus})) { | 
|---|
| [154] | 400 | # security check - does the user have permission to access this entity? | 
|---|
|  | 401 | my $flag = 0; | 
|---|
|  | 402 | foreach (@viewablegroups) { | 
|---|
| [547] | 403 | $flag = 1 if $dnsdb->isParent($_, 'group', $webvar{id}, 'domain'); | 
|---|
| [154] | 404 | } | 
|---|
| [188] | 405 | if ($flag && ($permissions{admin} || $permissions{domain_edit})) { | 
|---|
| [547] | 406 | my $stat = $dnsdb->zoneStatus($webvar{id}, 'n', $webvar{zonestatus}); | 
|---|
| [545] | 407 | $page->param(resultmsg => $DNSDB::resultstr); | 
|---|
| [154] | 408 | } else { | 
|---|
|  | 409 | $page->param(errmsg => "You are not permitted to view or change the requested domain"); | 
|---|
|  | 410 | } | 
|---|
| [545] | 411 | $uri_self =~ s/\&zonestatus=[^&]*//g;   # clean up URL for stuffing into templates | 
|---|
| [3] | 412 | } | 
|---|
|  | 413 |  | 
|---|
| [545] | 414 | show_msgs(); | 
|---|
| [147] | 415 |  | 
|---|
| [18] | 416 | $page->param(curpage => $webvar{page}); | 
|---|
|  | 417 |  | 
|---|
| [11] | 418 | listdomains(); | 
|---|
| [2] | 419 |  | 
|---|
| [4] | 420 | } elsif ($webvar{page} eq 'newdomain') { | 
|---|
| [2] | 421 |  | 
|---|
| [95] | 422 | changepage(page => "domlist", errmsg => "You are not permitted to add domains") | 
|---|
|  | 423 | unless ($permissions{admin} || $permissions{domain_create}); | 
|---|
|  | 424 |  | 
|---|
| [545] | 425 | $webvar{group} = $curgroup if !$webvar{group}; | 
|---|
|  | 426 | fill_grouplist("grouplist", $webvar{group}); | 
|---|
| [548] | 427 | fill_loclist($curgroup, $webvar{defloc} ? $webvar{defloc} : ''); | 
|---|
| [126] | 428 |  | 
|---|
| [174] | 429 | if ($session->param('add_failed')) { | 
|---|
|  | 430 | $session->clear('add_failed'); | 
|---|
| [62] | 431 | $page->param(add_failed => 1); | 
|---|
| [174] | 432 | $page->param(errmsg => $session->param('errmsg')); | 
|---|
|  | 433 | $session->clear('errmsg'); | 
|---|
| [62] | 434 | $page->param(domain => $webvar{domain}); | 
|---|
| [545] | 435 | $page->param(addinactive => $webvar{makeactive} eq 'n'); | 
|---|
| [62] | 436 | } | 
|---|
| [2] | 437 |  | 
|---|
| [57] | 438 | } elsif ($webvar{page} eq 'adddomain') { | 
|---|
|  | 439 |  | 
|---|
| [95] | 440 | changepage(page => "domlist", errmsg => "You are not permitted to add domains") | 
|---|
|  | 441 | unless ($permissions{admin} || $permissions{domain_create}); | 
|---|
|  | 442 |  | 
|---|
| [162] | 443 | # security check - does the user have permission to access this entity? | 
|---|
| [169] | 444 | if (!check_scope(id => $webvar{group}, type => 'group')) { | 
|---|
| [174] | 445 | $session->param('add_failed', 1); | 
|---|
|  | 446 | ##fixme:  domain a security risk for XSS? | 
|---|
|  | 447 | changepage(page => "newdomain", domain => $webvar{domain}, | 
|---|
| [162] | 448 | errmsg => "You do not have permission to add a domain to the requested group"); | 
|---|
|  | 449 | } | 
|---|
|  | 450 |  | 
|---|
| [205] | 451 | $webvar{makeactive} = 0 if !defined($webvar{makeactive}); | 
|---|
|  | 452 |  | 
|---|
| [548] | 453 | my ($code,$msg) = $dnsdb->addDomain($webvar{domain}, $webvar{group}, ($webvar{makeactive} eq 'on' ? 1 : 0), | 
|---|
|  | 454 | $webvar{defloc}); | 
|---|
| [57] | 455 |  | 
|---|
|  | 456 | if ($code eq 'OK') { | 
|---|
| [547] | 457 | $dnsdb->mailNotify("New ".($webvar{makeactive} eq 'on' ? 'Active' : 'Inactive')." Domain Created", | 
|---|
| [198] | 458 | ($webvar{makeactive} eq 'on' ? 'Active' : 'Inactive').qq( domain "$webvar{domain}" added by ). | 
|---|
|  | 459 | $session->param("username")); | 
|---|
| [57] | 460 | changepage(page => "reclist", id => $msg); | 
|---|
|  | 461 | } else { | 
|---|
| [174] | 462 | $session->param('add_failed', 1); | 
|---|
|  | 463 | ##fixme:  domain a security risk for XSS? | 
|---|
| [548] | 464 | changepage(page => "newdomain", errmsg => $msg, domain => $webvar{domain}, | 
|---|
|  | 465 | group => $webvar{group}, makeactive => ($webvar{makeactive} ? 'y' : 'n'), defloc => $webvar{defloc}); | 
|---|
| [57] | 466 | } | 
|---|
|  | 467 |  | 
|---|
| [11] | 468 | } elsif ($webvar{page} eq 'deldom') { | 
|---|
|  | 469 |  | 
|---|
| [95] | 470 | changepage(page => "domlist", errmsg => "You are not permitted to delete domains") | 
|---|
|  | 471 | unless ($permissions{admin} || $permissions{domain_delete}); | 
|---|
|  | 472 |  | 
|---|
| [162] | 473 | # security check - does the user have permission to access this entity? | 
|---|
| [169] | 474 | if (!check_scope(id => $webvar{id}, type => 'domain')) { | 
|---|
| [162] | 475 | changepage(page => "domlist", errmsg => "You do not have permission to delete the requested domain"); | 
|---|
|  | 476 | } | 
|---|
|  | 477 |  | 
|---|
| [11] | 478 | $page->param(id => $webvar{id}); | 
|---|
| [88] | 479 |  | 
|---|
| [11] | 480 | # first pass = confirm y/n (sorta) | 
|---|
|  | 481 | if (!defined($webvar{del})) { | 
|---|
| [88] | 482 |  | 
|---|
| [11] | 483 | $page->param(del_getconf => 1); | 
|---|
| [547] | 484 | $page->param(domain => $dnsdb->domainName($webvar{id})); | 
|---|
| [11] | 485 |  | 
|---|
| [88] | 486 | } elsif ($webvar{del} eq 'ok') { | 
|---|
| [547] | 487 | my $pargroup = $dnsdb->parentID(id => $webvar{id}, type => 'domain', revrec => $webvar{revrec}); | 
|---|
|  | 488 | my ($code,$msg) = $dnsdb->delZone($webvar{id}, $webvar{revrec}); | 
|---|
| [187] | 489 | if ($code eq 'OK') { | 
|---|
| [545] | 490 | changepage(page => "domlist", resultmsg => $msg); | 
|---|
| [187] | 491 | } else { | 
|---|
| [545] | 492 | changepage(page => "domlist", errmsg => $msg); | 
|---|
| [11] | 493 | } | 
|---|
| [88] | 494 |  | 
|---|
| [11] | 495 | } else { | 
|---|
|  | 496 | # cancelled.  whee! | 
|---|
|  | 497 | changepage(page => "domlist"); | 
|---|
|  | 498 | } | 
|---|
|  | 499 |  | 
|---|
| [544] | 500 | } elsif ($webvar{page} eq 'revzones') { | 
|---|
|  | 501 |  | 
|---|
|  | 502 | $webvar{revrec} = 'y'; | 
|---|
| [545] | 503 |  | 
|---|
|  | 504 | if (defined($webvar{zonestatus})) { | 
|---|
|  | 505 | # security check - does the user have permission to access this entity? | 
|---|
|  | 506 | my $flag = 0; | 
|---|
|  | 507 | foreach (@viewablegroups) { | 
|---|
| [547] | 508 | $flag = 1 if $dnsdb->isParent($_, 'group', $webvar{id}, 'revzone'); | 
|---|
| [545] | 509 | } | 
|---|
|  | 510 | if ($flag && ($permissions{admin} || $permissions{domain_edit})) { | 
|---|
| [547] | 511 | my $stat = $dnsdb->zoneStatus($webvar{id}, 'y', $webvar{zonestatus}); | 
|---|
| [545] | 512 | $page->param(resultmsg => $DNSDB::resultstr); | 
|---|
|  | 513 | } else { | 
|---|
|  | 514 | $page->param(errmsg => "You are not permitted to view or change the requested reverse zone"); | 
|---|
|  | 515 | } | 
|---|
|  | 516 | $uri_self =~ s/\&zonestatus=[^&]*//g;   # clean up URL for stuffing into templates | 
|---|
|  | 517 | } | 
|---|
|  | 518 |  | 
|---|
|  | 519 | show_msgs(); | 
|---|
|  | 520 |  | 
|---|
| [544] | 521 | $page->param(curpage => $webvar{page}); | 
|---|
|  | 522 | listzones(); | 
|---|
|  | 523 |  | 
|---|
|  | 524 | } elsif ($webvar{page} eq 'newrevzone') { | 
|---|
|  | 525 |  | 
|---|
|  | 526 | ## scope/access check - use domain settings?  invent new (bleh) | 
|---|
|  | 527 | changepage(page => "revzones", errmsg => "You are not permitted to add reverse zones") | 
|---|
|  | 528 | unless ($permissions{admin} || $permissions{domain_create}); | 
|---|
|  | 529 |  | 
|---|
|  | 530 | fill_grouplist("grouplist"); | 
|---|
| [725] | 531 | fill_loclist($curgroup, $webvar{defloc} ? $webvar{defloc} : ''); | 
|---|
| [544] | 532 |  | 
|---|
| [545] | 533 | # prepopulate revpatt with the matching default record | 
|---|
| [547] | 534 | # $dnsdb->getRecByName(revrec => $webvar{revrec}, defrec => $webvar{defrec}, host => 'string'); | 
|---|
| [545] | 535 |  | 
|---|
|  | 536 | if ($session->param('add_failed')) { | 
|---|
|  | 537 | $session->clear('add_failed'); | 
|---|
|  | 538 | $page->param(errmsg => $session->param('errmsg')); | 
|---|
|  | 539 | $session->clear('errmsg'); | 
|---|
| [544] | 540 | $page->param(revzone => $webvar{revzone}); | 
|---|
|  | 541 | $page->param(revpatt => $webvar{revpatt}); | 
|---|
|  | 542 | } | 
|---|
|  | 543 |  | 
|---|
|  | 544 | } elsif ($webvar{page} eq 'addrevzone') { | 
|---|
|  | 545 |  | 
|---|
|  | 546 | changepage(page => "revzones", errmsg => "You are not permitted to add reverse zones") | 
|---|
|  | 547 | unless ($permissions{admin} || $permissions{domain_create}); | 
|---|
|  | 548 |  | 
|---|
|  | 549 | # security check - does the user have permission to access this entity? | 
|---|
|  | 550 | if (!check_scope(id => $webvar{group}, type => 'group')) { | 
|---|
|  | 551 | changepage(page => "newrevzone", add_failed => 1, revzone => $webvar{revzone}, revpatt => $webvar{revpatt}, | 
|---|
|  | 552 | errmsg => "You do not have permission to add a reverse zone to the requested group"); | 
|---|
|  | 553 | } | 
|---|
|  | 554 |  | 
|---|
| [547] | 555 | my ($code,$msg) = $dnsdb->addRDNS($webvar{revzone}, $webvar{revpatt}, $webvar{group}, | 
|---|
|  | 556 | ($webvar{makeactive} eq 'on' ? 1 : 0), $webvar{location}); | 
|---|
| [544] | 557 |  | 
|---|
|  | 558 | if ($code eq 'OK') { | 
|---|
|  | 559 | changepage(page => "reclist", id => $msg, revrec => 'y'); | 
|---|
| [545] | 560 | } elsif ($code eq 'WARN') { | 
|---|
|  | 561 | changepage(page => "reclist", id => $msg, revrec => 'y', warnmsg => $DNSDB::resultstr); | 
|---|
| [544] | 562 | } else { | 
|---|
| [545] | 563 | $session->param('add_failed', 1); | 
|---|
|  | 564 | changepage(page => "newrevzone", revzone => $webvar{revzone}, revpatt => $webvar{revpatt}, errmsg => $msg); | 
|---|
| [544] | 565 | } | 
|---|
|  | 566 |  | 
|---|
| [545] | 567 | } elsif ($webvar{page} eq 'delrevzone') { | 
|---|
| [544] | 568 |  | 
|---|
| [545] | 569 | changepage(page => "revzones", errmsg => "You are not permitted to delete reverse zones") | 
|---|
|  | 570 | unless ($permissions{admin} || $permissions{domain_delete}); | 
|---|
|  | 571 |  | 
|---|
|  | 572 | # security check - does the user have permission to access this entity? | 
|---|
|  | 573 | if (!check_scope(id => $webvar{id}, type => 'revzone')) { | 
|---|
|  | 574 | changepage(page => "revzones", errmsg => "You do not have permission to delete the requested reverse zone"); | 
|---|
|  | 575 | } | 
|---|
|  | 576 |  | 
|---|
|  | 577 | $page->param(id => $webvar{id}); | 
|---|
|  | 578 |  | 
|---|
|  | 579 | # first pass = confirm y/n (sorta) | 
|---|
|  | 580 | if (!defined($webvar{del})) { | 
|---|
|  | 581 |  | 
|---|
|  | 582 | $page->param(del_getconf => 1); | 
|---|
| [547] | 583 | $page->param(revzone => $dnsdb->revName($webvar{id})); | 
|---|
| [545] | 584 |  | 
|---|
|  | 585 | } elsif ($webvar{del} eq 'ok') { | 
|---|
| [547] | 586 | my $pargroup = $dnsdb->parentID(id => $webvar{id}, type => 'revzone', revrec => $webvar{revrec}); | 
|---|
|  | 587 | my $zone = $dnsdb->revName($webvar{id}); | 
|---|
|  | 588 | my ($code,$msg) = $dnsdb->delZone($webvar{id}, 'y'); | 
|---|
| [545] | 589 | if ($code eq 'OK') { | 
|---|
|  | 590 | changepage(page => "revzones", resultmsg => $msg); | 
|---|
|  | 591 | } else { | 
|---|
|  | 592 | changepage(page => "revzones", errmsg => $msg); | 
|---|
|  | 593 | } | 
|---|
|  | 594 |  | 
|---|
|  | 595 | } else { | 
|---|
|  | 596 | # cancelled.  whee! | 
|---|
|  | 597 | changepage(page => "revzones"); | 
|---|
|  | 598 | } | 
|---|
|  | 599 |  | 
|---|
| [47] | 600 | } elsif ($webvar{page} eq 'reclist') { | 
|---|
|  | 601 |  | 
|---|
| [162] | 602 | # security check - does the user have permission to view this entity? | 
|---|
| [544] | 603 | if (!check_scope(id => $webvar{id}, type => | 
|---|
|  | 604 | ($webvar{defrec} eq 'y' ? 'group' : ($webvar{revrec} eq 'y' ? 'revzone' : 'domain')))) { | 
|---|
| [154] | 605 | $page->param(errmsg => "You are not permitted to view or change the requested ". | 
|---|
| [544] | 606 | ($webvar{defrec} eq 'y' ? "group's default records" : | 
|---|
|  | 607 | ($webvar{revrec} eq 'y' ? "reverse zone's records" : "domain's records"))); | 
|---|
| [160] | 608 | $page->param(perm_err => 1);        # this causes the template to skip the record listing output. | 
|---|
| [162] | 609 | goto DONERECLIST;   # and now we skip filling in the content which is not printed due to perm_err above | 
|---|
| [154] | 610 | } | 
|---|
| [162] | 611 |  | 
|---|
| [140] | 612 | # hmm.  where do we send them? | 
|---|
|  | 613 | if ($webvar{defrec} eq 'y' && !$permissions{admin}) { | 
|---|
|  | 614 | $page->param(errmsg => "You are not permitted to edit default records"); | 
|---|
|  | 615 | $page->param(perm_err => 1); | 
|---|
| [162] | 616 | } else { | 
|---|
| [140] | 617 |  | 
|---|
|  | 618 | $page->param(mayeditsoa => $permissions{admin} || $permissions{domain_edit}); | 
|---|
| [95] | 619 | ##fixme:  ACL needs pondering.  Does "edit domain" interact with record add/remove/etc? | 
|---|
|  | 620 | # Note this seems to be answered "no" in Vega. | 
|---|
|  | 621 | # ACLs | 
|---|
| [140] | 622 | $page->param(record_create  => ($permissions{admin} || $permissions{record_create}) ); | 
|---|
| [160] | 623 | # we don't have any general edit links on the page;  they're all embedded in the TMPL_LOOP | 
|---|
|  | 624 | #    $page->param(record_edit   => ($permissions{admin} || $permissions{record_edit}) ); | 
|---|
| [140] | 625 | $page->param(record_delete  => ($permissions{admin} || $permissions{record_delete}) ); | 
|---|
| [95] | 626 |  | 
|---|
| [47] | 627 | # Handle record list for both default records (per-group) and live domain records | 
|---|
|  | 628 |  | 
|---|
| [140] | 629 | $page->param(defrec => $webvar{defrec}); | 
|---|
| [544] | 630 | $page->param(revrec => $webvar{revrec}); | 
|---|
| [140] | 631 | $page->param(id => $webvar{id}); | 
|---|
|  | 632 | $page->param(curpage => $webvar{page}); | 
|---|
| [47] | 633 |  | 
|---|
| [690] | 634 | my $count = $dnsdb->getRecCount(defrec => $webvar{defrec}, revrec => $webvar{revrec}, | 
|---|
|  | 635 | id => $webvar{id}, filter => $filter); | 
|---|
| [47] | 636 |  | 
|---|
| [140] | 637 | $sortby = 'host'; | 
|---|
| [76] | 638 | # sort/order | 
|---|
| [140] | 639 | $session->param($webvar{page}.'sortby', $webvar{sortby}) if $webvar{sortby}; | 
|---|
|  | 640 | $session->param($webvar{page}.'order', $webvar{order}) if $webvar{order}; | 
|---|
| [76] | 641 |  | 
|---|
| [140] | 642 | $sortby = $session->param($webvar{page}.'sortby') if $session->param($webvar{page}.'sortby'); | 
|---|
|  | 643 | $sortorder = $session->param($webvar{page}.'order') if $session->param($webvar{page}.'order'); | 
|---|
| [76] | 644 |  | 
|---|
| [72] | 645 | # set up the headers | 
|---|
| [544] | 646 | my @cols; | 
|---|
|  | 647 | my %colheads; | 
|---|
|  | 648 | if ($webvar{revrec} eq 'n') { | 
|---|
|  | 649 | @cols = ('host', 'type', 'val', 'distance', 'weight', 'port', 'ttl'); | 
|---|
|  | 650 | %colheads = (host => 'Name', type => 'Type', val => 'Address', | 
|---|
| [72] | 651 | distance => 'Distance', weight => 'Weight', port => 'Port', ttl => 'TTL'); | 
|---|
| [544] | 652 | } else { | 
|---|
| [545] | 653 | @cols = ('val', 'type', 'host', 'ttl'); | 
|---|
|  | 654 | %colheads = (val => 'IP Address', type => 'Type', host => 'Hostname', ttl => 'TTL'); | 
|---|
| [544] | 655 | } | 
|---|
|  | 656 | my %custom = (id => $webvar{id}, defrec => $webvar{defrec}, revrec => $webvar{revrec}); | 
|---|
| [140] | 657 | fill_colheads($sortby, $sortorder, \@cols, \%colheads, \%custom); | 
|---|
| [72] | 658 |  | 
|---|
| [47] | 659 | # fill the page-count and first-previous-next-last-all details | 
|---|
| [140] | 660 | fill_pgcount($count,"records", | 
|---|
| [547] | 661 | ($webvar{defrec} eq 'y' ? "group ".$dnsdb->groupName($webvar{id}) : | 
|---|
|  | 662 | ($webvar{revrec} eq 'y' ? $dnsdb->revName($webvar{id}) : $dnsdb->domainName($webvar{id})) | 
|---|
| [544] | 663 | )); | 
|---|
| [140] | 664 | fill_fpnla($count);  # should put some params on this sub... | 
|---|
| [47] | 665 |  | 
|---|
| [140] | 666 | $page->param(defrec => $webvar{defrec}); | 
|---|
| [544] | 667 | showzone($webvar{defrec}, $webvar{revrec}, $webvar{id}); | 
|---|
|  | 668 | if ($webvar{defrec} eq 'n') { | 
|---|
|  | 669 | if ($webvar{revrec} eq 'n') { | 
|---|
|  | 670 | $page->param(logdom => 1); | 
|---|
|  | 671 | } else { | 
|---|
|  | 672 | $page->param(logrdns => 1); | 
|---|
|  | 673 | } | 
|---|
| [140] | 674 | } | 
|---|
| [47] | 675 |  | 
|---|
| [545] | 676 | show_msgs(); | 
|---|
| [63] | 677 |  | 
|---|
| [140] | 678 | } # close "you can't edit default records" check | 
|---|
|  | 679 |  | 
|---|
| [162] | 680 | # Yes, this is a GOTO target.  PTBHTTT. | 
|---|
|  | 681 | DONERECLIST: ; | 
|---|
|  | 682 |  | 
|---|
| [13] | 683 | } elsif ($webvar{page} eq 'record') { | 
|---|
| [16] | 684 |  | 
|---|
| [155] | 685 | # security check - does the user have permission to access this entity? | 
|---|
| [544] | 686 | if (!check_scope(id => $webvar{id}, type => | 
|---|
|  | 687 | ($webvar{defrec} eq 'y' ? ($webvar{revrec} eq 'y' ? 'defrevrec' : 'defrec') : 'record'))) { | 
|---|
| [158] | 688 | $page->param(perm_err => "You are not permitted to edit the requested record"); | 
|---|
| [155] | 689 | goto DONEREC; | 
|---|
|  | 690 | } | 
|---|
|  | 691 | # round 2, check the parent. | 
|---|
| [544] | 692 | if (!check_scope(id => $webvar{parentid}, type => | 
|---|
|  | 693 | ($webvar{defrec} eq 'y' ? 'group' : ($webvar{revrec} eq 'y' ? 'revzone' : 'domain')))) { | 
|---|
| [155] | 694 | my $msg = ($webvar{defrec} eq 'y' ? | 
|---|
|  | 695 | "You are not permitted to add or edit default records in the requested group" : | 
|---|
| [544] | 696 | "You are not permitted to add or edit records in the requested domain/zone"); | 
|---|
| [155] | 697 | $page->param(perm_err => $msg); | 
|---|
|  | 698 | goto DONEREC; | 
|---|
|  | 699 | } | 
|---|
|  | 700 |  | 
|---|
| [544] | 701 | $page->param(defrec => $webvar{defrec}); | 
|---|
|  | 702 | $page->param(revrec => $webvar{revrec}); | 
|---|
|  | 703 | $page->param(fwdzone => $webvar{revrec} eq 'n'); | 
|---|
|  | 704 |  | 
|---|
| [13] | 705 | if ($webvar{recact} eq 'new') { | 
|---|
| [16] | 706 |  | 
|---|
| [95] | 707 | changepage(page => "reclist", errmsg => "You are not permitted to add records", id => $webvar{parentid}) | 
|---|
|  | 708 | unless ($permissions{admin} || $permissions{record_create}); | 
|---|
|  | 709 |  | 
|---|
| [87] | 710 | $page->param(todo => "Add record"); | 
|---|
| [15] | 711 | $page->param(recact => "add"); | 
|---|
| [59] | 712 | $page->param(parentid => $webvar{parentid}); | 
|---|
| [16] | 713 |  | 
|---|
| [59] | 714 | fill_recdata(); | 
|---|
|  | 715 |  | 
|---|
| [545] | 716 | if ($webvar{defrec} eq 'n') { | 
|---|
| [547] | 717 | my $defloc = $dnsdb->getZoneLocation($webvar{revrec}, $webvar{parentid}); | 
|---|
| [545] | 718 | fill_loclist($curgroup, $defloc); | 
|---|
|  | 719 | } | 
|---|
|  | 720 |  | 
|---|
| [15] | 721 | } elsif ($webvar{recact} eq 'add') { | 
|---|
|  | 722 |  | 
|---|
| [95] | 723 | changepage(page => "reclist", errmsg => "You are not permitted to add records", id => $webvar{parentid}) | 
|---|
|  | 724 | unless ($permissions{admin} || $permissions{record_create}); | 
|---|
|  | 725 |  | 
|---|
| [545] | 726 | # location check - if user does not have record_locchg, set $webvar{location} to default location for zone | 
|---|
| [547] | 727 | my $parloc = $dnsdb->getZoneLocation($webvar{revrec}, $webvar{parentid}); | 
|---|
| [545] | 728 | $webvar{location} = $parloc unless ($permissions{admin} || $permissions{record_locchg}); | 
|---|
|  | 729 |  | 
|---|
| [547] | 730 | my @recargs = ($webvar{defrec}, $webvar{revrec}, $webvar{parentid}, | 
|---|
| [548] | 731 | \$webvar{name}, \$webvar{type}, \$webvar{address}, $webvar{ttl}, $webvar{location}, | 
|---|
|  | 732 | $webvar{expires}, $webvar{stamp}); | 
|---|
| [15] | 733 | if ($webvar{type} == $reverse_typemap{MX} or $webvar{type} == $reverse_typemap{SRV}) { | 
|---|
|  | 734 | push @recargs, $webvar{distance}; | 
|---|
|  | 735 | if ($webvar{type} == $reverse_typemap{SRV}) { | 
|---|
|  | 736 | push @recargs, $webvar{weight}; | 
|---|
|  | 737 | push @recargs, $webvar{port}; | 
|---|
|  | 738 | } | 
|---|
|  | 739 | } | 
|---|
| [59] | 740 |  | 
|---|
| [547] | 741 | my ($code,$msg) = $dnsdb->addRec(@recargs); | 
|---|
| [15] | 742 |  | 
|---|
| [544] | 743 | if ($code eq 'OK' || $code eq 'WARN') { | 
|---|
|  | 744 | my %pageparams = (page => "reclist", id => $webvar{parentid}, | 
|---|
|  | 745 | defrec => $webvar{defrec}, revrec => $webvar{revrec}); | 
|---|
| [649] | 746 | $pageparams{warnmsg} = $msg."<br />\n".$DNSDB::resultstr if $code eq 'WARN'; | 
|---|
| [545] | 747 | $pageparams{resultmsg} = $DNSDB::resultstr if $code eq 'OK'; | 
|---|
| [544] | 748 | changepage(%pageparams); | 
|---|
| [15] | 749 | } else { | 
|---|
| [24] | 750 | $page->param(failed       => 1); | 
|---|
|  | 751 | $page->param(errmsg       => $msg); | 
|---|
|  | 752 | $page->param(wastrying    => "adding"); | 
|---|
| [87] | 753 | $page->param(todo         => "Add record"); | 
|---|
| [24] | 754 | $page->param(recact       => "add"); | 
|---|
|  | 755 | $page->param(parentid     => $webvar{parentid}); | 
|---|
|  | 756 | $page->param(id           => $webvar{id}); | 
|---|
| [16] | 757 | fill_recdata();   # populate the form... er, mostly. | 
|---|
| [545] | 758 | if ($webvar{defrec} eq 'n') { | 
|---|
|  | 759 | fill_loclist($curgroup, $webvar{location}); | 
|---|
| [59] | 760 | } | 
|---|
| [15] | 761 | } | 
|---|
|  | 762 |  | 
|---|
| [13] | 763 | } elsif ($webvar{recact} eq 'edit') { | 
|---|
| [15] | 764 |  | 
|---|
| [95] | 765 | changepage(page => "reclist", errmsg => "You are not permitted to edit records", id => $webvar{parentid}) | 
|---|
|  | 766 | unless ($permissions{admin} || $permissions{record_edit}); | 
|---|
|  | 767 |  | 
|---|
| [16] | 768 | $page->param(todo           => "Update record"); | 
|---|
|  | 769 | $page->param(recact         => "update"); | 
|---|
|  | 770 | $page->param(parentid       => $webvar{parentid}); | 
|---|
| [17] | 771 | $page->param(id             => $webvar{id}); | 
|---|
| [547] | 772 | my $recdata = $dnsdb->getRecLine($webvar{defrec}, $webvar{revrec}, $webvar{id}); | 
|---|
| [90] | 773 | $page->param(name           => $recdata->{host}); | 
|---|
|  | 774 | $page->param(address        => $recdata->{val}); | 
|---|
|  | 775 | $page->param(distance       => $recdata->{distance}); | 
|---|
|  | 776 | $page->param(weight         => $recdata->{weight}); | 
|---|
|  | 777 | $page->param(port           => $recdata->{port}); | 
|---|
|  | 778 | $page->param(ttl            => $recdata->{ttl}); | 
|---|
| [547] | 779 | $page->param(typelist       => $dnsdb->getTypelist($webvar{revrec}, $recdata->{type})); | 
|---|
| [548] | 780 | if ($recdata->{stampactive}) { | 
|---|
|  | 781 | $page->param(stamp => $recdata->{stamp}); | 
|---|
|  | 782 | $page->param(stamp_until => $recdata->{expires}); | 
|---|
|  | 783 | } | 
|---|
| [545] | 784 | if ($webvar{defrec} eq 'n') { | 
|---|
|  | 785 | fill_loclist($curgroup, $recdata->{location}); | 
|---|
|  | 786 | } | 
|---|
|  | 787 |  | 
|---|
| [16] | 788 | } elsif ($webvar{recact} eq 'update') { | 
|---|
|  | 789 |  | 
|---|
| [95] | 790 | changepage(page => "reclist", errmsg => "You are not permitted to edit records", id => $webvar{parentid}) | 
|---|
|  | 791 | unless ($permissions{admin} || $permissions{record_edit}); | 
|---|
|  | 792 |  | 
|---|
| [545] | 793 | # retain old location if user doesn't have permission to fiddle locations | 
|---|
| [547] | 794 | my $oldrec = $dnsdb->getRecLine($webvar{defrec}, $webvar{revrec}, $webvar{id}); | 
|---|
| [545] | 795 | $webvar{location} = $oldrec->{location} unless ($permissions{admin} || $permissions{record_locchg}); | 
|---|
| [159] | 796 |  | 
|---|
| [547] | 797 | my ($code,$msg) = $dnsdb->updateRec($webvar{defrec}, $webvar{revrec}, $webvar{id}, $webvar{parentid}, | 
|---|
|  | 798 | \$webvar{name}, \$webvar{type}, \$webvar{address}, $webvar{ttl}, $webvar{location}, | 
|---|
| [548] | 799 | $webvar{expires}, $webvar{stamp}, | 
|---|
| [547] | 800 | $webvar{distance}, $webvar{weight}, $webvar{port}); | 
|---|
| [16] | 801 |  | 
|---|
| [545] | 802 | if ($code eq 'OK' || $code eq 'WARN') { | 
|---|
|  | 803 | my %pageparams = (page => "reclist", id => $webvar{parentid}, | 
|---|
|  | 804 | defrec => $webvar{defrec}, revrec => $webvar{revrec}); | 
|---|
| [649] | 805 | $pageparams{warnmsg} = $msg."<br />\n".$DNSDB::resultstr if $code eq 'WARN'; | 
|---|
| [545] | 806 | $pageparams{resultmsg} = $DNSDB::resultstr if $code eq 'OK'; | 
|---|
|  | 807 | changepage(%pageparams); | 
|---|
| [16] | 808 | } else { | 
|---|
|  | 809 | $page->param(failed       => 1); | 
|---|
|  | 810 | $page->param(errmsg       => $msg); | 
|---|
|  | 811 | $page->param(wastrying    => "updating"); | 
|---|
|  | 812 | $page->param(todo         => "Update record"); | 
|---|
|  | 813 | $page->param(recact       => "update"); | 
|---|
|  | 814 | $page->param(parentid     => $webvar{parentid}); | 
|---|
| [17] | 815 | $page->param(id           => $webvar{id}); | 
|---|
| [16] | 816 | fill_recdata(); | 
|---|
|  | 817 | } | 
|---|
| [13] | 818 | } | 
|---|
| [16] | 819 |  | 
|---|
| [13] | 820 | if ($webvar{defrec} eq 'y') { | 
|---|
| [547] | 821 | $page->param(dohere => "default records in group ".$dnsdb->groupName($webvar{parentid})); | 
|---|
| [13] | 822 | } else { | 
|---|
| [547] | 823 | $page->param(dohere => $dnsdb->domainName($webvar{parentid})) if $webvar{revrec} eq 'n'; | 
|---|
|  | 824 | $page->param(dohere => $dnsdb->revName($webvar{parentid})) if $webvar{revrec} eq 'y'; | 
|---|
| [13] | 825 | } | 
|---|
|  | 826 |  | 
|---|
| [155] | 827 | # Yes, this is a GOTO target.  PTBHTTT. | 
|---|
|  | 828 | DONEREC: ; | 
|---|
|  | 829 |  | 
|---|
| [2] | 830 | } elsif ($webvar{page} eq 'delrec') { | 
|---|
|  | 831 |  | 
|---|
| [111] | 832 | # This is a complete separate segment since it uses a different template from add/edit records above | 
|---|
|  | 833 |  | 
|---|
| [544] | 834 | changepage(page => "reclist", errmsg => "You are not permitted to delete records", id => $webvar{parentid}, | 
|---|
|  | 835 | defrec => $webvar{defrec}, revrec => $webvar{revrec}) | 
|---|
| [95] | 836 | unless ($permissions{admin} || $permissions{record_delete}); | 
|---|
|  | 837 |  | 
|---|
| [430] | 838 | if (!check_scope(id => $webvar{id}, type => | 
|---|
|  | 839 | ($webvar{defrec} eq 'y' ? ($webvar{revrec} eq 'y' ? 'defrevrec' : 'defrec') : 'record'))) { | 
|---|
| [544] | 840 | # redirect to domlist because we don't have permission for the entity requested | 
|---|
|  | 841 | changepage(page => 'domlist', revrec => $webvar{revrec}, | 
|---|
|  | 842 | errmsg => "You do not have permission to delete records in the requested ". | 
|---|
| [182] | 843 | ($webvar{defrec} eq 'y' ? 'group' : 'domain')); | 
|---|
|  | 844 | } | 
|---|
|  | 845 |  | 
|---|
| [2] | 846 | $page->param(id => $webvar{id}); | 
|---|
|  | 847 | $page->param(defrec => $webvar{defrec}); | 
|---|
| [544] | 848 | $page->param(revrec => $webvar{revrec}); | 
|---|
| [39] | 849 | $page->param(parentid => $webvar{parentid}); | 
|---|
| [2] | 850 | # first pass = confirm y/n (sorta) | 
|---|
|  | 851 | if (!defined($webvar{del})) { | 
|---|
|  | 852 | $page->param(del_getconf => 1); | 
|---|
| [547] | 853 | my $rec = $dnsdb->getRecLine($webvar{defrec}, $webvar{revrec}, $webvar{id}); | 
|---|
| [107] | 854 | $page->param(host => $rec->{host}); | 
|---|
|  | 855 | $page->param(ftype => $typemap{$rec->{type}}); | 
|---|
|  | 856 | $page->param(recval => $rec->{val}); | 
|---|
| [39] | 857 | } elsif ($webvar{del} eq 'ok') { | 
|---|
| [547] | 858 | my ($code,$msg) = $dnsdb->delRec($webvar{defrec}, $webvar{revrec}, $webvar{id}); | 
|---|
| [187] | 859 | if ($code eq 'OK') { | 
|---|
| [545] | 860 | changepage(page => "reclist", id => $webvar{parentid}, defrec => $webvar{defrec}, | 
|---|
|  | 861 | revrec => $webvar{revrec}, resultmsg => $msg); | 
|---|
| [187] | 862 | } else { | 
|---|
| [3] | 863 | ## need to find failure mode | 
|---|
| [88] | 864 | changepage(page => "reclist", id => $webvar{parentid}, defrec => $webvar{defrec}, | 
|---|
| [545] | 865 | revrec => $webvar{revrec}, errmsg => $msg); | 
|---|
| [3] | 866 | } | 
|---|
| [39] | 867 | } else { | 
|---|
| [544] | 868 | changepage(page => "reclist", id => $webvar{parentid}, defrec => $webvar{defrec}, revrec => $webvar{revrec}); | 
|---|
| [2] | 869 | } | 
|---|
|  | 870 |  | 
|---|
|  | 871 | } elsif ($webvar{page} eq 'editsoa') { | 
|---|
|  | 872 |  | 
|---|
| [162] | 873 | # security check - does the user have permission to view this entity? | 
|---|
| [544] | 874 | # id is domain/revzone/group id | 
|---|
|  | 875 | if (!check_scope(id => $webvar{id}, type => | 
|---|
|  | 876 | ($webvar{defrec} eq 'y' ? 'group' : ($webvar{revrec} eq 'y' ? 'revzone' : 'domain')))) { | 
|---|
| [162] | 877 | changepage(page => 'domlist', errmsg => "You do not have permission to edit the ". | 
|---|
|  | 878 | ($webvar{defrec} eq 'y' ? 'default ' : '')."SOA record for the requested ". | 
|---|
|  | 879 | ($webvar{defrec} eq 'y' ? 'group' : 'domain')); | 
|---|
|  | 880 | } | 
|---|
|  | 881 |  | 
|---|
|  | 882 | if ($webvar{defrec} eq 'y') { | 
|---|
|  | 883 | changepage(page => "domlist", errmsg => "You are not permitted to edit default records") | 
|---|
|  | 884 | unless $permissions{admin}; | 
|---|
|  | 885 | } else { | 
|---|
|  | 886 | changepage(page => "reclist", errmsg => "You are not permitted to edit domain SOA records", id => $webvar{id}) | 
|---|
| [111] | 887 | unless ($permissions{admin} || $permissions{domain_edit}); | 
|---|
| [162] | 888 | } | 
|---|
| [111] | 889 |  | 
|---|
| [545] | 890 | fillsoa($webvar{defrec},$webvar{revrec},$webvar{id}); | 
|---|
| [2] | 891 |  | 
|---|
|  | 892 | } elsif ($webvar{page} eq 'updatesoa') { | 
|---|
|  | 893 |  | 
|---|
| [162] | 894 | # security check - does the user have permission to view this entity? | 
|---|
|  | 895 | # pass 1, record ID | 
|---|
| [544] | 896 | if (!check_scope(id => $webvar{recid}, type => | 
|---|
|  | 897 | ($webvar{defrec} eq 'y' ? ($webvar{revrec} eq 'y' ? 'defrevrec' : 'defrec') : 'record'))) { | 
|---|
| [545] | 898 | ##fixme:  should we redirect to the requested record list page instead of the domain list? | 
|---|
| [162] | 899 | changepage(page => 'domlist', errmsg => "You do not have permission to edit the requested SOA record"); | 
|---|
|  | 900 | } | 
|---|
|  | 901 | # pass 2, parent (group or domain) ID | 
|---|
| [544] | 902 | if (!check_scope(id => $webvar{id}, type => | 
|---|
|  | 903 | ($webvar{defrec} eq 'y' ? 'group' : ($webvar{revrec} eq 'y' ? 'revzone' : 'domain')))) { | 
|---|
| [545] | 904 | changepage(page => ($webvar{revrec} eq 'y' ? 'revzones' : 'domlist'), | 
|---|
|  | 905 | errmsg => "You do not have permission to edit the ". | 
|---|
| [162] | 906 | ($webvar{defrec} eq 'y' ? 'default ' : '')."SOA record for the requested ". | 
|---|
| [545] | 907 | ($webvar{defrec} eq 'y' ? 'group' : ($webvar{revrec} eq 'y' ? 'reverse zone' : 'domain')) ); | 
|---|
| [162] | 908 | } | 
|---|
|  | 909 |  | 
|---|
| [111] | 910 | changepage(page => "reclist", errmsg => "You are not permitted to edit domain SOA records", id => $webvar{id}) | 
|---|
|  | 911 | unless ($permissions{admin} || $permissions{domain_edit}); | 
|---|
|  | 912 |  | 
|---|
| [547] | 913 | my ($code, $msg) = $dnsdb->updateSOA($webvar{defrec}, $webvar{revrec}, | 
|---|
| [545] | 914 | (contact => $webvar{contact}, prins => $webvar{prins}, refresh => $webvar{refresh}, | 
|---|
|  | 915 | retry => $webvar{retry}, expire => $webvar{expire}, minttl => $webvar{minttl}, | 
|---|
|  | 916 | ttl => $webvar{ttl}, id => $webvar{id}) ); | 
|---|
|  | 917 | if ($code eq 'OK') { | 
|---|
|  | 918 | changepage(page => "reclist", id => $webvar{id}, defrec => $webvar{defrec}, revrec => $webvar{revrec}, | 
|---|
|  | 919 | resultmsg => "SOA record updated"); | 
|---|
|  | 920 | } else { | 
|---|
| [2] | 921 | $page->param(update_failed => 1); | 
|---|
| [545] | 922 | $page->param(msg => $msg); | 
|---|
|  | 923 | fillsoa($webvar{defrec}, $webvar{revrec}, $webvar{id}, 'w'); | 
|---|
| [2] | 924 | } | 
|---|
|  | 925 |  | 
|---|
| [17] | 926 | } elsif ($webvar{page} eq 'grpman') { | 
|---|
| [2] | 927 |  | 
|---|
| [22] | 928 | listgroups(); | 
|---|
| [140] | 929 |  | 
|---|
|  | 930 | # Permissions! | 
|---|
|  | 931 | $page->param(addgrp => $permissions{admin} || $permissions{group_create}); | 
|---|
|  | 932 | $page->param(edgrp => $permissions{admin} || $permissions{group_edit}); | 
|---|
|  | 933 | $page->param(delgrp => $permissions{admin} || $permissions{group_delete}); | 
|---|
|  | 934 |  | 
|---|
| [545] | 935 | show_msgs(); | 
|---|
| [18] | 936 | $page->param(curpage => $webvar{page}); | 
|---|
|  | 937 |  | 
|---|
| [17] | 938 | } elsif ($webvar{page} eq 'newgrp') { | 
|---|
| [20] | 939 |  | 
|---|
| [179] | 940 | changepage(page => "grpman", errmsg => "You are not permitted to add groups") | 
|---|
|  | 941 | unless ($permissions{admin} || $permissions{group_create}); | 
|---|
| [111] | 942 |  | 
|---|
| [207] | 943 | # do.. uhh.. stuff.. if we have no webvar{grpaction} | 
|---|
|  | 944 | if ($webvar{grpaction} && $webvar{grpaction} eq 'add') { | 
|---|
| [179] | 945 |  | 
|---|
|  | 946 | # security check - does the user have permission to access this entity? | 
|---|
|  | 947 | if (!check_scope(id => $webvar{pargroup}, type => 'group')) { | 
|---|
|  | 948 | changepage(page => "grpman", errmsg => "You are not permitted to add a group to the requested parent group"); | 
|---|
|  | 949 | } | 
|---|
|  | 950 |  | 
|---|
| [66] | 951 | my %newperms; | 
|---|
| [179] | 952 | my $alterperms = 0; | 
|---|
| [66] | 953 | foreach (@permtypes) { | 
|---|
|  | 954 | $newperms{$_} = 0; | 
|---|
| [179] | 955 | if ($permissions{admin} || $permissions{$_}) { | 
|---|
|  | 956 | $newperms{$_} = (defined($webvar{$_}) && $webvar{$_} eq 'on' ? 1 : 0); | 
|---|
|  | 957 | } else { | 
|---|
|  | 958 | $alterperms = 1; | 
|---|
|  | 959 | } | 
|---|
| [66] | 960 | } | 
|---|
| [545] | 961 | # "Chained" permissions.  Some permissions imply others;  make sure they get set. | 
|---|
|  | 962 | foreach (keys %permchains) { | 
|---|
|  | 963 | if ($newperms{$_} && !$newperms{$permchains{$_}}) { | 
|---|
|  | 964 | $newperms{$permchains{$_}} = 1; | 
|---|
|  | 965 | } | 
|---|
|  | 966 | } | 
|---|
| [547] | 967 | # force inheritance of parent group's default records with inherit flag, | 
|---|
|  | 968 | # otherwise we end up with the hardcoded defaults from DNSDB.pm.  See | 
|---|
|  | 969 | # https://secure.deepnet.cx/trac/dnsadmin/ticket/8 for the UI enhancement | 
|---|
|  | 970 | # that will make this variable. | 
|---|
|  | 971 | my ($code,$msg) = $dnsdb->addGroup($webvar{newgroup}, $webvar{pargroup}, \%newperms, 1); | 
|---|
| [57] | 972 | if ($code eq 'OK') { | 
|---|
| [179] | 973 | if ($alterperms) { | 
|---|
|  | 974 | changepage(page => "grpman", warnmsg => | 
|---|
|  | 975 | "You can only grant permissions you hold.  New group $webvar{newgroup} added with reduced access."); | 
|---|
|  | 976 | } else { | 
|---|
|  | 977 | changepage(page => "grpman", resultmsg => "Added group $webvar{newgroup}"); | 
|---|
|  | 978 | } | 
|---|
| [187] | 979 | } # fallthrough else | 
|---|
| [66] | 980 | # no point in doing extra work | 
|---|
|  | 981 | fill_permissions($page, \%newperms); | 
|---|
| [18] | 982 | $page->param(add_failed => 1); | 
|---|
|  | 983 | $page->param(errmsg => $msg); | 
|---|
|  | 984 | $page->param(newgroup => $webvar{newgroup}); | 
|---|
| [66] | 985 | fill_grouplist('pargroup',$webvar{pargroup}); | 
|---|
| [19] | 986 | } else { | 
|---|
| [66] | 987 | fill_grouplist('pargroup',$curgroup); | 
|---|
| [88] | 988 | # fill default permissions with immediate parent's current ones | 
|---|
| [66] | 989 | my %parperms; | 
|---|
| [547] | 990 | $dnsdb->getPermissions('group', $curgroup, \%parperms); | 
|---|
| [66] | 991 | fill_permissions($page, \%parperms); | 
|---|
| [18] | 992 | } | 
|---|
| [20] | 993 |  | 
|---|
| [22] | 994 | } elsif ($webvar{page} eq 'delgrp') { | 
|---|
| [20] | 995 |  | 
|---|
| [111] | 996 | changepage(page => "grpman", errmsg => "You are not permitted to delete groups", id => $webvar{parentid}) | 
|---|
|  | 997 | unless ($permissions{admin} || $permissions{group_delete}); | 
|---|
|  | 998 |  | 
|---|
| [179] | 999 | # security check - does the user have permission to access this entity? | 
|---|
|  | 1000 | if (!check_scope(id => $webvar{id}, type => 'group')) { | 
|---|
|  | 1001 | changepage(page => "grpman", errmsg => "You are not permitted to delete the requested group"); | 
|---|
|  | 1002 | } | 
|---|
|  | 1003 |  | 
|---|
| [20] | 1004 | $page->param(id => $webvar{id}); | 
|---|
|  | 1005 | # first pass = confirm y/n (sorta) | 
|---|
|  | 1006 | if (!defined($webvar{del})) { | 
|---|
|  | 1007 | $page->param(del_getconf => 1); | 
|---|
| [140] | 1008 |  | 
|---|
|  | 1009 | ##fixme | 
|---|
|  | 1010 | # do a check for "group has stuff in it", and splatter a big warning | 
|---|
|  | 1011 | # up along with an unchecked-by-default check box to YES DAMMIT DELETE THE WHOLE THING | 
|---|
|  | 1012 |  | 
|---|
| [20] | 1013 | } elsif ($webvar{del} eq 'ok') { | 
|---|
| [547] | 1014 | my ($code,$msg) = $dnsdb->delGroup($webvar{id}); | 
|---|
| [187] | 1015 | if ($code eq 'OK') { | 
|---|
| [57] | 1016 | ##fixme: need to clean up log when deleting a major container | 
|---|
| [545] | 1017 | changepage(page => "grpman", resultmsg => $msg); | 
|---|
| [187] | 1018 | } else { | 
|---|
|  | 1019 | # need to find failure mode | 
|---|
| [545] | 1020 | changepage(page => "grpman", errmsg => $msg); | 
|---|
| [20] | 1021 | } | 
|---|
|  | 1022 | } else { | 
|---|
|  | 1023 | # cancelled.  whee! | 
|---|
|  | 1024 | changepage(page => "grpman"); | 
|---|
|  | 1025 | } | 
|---|
| [547] | 1026 | $page->param(delgroupname => $dnsdb->groupName($webvar{id})); | 
|---|
| [24] | 1027 |  | 
|---|
| [65] | 1028 | } elsif ($webvar{page} eq 'edgroup') { | 
|---|
|  | 1029 |  | 
|---|
| [140] | 1030 | changepage(page => "grpman", errmsg => "You are not permitted to edit groups") | 
|---|
| [111] | 1031 | unless ($permissions{admin} || $permissions{group_edit}); | 
|---|
|  | 1032 |  | 
|---|
| [179] | 1033 | # security check - does the user have permission to access this entity? | 
|---|
|  | 1034 | if (!check_scope(id => $webvar{gid}, type => 'group')) { | 
|---|
|  | 1035 | changepage(page => "grpman", errmsg => "You are not permitted to edit the requested group"); | 
|---|
|  | 1036 | } | 
|---|
|  | 1037 |  | 
|---|
| [545] | 1038 | if ($webvar{grpaction} && $webvar{grpaction} eq 'updperms') { | 
|---|
| [65] | 1039 | # extra safety check;  make sure user can't construct a URL to bypass ACLs | 
|---|
|  | 1040 | my %curperms; | 
|---|
| [547] | 1041 | $dnsdb->getPermissions('group', $webvar{gid}, \%curperms); | 
|---|
| [66] | 1042 | my %chperms; | 
|---|
| [178] | 1043 | my $alterperms = 0; | 
|---|
| [66] | 1044 | foreach (@permtypes) { | 
|---|
| [65] | 1045 | $webvar{$_} = 0 if !defined($webvar{$_}); | 
|---|
|  | 1046 | $webvar{$_} = 1 if $webvar{$_} eq 'on'; | 
|---|
| [178] | 1047 | if ($permissions{admin} || $permissions{$_}) { | 
|---|
|  | 1048 | $chperms{$_} = $webvar{$_} if $curperms{$_} ne $webvar{$_}; | 
|---|
|  | 1049 | } else { | 
|---|
|  | 1050 | $alterperms = 1; | 
|---|
|  | 1051 | $chperms{$_} = 0; | 
|---|
|  | 1052 | } | 
|---|
| [65] | 1053 | } | 
|---|
| [545] | 1054 | # "Chained" permissions.  Some permissions imply others;  make sure they get set. | 
|---|
|  | 1055 | foreach (keys %permchains) { | 
|---|
|  | 1056 | if ($chperms{$_} && !$chperms{$permchains{$_}}) { | 
|---|
|  | 1057 | $chperms{$permchains{$_}} = 1; | 
|---|
|  | 1058 | } | 
|---|
|  | 1059 | } | 
|---|
| [547] | 1060 | my ($code,$msg) = $dnsdb->changePermissions('group', $webvar{gid}, \%chperms); | 
|---|
| [66] | 1061 | if ($code eq 'OK') { | 
|---|
| [178] | 1062 | if ($alterperms) { | 
|---|
|  | 1063 | changepage(page => "grpman", warnmsg => | 
|---|
|  | 1064 | "You can only grant permissions you hold.  Default permissions in group ". | 
|---|
| [547] | 1065 | $dnsdb->groupName($webvar{gid})." updated with reduced access"); | 
|---|
| [178] | 1066 | } else { | 
|---|
| [545] | 1067 | changepage(page => "grpman", resultmsg => $msg); | 
|---|
| [178] | 1068 | } | 
|---|
| [187] | 1069 | } # fallthrough else | 
|---|
| [66] | 1070 | # no point in doing extra work | 
|---|
|  | 1071 | fill_permissions($page, \%chperms); | 
|---|
|  | 1072 | $page->param(errmsg => $msg); | 
|---|
| [65] | 1073 | } | 
|---|
|  | 1074 | $page->param(gid => $webvar{gid}); | 
|---|
| [547] | 1075 | $page->param(grpmeddle => $dnsdb->groupName($webvar{gid})); | 
|---|
| [65] | 1076 | my %grpperms; | 
|---|
| [547] | 1077 | $dnsdb->getPermissions('group', $webvar{gid}, \%grpperms); | 
|---|
| [66] | 1078 | fill_permissions($page, \%grpperms); | 
|---|
| [65] | 1079 |  | 
|---|
| [649] | 1080 | } elsif ($webvar{page} eq 'bulkdomain' || $webvar{page} eq 'bulkrev') { | 
|---|
| [110] | 1081 | # Bulk operations on domains.  Note all but group move are available on the domain list. | 
|---|
|  | 1082 |  | 
|---|
| [649] | 1083 | changepage(page => "domlist", errmsg => "You are not permitted to make bulk zone changes") | 
|---|
| [111] | 1084 | unless ($permissions{admin} || $permissions{domain_edit} || $permissions{domain_create} || $permissions{domain_delete}); | 
|---|
| [110] | 1085 |  | 
|---|
| [126] | 1086 | fill_grouplist("grouplist"); | 
|---|
|  | 1087 |  | 
|---|
| [649] | 1088 | $page->param(fwdzone => $webvar{page} eq 'bulkdomain'); | 
|---|
| [110] | 1089 |  | 
|---|
| [649] | 1090 | my $count = $dnsdb->getZoneCount(revrec => ($webvar{page} eq 'bulkdomain' ? 'n' : 'y'), | 
|---|
|  | 1091 | curgroup => $curgroup); | 
|---|
|  | 1092 |  | 
|---|
| [110] | 1093 | $page->param(curpage => $webvar{page}); | 
|---|
| [547] | 1094 | fill_pgcount($count, 'domains', $dnsdb->groupName($curgroup)); | 
|---|
| [110] | 1095 | fill_fpnla($count); | 
|---|
| [112] | 1096 | $page->param(perpage => $perpage); | 
|---|
| [110] | 1097 |  | 
|---|
| [649] | 1098 | my $domlist = $dnsdb->getZoneList(revrec => ($webvar{page} eq 'bulkdomain' ? 'n' : 'y'), | 
|---|
|  | 1099 | curgroup => $curgroup, offset => $offset); | 
|---|
| [110] | 1100 | my $rownum = 0; | 
|---|
| [545] | 1101 | foreach my $dom (@{$domlist}) { | 
|---|
|  | 1102 | delete $dom->{status}; | 
|---|
|  | 1103 | delete $dom->{group}; | 
|---|
| [649] | 1104 | $dom->{newrow} = (++$rownum) % 5 == 0 && $rownum != $perpage; | 
|---|
| [110] | 1105 | } | 
|---|
| [545] | 1106 |  | 
|---|
|  | 1107 | $page->param(domtable => $domlist); | 
|---|
| [112] | 1108 | # ACLs | 
|---|
| [110] | 1109 | $page->param(maymove => ($permissions{admin} || ($permissions{domain_edit} && $permissions{domain_create} && $permissions{domain_delete}))); | 
|---|
|  | 1110 | $page->param(maystatus => $permissions{admin} || $permissions{domain_edit}); | 
|---|
|  | 1111 | $page->param(maydelete => $permissions{admin} || $permissions{domain_delete}); | 
|---|
|  | 1112 |  | 
|---|
| [649] | 1113 | #} elsif ($webvar{page} eq 'confirmbulkdom' || $webvar{page} eq 'confirmbulkrev') { | 
|---|
|  | 1114 | } elsif ($webvar{page} eq 'confirmbulk') { | 
|---|
|  | 1115 |  | 
|---|
|  | 1116 | changepage(page => "domlist", errmsg => "You are not permitted to make bulk zone changes") | 
|---|
|  | 1117 | unless ($permissions{admin} || $permissions{domain_edit} || $permissions{domain_create} || $permissions{domain_delete}); | 
|---|
|  | 1118 |  | 
|---|
|  | 1119 | $page->param(bulkaction => $webvar{bulkaction}); | 
|---|
|  | 1120 | $page->param(destgroup => $webvar{destgroup}); | 
|---|
|  | 1121 | my @zlist; | 
|---|
|  | 1122 | my $rownum = 0; | 
|---|
|  | 1123 |  | 
|---|
|  | 1124 | ##fixme: this could probably be made more efficient, since this looks up 2 zone names for | 
|---|
|  | 1125 | # each comparison during sort rather than slurping them in bulk once before doing the sort | 
|---|
|  | 1126 | # sort zones by zone name, not ID | 
|---|
|  | 1127 | sub zsort { | 
|---|
|  | 1128 | my $tmpa = ($a =~ /^dom/ ? $dnsdb->domainName($webvar{$a}) : $dnsdb->revName($webvar{$a}) ); | 
|---|
|  | 1129 | my $tmpb = ($b =~ /^dom/ ? $dnsdb->domainName($webvar{$b}) : $dnsdb->revName($webvar{$b}) ); | 
|---|
|  | 1130 | return $tmpa cmp $tmpb; | 
|---|
|  | 1131 | } | 
|---|
|  | 1132 | # eugh.  can't see a handy way to sort this mess by zone name the way it is on the submitting page.  :( | 
|---|
|  | 1133 | foreach my $input (sort zsort grep(/^(?:dom|rev)_/, keys %webvar) ) { | 
|---|
|  | 1134 | next unless $input =~ /^(dom|rev)_\d+$/; | 
|---|
|  | 1135 | my $fr = $1; | 
|---|
|  | 1136 | my %row = (zoneid => $webvar{$input}, | 
|---|
|  | 1137 | zone => ($fr eq 'dom' ? $dnsdb->domainName($webvar{$input}) : $dnsdb->revName($webvar{$input}) ), | 
|---|
|  | 1138 | zvarname => $input, | 
|---|
|  | 1139 | newrow => ( (++$rownum) % 5 == 0 && $rownum != $perpage), | 
|---|
|  | 1140 | ); | 
|---|
|  | 1141 | push @zlist, \%row; | 
|---|
|  | 1142 | } | 
|---|
|  | 1143 | $page->param(domtable => \@zlist); | 
|---|
|  | 1144 |  | 
|---|
| [112] | 1145 | } elsif ($webvar{page} eq 'bulkchange') { | 
|---|
| [110] | 1146 |  | 
|---|
| [155] | 1147 | # security check - does the user have permission to access this entity? | 
|---|
| [169] | 1148 | if (!check_scope(id => $webvar{destgroup}, type => 'group')) { | 
|---|
| [155] | 1149 | $page->param(errmsg => "You are not permitted to make bulk changes in the requested group"); | 
|---|
|  | 1150 | goto DONEBULK; | 
|---|
|  | 1151 | } | 
|---|
|  | 1152 |  | 
|---|
| [649] | 1153 | # skip the changes if user did not confirm | 
|---|
|  | 1154 | my $wasrev = grep /^rev_/, keys %webvar; | 
|---|
|  | 1155 | changepage(page => ($wasrev ? "bulkrev" : "bulkdomain")) unless $webvar{okdel} eq 'y'; | 
|---|
|  | 1156 |  | 
|---|
|  | 1157 | changepage(page => "domlist", errmsg => "You are not permitted to make bulk zone changes") | 
|---|
|  | 1158 | unless ($permissions{admin} || $permissions{domain_edit} || $permissions{domain_create} || $permissions{domain_delete}); | 
|---|
|  | 1159 |  | 
|---|
| [545] | 1160 | # per-action scope checks | 
|---|
| [207] | 1161 | if ($webvar{bulkaction} eq 'move') { | 
|---|
| [649] | 1162 | changepage(page => "domlist", errmsg => "You are not permitted to bulk-move zones") | 
|---|
| [112] | 1163 | unless ($permissions{admin} || ($permissions{domain_edit} && $permissions{domain_create} && $permissions{domain_delete})); | 
|---|
| [547] | 1164 | my $newgname = $dnsdb->groupName($webvar{destgroup}); | 
|---|
| [114] | 1165 | $page->param(action => "Move to group $newgname"); | 
|---|
| [207] | 1166 | } elsif ($webvar{bulkaction} eq 'deactivate' || $webvar{bulkaction} eq 'activate') { | 
|---|
| [649] | 1167 | changepage(page => "domlist", errmsg => "You are not permitted to bulk-$webvar{bulkaction} zones") | 
|---|
| [112] | 1168 | unless ($permissions{admin} || $permissions{domain_edit}); | 
|---|
| [649] | 1169 | $page->param(action => "$webvar{bulkaction} zones"); | 
|---|
| [207] | 1170 | } elsif ($webvar{bulkaction} eq 'delete') { | 
|---|
| [649] | 1171 | changepage(page => "domlist", errmsg => "You are not permitted to bulk-delete zones") | 
|---|
| [112] | 1172 | unless ($permissions{admin} || $permissions{domain_delete}); | 
|---|
| [649] | 1173 | $page->param(action => "$webvar{bulkaction} zones"); | 
|---|
| [545] | 1174 | } else { | 
|---|
|  | 1175 | # unknown action, bypass actually doing anything.  it should not be possible in | 
|---|
|  | 1176 | # normal operations, and anyone who meddles with the URL gets what they deserve. | 
|---|
|  | 1177 | goto DONEBULK; | 
|---|
|  | 1178 | } # move/(de)activate/delete if() | 
|---|
|  | 1179 |  | 
|---|
|  | 1180 | my @bulkresults; | 
|---|
|  | 1181 | # nngh.  due to alpha-sorting on the previous page, we can't use domid-numeric | 
|---|
|  | 1182 | # order here, and since we don't have the domain names until we go around this | 
|---|
|  | 1183 | # loop, we can't alpha-sort them here.  :( | 
|---|
| [649] | 1184 | foreach my $input (keys %webvar) { | 
|---|
| [545] | 1185 | my %row; | 
|---|
| [649] | 1186 | next unless $input =~ /^(dom|rev)_\d+$/; | 
|---|
|  | 1187 | my $fr = $1; | 
|---|
| [545] | 1188 | # second security check - does the user have permission to meddle with this domain? | 
|---|
| [649] | 1189 | if (!check_scope(id => $webvar{$input}, type => ($fr eq 'dom' ? 'domain' : 'revzone'))) { | 
|---|
|  | 1190 | $row{domerr} = "You are not permitted to make changes to the requested zone"; | 
|---|
|  | 1191 | $row{domain} = $webvar{$input}; | 
|---|
| [114] | 1192 | push @bulkresults, \%row; | 
|---|
| [545] | 1193 | next; | 
|---|
| [114] | 1194 | } | 
|---|
| [649] | 1195 | $row{domain} = ($fr eq 'dom' ? $dnsdb->domainName($webvar{$input}) : $dnsdb->revName($webvar{$input})); | 
|---|
| [114] | 1196 |  | 
|---|
| [545] | 1197 | # Do the $webvar{bulkaction} | 
|---|
|  | 1198 | my ($code, $msg); | 
|---|
| [649] | 1199 | ($code, $msg) = $dnsdb->changeGroup(($fr eq 'dom' ? 'domain' : 'revzone'), $webvar{$input}, $webvar{destgroup}) | 
|---|
| [545] | 1200 | if $webvar{bulkaction} eq 'move'; | 
|---|
|  | 1201 | if ($webvar{bulkaction} eq 'deactivate' || $webvar{bulkaction} eq 'activate') { | 
|---|
| [649] | 1202 | my $stat = $dnsdb->zoneStatus($webvar{$input}, ($fr eq 'dom' ? 'n' : 'y'), | 
|---|
|  | 1203 | ($webvar{bulkaction} eq 'activate' ? 'domon' : 'domoff')); | 
|---|
| [545] | 1204 | $code = (defined($stat) ? 'OK' : 'FAIL'); | 
|---|
|  | 1205 | $msg = (defined($stat) ? $DNSDB::resultstr : $DNSDB::errstr); | 
|---|
|  | 1206 | } | 
|---|
| [649] | 1207 | ($code, $msg) = $dnsdb->delZone($webvar{$input}, ($fr eq 'dom' ? 'n' : 'y')) | 
|---|
| [545] | 1208 | if $webvar{bulkaction} eq 'delete'; | 
|---|
| [114] | 1209 |  | 
|---|
| [545] | 1210 | # Set the result output from the action | 
|---|
|  | 1211 | if ($code eq 'OK') { | 
|---|
|  | 1212 | $row{domok} = $msg; | 
|---|
|  | 1213 | } elsif ($code eq 'WARN') { | 
|---|
|  | 1214 | $row{domwarn} = $msg; | 
|---|
|  | 1215 | } else { | 
|---|
|  | 1216 | $row{domerr} = $msg; | 
|---|
|  | 1217 | } | 
|---|
|  | 1218 | push @bulkresults, \%row; | 
|---|
| [112] | 1219 |  | 
|---|
| [545] | 1220 | } # foreach (keys %webvar) | 
|---|
|  | 1221 | $page->param(bulkresults => \@bulkresults); | 
|---|
|  | 1222 |  | 
|---|
| [155] | 1223 | # Yes, this is a GOTO target.  PTHBTTT. | 
|---|
|  | 1224 | DONEBULK: ; | 
|---|
|  | 1225 |  | 
|---|
| [24] | 1226 | } elsif ($webvar{page} eq 'useradmin') { | 
|---|
|  | 1227 |  | 
|---|
| [139] | 1228 | if (defined($webvar{userstatus})) { | 
|---|
| [153] | 1229 | # security check - does the user have permission to access this entity? | 
|---|
|  | 1230 | my $flag = 0; | 
|---|
|  | 1231 | foreach (@viewablegroups) { | 
|---|
| [547] | 1232 | $flag = 1 if $dnsdb->isParent($_, 'group', $webvar{id}, 'user'); | 
|---|
| [153] | 1233 | } | 
|---|
| [545] | 1234 | if ($flag && ($permissions{admin} || $permissions{user_edit} || | 
|---|
|  | 1235 | ($permissions{self_edit} && $webvar{id} == $session->param('uid')) )) { | 
|---|
| [547] | 1236 | my $stat = $dnsdb->userStatus($webvar{id}, $webvar{userstatus}); | 
|---|
| [649] | 1237 | # kick user out if user disabled self | 
|---|
|  | 1238 | # arguably there should be a more specific error message for this case | 
|---|
|  | 1239 | changepage(page=> 'login', sessexpired => 1) if $webvar{id} == $session->param('uid'); | 
|---|
| [545] | 1240 | $page->param(resultmsg => $DNSDB::resultstr); | 
|---|
| [153] | 1241 | } else { | 
|---|
|  | 1242 | $page->param(errmsg => "You are not permitted to view or change the requested user"); | 
|---|
|  | 1243 | } | 
|---|
| [188] | 1244 | $uri_self =~ s/\&userstatus=[^&]*//g;   # clean up URL for stuffing into templates | 
|---|
| [51] | 1245 | } | 
|---|
|  | 1246 |  | 
|---|
| [142] | 1247 | list_users(); | 
|---|
|  | 1248 |  | 
|---|
|  | 1249 | # Permissions! | 
|---|
|  | 1250 | $page->param(adduser => $permissions{admin} || $permissions{user_create}); | 
|---|
|  | 1251 | # should we block viewing other users?  Vega blocks "editing"... | 
|---|
|  | 1252 | #  NB:  no "edit self" link as with groups here.  maybe there should be? | 
|---|
|  | 1253 | #  $page->param(eduser => $permissions{admin} || $permissions{user_edit}); | 
|---|
|  | 1254 | $page->param(deluser => $permissions{admin} || $permissions{user_delete}); | 
|---|
|  | 1255 |  | 
|---|
| [545] | 1256 | show_msgs(); | 
|---|
| [24] | 1257 | $page->param(curpage => $webvar{page}); | 
|---|
|  | 1258 |  | 
|---|
| [67] | 1259 | } elsif ($webvar{page} eq 'user') { | 
|---|
|  | 1260 |  | 
|---|
| [111] | 1261 | # All user add/edit actions fall through the same page, since there aren't | 
|---|
|  | 1262 | # really any hard differences between the templates | 
|---|
|  | 1263 |  | 
|---|
| [83] | 1264 | #fill_actypelist($webvar{accttype}); | 
|---|
| [67] | 1265 | fill_clonemelist(); | 
|---|
|  | 1266 | my %grpperms; | 
|---|
| [547] | 1267 | $dnsdb->getPermissions('group', $curgroup, \%grpperms); | 
|---|
| [83] | 1268 |  | 
|---|
| [67] | 1269 | my $grppermlist = new HTML::Template(filename => "$templatedir/permlist.tmpl"); | 
|---|
|  | 1270 | my %noaccess; | 
|---|
|  | 1271 | fill_permissions($grppermlist, \%grpperms, \%noaccess); | 
|---|
|  | 1272 | $grppermlist->param(info => 1); | 
|---|
|  | 1273 | $page->param(grpperms => $grppermlist->output); | 
|---|
| [83] | 1274 |  | 
|---|
| [67] | 1275 | $page->param(is_admin => $permissions{admin}); | 
|---|
|  | 1276 |  | 
|---|
| [207] | 1277 | $webvar{useraction} = '' if !$webvar{useraction}; | 
|---|
| [88] | 1278 |  | 
|---|
| [207] | 1279 | if ($webvar{useraction} eq 'add' or $webvar{useraction} eq 'update') { | 
|---|
| [67] | 1280 |  | 
|---|
| [207] | 1281 | $page->param(add => 1) if $webvar{useraction} eq 'add'; | 
|---|
| [83] | 1282 |  | 
|---|
| [545] | 1283 | # can't re-use $code and $msg for update if we want to be able to identify separate failure states | 
|---|
|  | 1284 | my ($code,$code2,$msg,$msg2) = ('OK','OK','OK','OK'); | 
|---|
| [67] | 1285 |  | 
|---|
|  | 1286 | my $alterperms = 0; # flag iff we need to force custom permissions due to user's current access limits | 
|---|
|  | 1287 |  | 
|---|
| [87] | 1288 | my %newperms;       # we're going to prefill the existing permissions, so we can change them. | 
|---|
| [547] | 1289 | $dnsdb->getPermissions('user', $webvar{uid}, \%newperms); | 
|---|
| [87] | 1290 |  | 
|---|
| [67] | 1291 | if ($webvar{pass1} ne $webvar{pass2}) { | 
|---|
|  | 1292 | $code = 'FAIL'; | 
|---|
|  | 1293 | $msg = "Passwords don't match"; | 
|---|
|  | 1294 | } else { | 
|---|
|  | 1295 |  | 
|---|
| [649] | 1296 | my $permstring = 'i';     # start with "inherit" | 
|---|
| [67] | 1297 |  | 
|---|
| [649] | 1298 | # Remap passed checkbox states from webvar to integer/boolean values in %newperms | 
|---|
|  | 1299 | foreach (@permtypes) { | 
|---|
|  | 1300 | $newperms{$_} = (defined($webvar{$_}) && $webvar{$_} eq 'on' ? 1 : 0); | 
|---|
|  | 1301 | } | 
|---|
| [83] | 1302 |  | 
|---|
| [649] | 1303 | # Check for chained permissions.  Some permissions imply others;  make sure they get set. | 
|---|
|  | 1304 | foreach (keys %permchains) { | 
|---|
|  | 1305 | if ($newperms{$_} && !$newperms{$permchains{$_}}) { | 
|---|
|  | 1306 | $newperms{$permchains{$_}} = 1; | 
|---|
|  | 1307 | } | 
|---|
|  | 1308 | } | 
|---|
|  | 1309 |  | 
|---|
|  | 1310 | # check for possible priviledge escalations | 
|---|
| [83] | 1311 | if (!$permissions{admin}) { | 
|---|
| [649] | 1312 | if ($webvar{perms_type} eq 'inherit') { | 
|---|
|  | 1313 | # Group permissions are only relevant if inheriting | 
|---|
|  | 1314 | my %grpperms; | 
|---|
|  | 1315 | $dnsdb->getPermissions('group', $curgroup, \%grpperms); | 
|---|
|  | 1316 | my $ret = $dnsdb->comparePermissions(\%permissions, \%grpperms); | 
|---|
|  | 1317 | if ($ret eq '<' || $ret eq '!') { | 
|---|
|  | 1318 | # User's permissions are not a superset or equivalent to group.  Can't inherit | 
|---|
|  | 1319 | # (and include access user doesn't currently have), so we force custom. | 
|---|
|  | 1320 | $webvar{perms_type} = 'custom'; | 
|---|
|  | 1321 | $alterperms = 1; | 
|---|
|  | 1322 | } | 
|---|
|  | 1323 | } | 
|---|
|  | 1324 | my $ret = $dnsdb->comparePermissions(\%newperms, \%permissions); | 
|---|
|  | 1325 | if ($ret eq '>' || $ret eq '!') { | 
|---|
|  | 1326 | # User's new permissions are not a subset or equivalent to previous.  Can't add | 
|---|
|  | 1327 | # permissions user doesn't currently have, so we force custom. | 
|---|
| [83] | 1328 | $webvar{perms_type} = 'custom'; | 
|---|
|  | 1329 | $alterperms = 1; | 
|---|
|  | 1330 | } | 
|---|
|  | 1331 | } | 
|---|
|  | 1332 |  | 
|---|
| [649] | 1333 | ##fixme: | 
|---|
|  | 1334 | # could possibly factor building the meat of the permstring out of this if/elsif set, so | 
|---|
|  | 1335 | # as to avoid running around @permtypes quite so many times | 
|---|
| [67] | 1336 | if ($webvar{perms_type} eq 'custom') { | 
|---|
|  | 1337 | $permstring = 'C:'; | 
|---|
|  | 1338 | foreach (@permtypes) { | 
|---|
| [87] | 1339 | if ($permissions{admin} || $permissions{$_}) { | 
|---|
| [67] | 1340 | $permstring .= ",$_" if defined($webvar{$_}) && $webvar{$_} eq 'on'; | 
|---|
| [649] | 1341 | } else { | 
|---|
|  | 1342 | $newperms{$_} = 0;  # remove permissions user doesn't currently have | 
|---|
| [67] | 1343 | } | 
|---|
|  | 1344 | } | 
|---|
|  | 1345 | $page->param(perm_custom => 1); | 
|---|
|  | 1346 | } elsif ($permissions{admin} && $webvar{perms_type} eq 'clone') { | 
|---|
|  | 1347 | $permstring = "c:$webvar{clonesrc}"; | 
|---|
| [547] | 1348 | $dnsdb->getPermissions('user', $webvar{clonesrc}, \%newperms); | 
|---|
| [67] | 1349 | $page->param(perm_clone => 1); | 
|---|
|  | 1350 | } | 
|---|
| [649] | 1351 | # Recheck chained permissions, in the supposedly impossible case that the removals | 
|---|
|  | 1352 | # above mangled one of them.  This *should* be impossible via normal web UI operations. | 
|---|
| [545] | 1353 | foreach (keys %permchains) { | 
|---|
|  | 1354 | if ($newperms{$_} && !$newperms{$permchains{$_}}) { | 
|---|
|  | 1355 | $newperms{$permchains{$_}} = 1; | 
|---|
|  | 1356 | $permstring .= ",$permchains{$_}"; | 
|---|
|  | 1357 | } | 
|---|
|  | 1358 | } | 
|---|
| [207] | 1359 | if ($webvar{useraction} eq 'add') { | 
|---|
| [144] | 1360 | changepage(page => "useradmin", errmsg => "You do not have permission to add new users") | 
|---|
|  | 1361 | unless $permissions{admin} || $permissions{user_create}; | 
|---|
| [181] | 1362 | # no scope check;  user is created in the current group | 
|---|
| [547] | 1363 | ($code,$msg) = $dnsdb->addUser($webvar{uname}, $curgroup, $webvar{pass1}, | 
|---|
| [83] | 1364 | ($webvar{makeactive} eq 'on' ? 1 : 0), $webvar{accttype}, $permstring, | 
|---|
|  | 1365 | $webvar{fname}, $webvar{lname}, $webvar{phone}); | 
|---|
|  | 1366 | } else { | 
|---|
| [144] | 1367 | changepage(page => "useradmin", errmsg => "You do not have permission to edit users") | 
|---|
| [545] | 1368 | unless $permissions{admin} || $permissions{user_edit} || | 
|---|
|  | 1369 | ($permissions{self_edit} && $session->param('uid') == $webvar{uid}); | 
|---|
| [181] | 1370 | # security check - does the user have permission to access this entity? | 
|---|
|  | 1371 | if (!check_scope(id => $webvar{user}, type => 'user')) { | 
|---|
|  | 1372 | changepage(page => "useradmin", errmsg => "You do not have permission to edit the requested user"); | 
|---|
|  | 1373 | } | 
|---|
| [545] | 1374 | # User update is icky.  I'd really like to do this in one atomic operation, | 
|---|
|  | 1375 | # but that gets hairy by either duplicating a **lot** of code in DNSDB.pm | 
|---|
|  | 1376 | # or self-torture trying to not commit the transaction until we're really done. | 
|---|
| [83] | 1377 | # Allowing for changing group, but not coding web support just yet. | 
|---|
| [547] | 1378 | ($code,$msg) = $dnsdb->updateUser($webvar{uid}, $webvar{uname}, $webvar{gid}, $webvar{pass1}, | 
|---|
| [83] | 1379 | ($webvar{makeactive} eq 'on' ? 1 : 0), $webvar{accttype}, | 
|---|
|  | 1380 | $webvar{fname}, $webvar{lname}, $webvar{phone}); | 
|---|
|  | 1381 | if ($code eq 'OK') { | 
|---|
| [649] | 1382 | $newperms{admin} = 1 if $permissions{admin} && $webvar{accttype} eq 'S'; | 
|---|
| [547] | 1383 | ($code2,$msg2) = $dnsdb->changePermissions('user', $webvar{uid}, \%newperms, ($permstring eq 'i')); | 
|---|
| [83] | 1384 | } | 
|---|
|  | 1385 | } | 
|---|
| [67] | 1386 | } | 
|---|
|  | 1387 |  | 
|---|
| [545] | 1388 | if ($code eq 'OK' && $code2 eq 'OK') { | 
|---|
|  | 1389 | my %pageparams = (page => "useradmin"); | 
|---|
| [67] | 1390 | if ($alterperms) { | 
|---|
| [545] | 1391 | $pageparams{warnmsg} = "You can only grant permissions you hold.\nUser ". | 
|---|
|  | 1392 | ($webvar{useraction} eq 'add' ? "$webvar{uname} added" : "info updated for $webvar{uname}"). | 
|---|
|  | 1393 | ".\nPermissions ".($webvar{useraction} eq 'add' ? 'added' : 'updated')." with reduced access."; | 
|---|
| [67] | 1394 | } else { | 
|---|
| [545] | 1395 | $pageparams{resultmsg} = "$msg".($webvar{useraction} eq 'add' ? '' : "\n$msg2"); | 
|---|
| [67] | 1396 | } | 
|---|
| [545] | 1397 | changepage(%pageparams); | 
|---|
| [83] | 1398 |  | 
|---|
|  | 1399 | # add/update failed: | 
|---|
| [67] | 1400 | } else { | 
|---|
|  | 1401 | $page->param(add_failed => 1); | 
|---|
| [207] | 1402 | $page->param(action => $webvar{useraction}); | 
|---|
| [83] | 1403 | $page->param(set_permgroup => 1); | 
|---|
| [87] | 1404 | if ($webvar{perms_type} eq 'inherit') {   # set permission class radio | 
|---|
|  | 1405 | $page->param(perm_inherit => 1); | 
|---|
|  | 1406 | } elsif ($webvar{perms_type} eq 'clone') { | 
|---|
|  | 1407 | $page->param(perm_clone => 1); | 
|---|
|  | 1408 | } else { | 
|---|
|  | 1409 | $page->param(perm_custom => 1); | 
|---|
|  | 1410 | } | 
|---|
| [67] | 1411 | $page->param(uname => $webvar{uname}); | 
|---|
|  | 1412 | $page->param(fname => $webvar{fname}); | 
|---|
|  | 1413 | $page->param(lname => $webvar{lname}); | 
|---|
|  | 1414 | $page->param(pass1 => $webvar{pass1}); | 
|---|
|  | 1415 | $page->param(pass2 => $webvar{pass2}); | 
|---|
| [545] | 1416 | $page->param(errmsg => "User info updated but permissions update failed: $msg2") if $code eq 'OK'; | 
|---|
|  | 1417 | $page->param(errmsg => $msg) if $code ne 'OK'; | 
|---|
| [83] | 1418 | fill_permissions($page, \%newperms); | 
|---|
|  | 1419 | fill_actypelist($webvar{accttype}); | 
|---|
| [67] | 1420 | fill_clonemelist(); | 
|---|
|  | 1421 | } | 
|---|
|  | 1422 |  | 
|---|
| [207] | 1423 | } elsif ($webvar{useraction} eq 'edit') { | 
|---|
| [83] | 1424 |  | 
|---|
| [144] | 1425 | changepage(page => "useradmin", errmsg => "You do not have permission to edit users") | 
|---|
| [545] | 1426 | unless $permissions{admin} || $permissions{user_edit} || | 
|---|
|  | 1427 | ($permissions{self_edit} && $session->param('uid') == $webvar{user}); | 
|---|
| [144] | 1428 |  | 
|---|
| [181] | 1429 | # security check - does the user have permission to access this entity? | 
|---|
|  | 1430 | if (!check_scope(id => $webvar{user}, type => 'user')) { | 
|---|
|  | 1431 | changepage(page => "useradmin", errmsg => "You do not have permission to edit the requested user"); | 
|---|
|  | 1432 | } | 
|---|
|  | 1433 |  | 
|---|
| [83] | 1434 | $page->param(set_permgroup => 1); | 
|---|
|  | 1435 | $page->param(action => 'update'); | 
|---|
|  | 1436 | $page->param(uid => $webvar{user}); | 
|---|
|  | 1437 | fill_clonemelist(); | 
|---|
|  | 1438 |  | 
|---|
| [547] | 1439 | my $userinfo = $dnsdb->getUserData($webvar{user}); | 
|---|
| [83] | 1440 | fill_actypelist($userinfo->{type}); | 
|---|
|  | 1441 | # not using this yet, but adding it now means we can *much* more easily do so later. | 
|---|
| [545] | 1442 | $page->param(gid => $userinfo->{group_id}); | 
|---|
| [83] | 1443 |  | 
|---|
|  | 1444 | my %curperms; | 
|---|
| [547] | 1445 | $dnsdb->getPermissions('user', $webvar{user}, \%curperms); | 
|---|
| [83] | 1446 | fill_permissions($page, \%curperms); | 
|---|
|  | 1447 |  | 
|---|
|  | 1448 | $page->param(uname => $userinfo->{username}); | 
|---|
|  | 1449 | $page->param(fname => $userinfo->{firstname}); | 
|---|
|  | 1450 | $page->param(lname => $userinfo->{lastname}); | 
|---|
| [87] | 1451 | $page->param(set_permgroup => 1); | 
|---|
| [83] | 1452 | if ($userinfo->{inherit_perm}) { | 
|---|
|  | 1453 | $page->param(perm_inherit => 1); | 
|---|
|  | 1454 | } else { | 
|---|
|  | 1455 | $page->param(perm_custom => 1); | 
|---|
|  | 1456 | } | 
|---|
| [67] | 1457 | } else { | 
|---|
| [144] | 1458 | changepage(page => "useradmin", errmsg => "You are not allowed to add new users") | 
|---|
|  | 1459 | unless $permissions{admin} || $permissions{user_create}; | 
|---|
| [67] | 1460 | # default is "new" | 
|---|
| [83] | 1461 | $page->param(add => 1); | 
|---|
|  | 1462 | $page->param(action => 'add'); | 
|---|
|  | 1463 | fill_permissions($page, \%grpperms); | 
|---|
|  | 1464 | fill_actypelist(); | 
|---|
| [67] | 1465 | } | 
|---|
|  | 1466 |  | 
|---|
| [90] | 1467 | } elsif ($webvar{page} eq 'deluser') { | 
|---|
|  | 1468 |  | 
|---|
| [145] | 1469 | changepage(page=> "useradmin", errmsg => "You are not allowed to delete users") | 
|---|
|  | 1470 | unless $permissions{admin} || $permissions{user_delete}; | 
|---|
|  | 1471 |  | 
|---|
| [181] | 1472 | # security check - does the user have permission to access this entity? | 
|---|
|  | 1473 | if (!check_scope(id => $webvar{id}, type => 'user')) { | 
|---|
|  | 1474 | changepage(page => "useradmin", errmsg => "You are not permitted to delete the requested user"); | 
|---|
|  | 1475 | } | 
|---|
|  | 1476 |  | 
|---|
| [90] | 1477 | $page->param(id => $webvar{id}); | 
|---|
|  | 1478 | # first pass = confirm y/n (sorta) | 
|---|
|  | 1479 | if (!defined($webvar{del})) { | 
|---|
|  | 1480 | $page->param(del_getconf => 1); | 
|---|
| [547] | 1481 | $page->param(user => $dnsdb->userFullName($webvar{id})); | 
|---|
| [90] | 1482 | } elsif ($webvar{del} eq 'ok') { | 
|---|
| [547] | 1483 | my ($code,$msg) = $dnsdb->delUser($webvar{id}); | 
|---|
| [187] | 1484 | if ($code eq 'OK') { | 
|---|
| [90] | 1485 | # success.  go back to the user list, do not pass "GO" | 
|---|
| [545] | 1486 | changepage(page => "useradmin", resultmsg => $msg); | 
|---|
| [187] | 1487 | } else { | 
|---|
| [545] | 1488 | changepage(page => "useradmin", errmsg => $msg); | 
|---|
| [90] | 1489 | } | 
|---|
|  | 1490 | } else { | 
|---|
|  | 1491 | # cancelled.  whee! | 
|---|
|  | 1492 | changepage(page => "useradmin"); | 
|---|
|  | 1493 | } | 
|---|
|  | 1494 |  | 
|---|
| [545] | 1495 | } elsif ($webvar{page} eq 'loclist') { | 
|---|
|  | 1496 |  | 
|---|
|  | 1497 | changepage(page => "domlist", errmsg => "You are not allowed access to this function") | 
|---|
|  | 1498 | unless $permissions{admin} || $permissions{location_view}; | 
|---|
|  | 1499 |  | 
|---|
|  | 1500 | # security check - does the user have permission to access this entity? | 
|---|
|  | 1501 | #  if (!check_scope(id => $webvar{id}, type => 'loc')) { | 
|---|
|  | 1502 | #    changepage(page => "loclist", errmsg => "You are not permitted to <foo> the requested location/view"); | 
|---|
|  | 1503 | #  } | 
|---|
|  | 1504 | list_locations(); | 
|---|
|  | 1505 | show_msgs(); | 
|---|
|  | 1506 |  | 
|---|
|  | 1507 | # Permissions! | 
|---|
|  | 1508 | $page->param(addloc => $permissions{admin} || $permissions{location_create}); | 
|---|
|  | 1509 | $page->param(delloc => $permissions{admin} || $permissions{location_delete}); | 
|---|
|  | 1510 |  | 
|---|
|  | 1511 | } elsif ($webvar{page} eq 'location') { | 
|---|
|  | 1512 |  | 
|---|
|  | 1513 | changepage(page => "domlist", errmsg => "You are not allowed access to this function") | 
|---|
|  | 1514 | unless $permissions{admin} || $permissions{location_view}; | 
|---|
|  | 1515 |  | 
|---|
|  | 1516 | # security check - does the user have permission to access this entity? | 
|---|
|  | 1517 | #  if (!check_scope(id => $webvar{id}, type => 'loc')) { | 
|---|
|  | 1518 | #    changepage(page => "loclist", errmsg => "You are not permitted to <foo> the requested location/view"); | 
|---|
|  | 1519 | #  } | 
|---|
|  | 1520 |  | 
|---|
| [546] | 1521 | $webvar{locact} = '' if !$webvar{locact}; | 
|---|
|  | 1522 |  | 
|---|
|  | 1523 | if ($webvar{locact} eq 'add') { | 
|---|
| [545] | 1524 | changepage(page => "loclist", errmsg => "You are not permitted to add locations/views", id => $webvar{parentid}) | 
|---|
|  | 1525 | unless ($permissions{admin} || $permissions{location_create}); | 
|---|
|  | 1526 |  | 
|---|
| [725] | 1527 | my ($code,$msg) = $dnsdb->addLoc(group => $curgroup, desc => $webvar{locname}, | 
|---|
|  | 1528 | comments => $webvar{comments}, iplist => $webvar{iplist}); | 
|---|
| [545] | 1529 |  | 
|---|
|  | 1530 | if ($code eq 'OK' || $code eq 'WARN') { | 
|---|
|  | 1531 | my %pageparams = (page => "loclist", id => $webvar{parentid}, | 
|---|
|  | 1532 | defrec => $webvar{defrec}, revrec => $webvar{revrec}); | 
|---|
| [649] | 1533 | $pageparams{warnmsg} = $msg."<br />\n".$DNSDB::resultstr if $code eq 'WARN'; | 
|---|
| [545] | 1534 | $pageparams{resultmsg} = $DNSDB::resultstr if $code eq 'OK'; | 
|---|
|  | 1535 | changepage(%pageparams); | 
|---|
|  | 1536 | } else { | 
|---|
|  | 1537 | $page->param(failed       => 1); | 
|---|
|  | 1538 | $page->param(errmsg       => $msg); | 
|---|
|  | 1539 | $page->param(wastrying    => "adding"); | 
|---|
|  | 1540 | $page->param(todo         => "Add location/view"); | 
|---|
|  | 1541 | $page->param(locact       => "add"); | 
|---|
|  | 1542 | $page->param(id           => $webvar{id}); | 
|---|
|  | 1543 | $page->param(locname      => $webvar{locname}); | 
|---|
|  | 1544 | $page->param(comments     => $webvar{comments}); | 
|---|
|  | 1545 | $page->param(iplist       => $webvar{iplist}); | 
|---|
|  | 1546 | } | 
|---|
|  | 1547 |  | 
|---|
|  | 1548 | } elsif ($webvar{locact} eq 'edit') { | 
|---|
|  | 1549 | changepage(page => "loclist", errmsg => "You are not permitted to edit locations/views", id => $webvar{parentid}) | 
|---|
|  | 1550 | unless ($permissions{admin} || $permissions{location_edit}); | 
|---|
|  | 1551 |  | 
|---|
| [547] | 1552 | my $loc = $dnsdb->getLoc($webvar{loc}); | 
|---|
| [545] | 1553 | $page->param(wastrying      => "editing"); | 
|---|
|  | 1554 | $page->param(todo           => "Edit location/view"); | 
|---|
|  | 1555 | $page->param(locact         => "update"); | 
|---|
|  | 1556 | $page->param(id             => $webvar{loc}); | 
|---|
|  | 1557 | $page->param(locname        => $loc->{description}); | 
|---|
|  | 1558 | $page->param(comments       => $loc->{comments}); | 
|---|
|  | 1559 | $page->param(iplist         => $loc->{iplist}); | 
|---|
|  | 1560 |  | 
|---|
|  | 1561 | } elsif ($webvar{locact} eq 'update') { | 
|---|
|  | 1562 | changepage(page => "loclist", errmsg => "You are not permitted to edit locations/views", id => $webvar{parentid}) | 
|---|
|  | 1563 | unless ($permissions{admin} || $permissions{location_edit}); | 
|---|
|  | 1564 |  | 
|---|
| [547] | 1565 | my ($code,$msg) = $dnsdb->updateLoc($webvar{id}, $curgroup, $webvar{locname}, $webvar{comments}, $webvar{iplist}); | 
|---|
| [545] | 1566 |  | 
|---|
|  | 1567 | if ($code eq 'OK') { | 
|---|
|  | 1568 | changepage(page => "loclist", resultmsg => $msg); | 
|---|
|  | 1569 | } else { | 
|---|
|  | 1570 | $page->param(failed       => 1); | 
|---|
|  | 1571 | $page->param(errmsg       => $msg); | 
|---|
|  | 1572 | $page->param(wastrying    => "editing"); | 
|---|
|  | 1573 | $page->param(todo         => "Edit location/view"); | 
|---|
|  | 1574 | $page->param(locact       => "update"); | 
|---|
|  | 1575 | $page->param(id           => $webvar{loc}); | 
|---|
|  | 1576 | $page->param(locname      => $webvar{locname}); | 
|---|
|  | 1577 | $page->param(comments     => $webvar{comments}); | 
|---|
|  | 1578 | $page->param(iplist       => $webvar{iplist}); | 
|---|
|  | 1579 | } | 
|---|
|  | 1580 | } else { | 
|---|
|  | 1581 | changepage(page => "loclist", errmsg => "You are not permitted to add locations/views", id => $webvar{parentid}) | 
|---|
|  | 1582 | unless ($permissions{admin} || $permissions{location_create}); | 
|---|
|  | 1583 |  | 
|---|
|  | 1584 | $page->param(todo => "Add location/view"); | 
|---|
|  | 1585 | $page->param(locact => "add"); | 
|---|
|  | 1586 | $page->param(locname => ($webvar{locname} ? $webvar{locname} : '')); | 
|---|
|  | 1587 | $page->param(iplist => ($webvar{iplist} ? $webvar{iplist} : '')); | 
|---|
|  | 1588 |  | 
|---|
|  | 1589 | show_msgs(); | 
|---|
|  | 1590 | } | 
|---|
|  | 1591 |  | 
|---|
| [546] | 1592 | } elsif ($webvar{page} eq 'delloc') { | 
|---|
|  | 1593 |  | 
|---|
|  | 1594 | changepage(page=> "loclist", errmsg => "You are not allowed to delete locations") | 
|---|
|  | 1595 | unless $permissions{admin} || $permissions{location_delete}; | 
|---|
|  | 1596 |  | 
|---|
|  | 1597 | # security check - does the user have permission to access this entity? | 
|---|
|  | 1598 | #  if (!check_scope(id => $webvar{id}, type => 'loc')) { | 
|---|
|  | 1599 | #    changepage(page => "loclist", errmsg => "You are not permitted to <foo> the requested location/view"); | 
|---|
|  | 1600 | #  } | 
|---|
|  | 1601 |  | 
|---|
|  | 1602 | $page->param(locid => $webvar{locid}); | 
|---|
| [547] | 1603 | my $locdata = $dnsdb->getLoc($webvar{locid}); | 
|---|
| [546] | 1604 | $locdata->{description} = $webvar{locid} if !$locdata->{description}; | 
|---|
|  | 1605 | # first pass = confirm y/n (sorta) | 
|---|
|  | 1606 | if (!defined($webvar{del})) { | 
|---|
|  | 1607 | $page->param(del_getconf => 1); | 
|---|
|  | 1608 | $page->param(location => $locdata->{description}); | 
|---|
|  | 1609 | } elsif ($webvar{del} eq 'ok') { | 
|---|
| [547] | 1610 | my ($code,$msg) = $dnsdb->delLoc($webvar{locid}); | 
|---|
| [546] | 1611 | if ($code eq 'OK') { | 
|---|
|  | 1612 | # success.  go back to the user list, do not pass "GO" | 
|---|
|  | 1613 | changepage(page => "loclist", resultmsg => $msg); | 
|---|
|  | 1614 | } else { | 
|---|
|  | 1615 | changepage(page => "loclist", errmsg => $msg); | 
|---|
|  | 1616 | } | 
|---|
|  | 1617 | } else { | 
|---|
|  | 1618 | # cancelled.  whee! | 
|---|
|  | 1619 | changepage(page => "loclist"); | 
|---|
|  | 1620 | } | 
|---|
|  | 1621 |  | 
|---|
| [30] | 1622 | } elsif ($webvar{page} eq 'dnsq') { | 
|---|
|  | 1623 |  | 
|---|
| [725] | 1624 | if ($webvar{qfor}) { | 
|---|
|  | 1625 | $webvar{qfor} =~ s/^\s*//; | 
|---|
|  | 1626 | $webvar{qfor} =~ s/\s*$//; | 
|---|
|  | 1627 | $page->param(qfor => $webvar{qfor}); | 
|---|
|  | 1628 | } | 
|---|
|  | 1629 | if ($webvar{resolver}) { | 
|---|
|  | 1630 | $webvar{resolver} =~ s/^\s*//; | 
|---|
|  | 1631 | $webvar{resolver} =~ s/\s*$//; | 
|---|
|  | 1632 | $page->param(resolver => $webvar{resolver}); | 
|---|
|  | 1633 | } | 
|---|
| [547] | 1634 | $page->param(typelist => $dnsdb->getTypelist('l', ($webvar{type} ? $webvar{type} : undef))); | 
|---|
| [31] | 1635 | $page->param(nrecurse => $webvar{nrecurse}) if $webvar{nrecurse}; | 
|---|
| [30] | 1636 |  | 
|---|
|  | 1637 | if ($webvar{qfor}) { | 
|---|
|  | 1638 | my $resolv = Net::DNS::Resolver->new; | 
|---|
| [31] | 1639 | $resolv->tcp_timeout(5);    # make me adjustable! | 
|---|
|  | 1640 | $resolv->udp_timeout(5);    # make me adjustable! | 
|---|
|  | 1641 | $resolv->recurse(0) if $webvar{nrecurse}; | 
|---|
|  | 1642 | $resolv->nameservers($webvar{resolver}) if $webvar{resolver}; | 
|---|
| [30] | 1643 | my $query = $resolv->query($webvar{qfor}, $typemap{$webvar{type}}); | 
|---|
|  | 1644 | if ($query) { | 
|---|
|  | 1645 |  | 
|---|
|  | 1646 | $page->param(showresults => 1); | 
|---|
|  | 1647 |  | 
|---|
|  | 1648 | my @answer; | 
|---|
|  | 1649 | foreach my $rr ($query->answer) { | 
|---|
|  | 1650 | #       next unless $rr->type eq "A" or $rr->type eq 'NS'; | 
|---|
|  | 1651 | my %row; | 
|---|
|  | 1652 | my ($host,$ttl,$class,$type,$data) = | 
|---|
| [31] | 1653 | ($rr->string =~ /^([0-9a-zA-Z_.-]+)\s+(\d+)\s+([A-Za-z]+)\s+([A-Za-z]+)\s+(.+)$/s); | 
|---|
| [30] | 1654 | $row{host} = $host; | 
|---|
|  | 1655 | $row{ftype} = $type; | 
|---|
| [31] | 1656 | $row{rdata} = ($type eq 'SOA' ? "<pre>$data</pre>" : $data); | 
|---|
| [30] | 1657 | push @answer, \%row; | 
|---|
|  | 1658 | } | 
|---|
|  | 1659 | $page->param(answer => \@answer); | 
|---|
|  | 1660 |  | 
|---|
|  | 1661 | my @additional; | 
|---|
|  | 1662 | foreach my $rr ($query->additional) { | 
|---|
|  | 1663 | #       next unless $rr->type eq "A" or $rr->type eq 'NS'; | 
|---|
|  | 1664 | my %row; | 
|---|
|  | 1665 | my ($host,$ttl,$class,$type,$data) = | 
|---|
|  | 1666 | ($rr->string =~ /^([0-9a-zA-Z_.-]+)\s+(\d+)\s+([A-Za-z]+)\s+([A-Za-z]+)\s+(.+)$/); | 
|---|
|  | 1667 | $row{host} = $host; | 
|---|
|  | 1668 | $row{ftype} = $type; | 
|---|
|  | 1669 | $row{rdata} = $data; | 
|---|
|  | 1670 | push @additional, \%row; | 
|---|
|  | 1671 | } | 
|---|
|  | 1672 | $page->param(additional => \@additional); | 
|---|
|  | 1673 |  | 
|---|
|  | 1674 | my @authority; | 
|---|
|  | 1675 | foreach my $rr ($query->authority) { | 
|---|
|  | 1676 | #       next unless $rr->type eq "A" or $rr->type eq 'NS'; | 
|---|
|  | 1677 | my %row; | 
|---|
|  | 1678 | my ($host,$ttl,$class,$type,$data) = | 
|---|
|  | 1679 | ($rr->string =~ /^([0-9a-zA-Z_.-]+)\s+(\d+)\s+([A-Za-z]+)\s+([A-Za-z]+)\s+(.+)$/); | 
|---|
|  | 1680 | $row{host} = $host; | 
|---|
|  | 1681 | $row{ftype} = $type; | 
|---|
|  | 1682 | $row{rdata} = $data; | 
|---|
|  | 1683 | push @authority, \%row; | 
|---|
|  | 1684 | } | 
|---|
|  | 1685 | $page->param(authority => \@authority); | 
|---|
|  | 1686 |  | 
|---|
|  | 1687 | $page->param(usedresolver => $resolv->answerfrom); | 
|---|
|  | 1688 | $page->param(frtype => $typemap{$webvar{type}}); | 
|---|
|  | 1689 |  | 
|---|
|  | 1690 | } else { | 
|---|
|  | 1691 | $page->param(errmsg => $resolv->errorstring); | 
|---|
|  | 1692 | } | 
|---|
|  | 1693 | } | 
|---|
|  | 1694 | ## done DNS query | 
|---|
|  | 1695 |  | 
|---|
| [31] | 1696 | } elsif ($webvar{page} eq 'axfr') { | 
|---|
|  | 1697 |  | 
|---|
| [111] | 1698 | changepage(page => "domlist", errmsg => "You are not permitted to import domains") | 
|---|
|  | 1699 | unless ($permissions{admin} || $permissions{domain_create}); | 
|---|
|  | 1700 |  | 
|---|
| [31] | 1701 | # don't need this while we've got the dropdown in the menu.  hmm. | 
|---|
| [126] | 1702 | fill_grouplist("grouplist"); | 
|---|
| [31] | 1703 |  | 
|---|
|  | 1704 | $page->param(ifrom => $webvar{ifrom}) if $webvar{ifrom}; | 
|---|
|  | 1705 | $page->param(rwsoa => $webvar{rwsoa}) if $webvar{rwsoa}; | 
|---|
|  | 1706 | $page->param(rwns => $webvar{rwns}) if $webvar{rwns}; | 
|---|
| [437] | 1707 | $page->param(forcettl => $webvar{forcettl}) if $webvar{forcettl}; | 
|---|
|  | 1708 | $page->param(newttl => $webvar{newttl}) if $webvar{newttl}; | 
|---|
| [545] | 1709 | # This next one is arguably better on by default, but Breaking Things Is Bad, Mmmkay? | 
|---|
|  | 1710 | $page->param(mergematching => $webvar{mergematching}) if $webvar{mergematching}; | 
|---|
| [37] | 1711 | $page->param(dominactive => 1) if (!$webvar{domactive} && $webvar{doit});     # eww. | 
|---|
| [31] | 1712 | $page->param(importdoms => $webvar{importdoms}) if $webvar{importdoms}; | 
|---|
| [33] | 1713 |  | 
|---|
| [91] | 1714 | # shut up warning about uninitialized variable | 
|---|
|  | 1715 | $webvar{doit} = '' if !defined($webvar{doit}); | 
|---|
|  | 1716 |  | 
|---|
| [33] | 1717 | if ($webvar{doit} eq 'y' && !$webvar{ifrom}) { | 
|---|
|  | 1718 | $page->param(errmsg => "Need to set host to import from"); | 
|---|
|  | 1719 | } elsif ($webvar{doit} eq 'y' && !$webvar{importdoms}) { | 
|---|
|  | 1720 | $page->param(errmsg => "Need domains to import"); | 
|---|
| [91] | 1721 | } elsif ($webvar{doit} eq 'y') { | 
|---|
| [162] | 1722 |  | 
|---|
|  | 1723 | # security check - does the user have permission to access this entity? | 
|---|
| [169] | 1724 | if (!check_scope(id => $webvar{group}, type => 'group')) { | 
|---|
| [162] | 1725 | $page->param(errmsg => "You are not permitted to import domains into the requested group"); | 
|---|
|  | 1726 | goto DONEAXFR; | 
|---|
|  | 1727 | } | 
|---|
|  | 1728 |  | 
|---|
| [545] | 1729 | # Bizarre Things Happen when you AXFR a null-named zone. | 
|---|
|  | 1730 | $webvar{importdoms} =~ s/^\s+//; | 
|---|
| [33] | 1731 | my @domlist = split /\s+/, $webvar{importdoms}; | 
|---|
|  | 1732 | my @results; | 
|---|
|  | 1733 | foreach my $domain (@domlist) { | 
|---|
| [34] | 1734 | my %row; | 
|---|
| [547] | 1735 | my ($code,$msg) = $dnsdb->importAXFR($webvar{ifrom}, $domain, $webvar{group}, | 
|---|
|  | 1736 | status => $webvar{domactive}, rwsoa => $webvar{rwsoa}, rwns => $webvar{rwns}, | 
|---|
|  | 1737 | newttl => ($webvar{forcettl} ? $webvar{newttl} : 0), | 
|---|
|  | 1738 | merge => $webvar{mergematching}); | 
|---|
| [35] | 1739 | $row{domok} = $msg if $code eq 'OK'; | 
|---|
|  | 1740 | if ($code eq 'WARN') { | 
|---|
|  | 1741 | $msg =~ s|\n|<br />|g; | 
|---|
|  | 1742 | $row{domwarn} = $msg; | 
|---|
|  | 1743 | } | 
|---|
| [37] | 1744 | if ($code eq 'FAIL') { | 
|---|
| [91] | 1745 | $msg =~ s|\n|<br />\n|g; | 
|---|
| [37] | 1746 | $row{domerr} = $msg; | 
|---|
|  | 1747 | } | 
|---|
| [91] | 1748 | $msg = "<br />\n".$msg if $msg =~ m|<br />|; | 
|---|
| [33] | 1749 | $row{domain} = $domain; | 
|---|
|  | 1750 | push @results, \%row; | 
|---|
|  | 1751 | } | 
|---|
|  | 1752 | $page->param(axfrresults => \@results); | 
|---|
|  | 1753 | } | 
|---|
|  | 1754 |  | 
|---|
| [155] | 1755 | # Yes, this is a GOTO target.  PTBHTTT. | 
|---|
|  | 1756 | DONEAXFR: ; | 
|---|
|  | 1757 |  | 
|---|
| [48] | 1758 | } elsif ($webvar{page} eq 'whoisq') { | 
|---|
| [47] | 1759 |  | 
|---|
| [48] | 1760 | if ($webvar{qfor}) { | 
|---|
|  | 1761 | use Net::Whois::Raw; | 
|---|
|  | 1762 | use Text::Wrap; | 
|---|
|  | 1763 |  | 
|---|
|  | 1764 | # caching useful? | 
|---|
|  | 1765 | #$Net::Whois::Raw::CACHE_DIR = "/var/spool/pwhois/"; | 
|---|
|  | 1766 | #$Net::Whois::Raw::CACHE_TIME = 60; | 
|---|
|  | 1767 |  | 
|---|
|  | 1768 | my ($dominfo, $whois_server) = whois($webvar{qfor}); | 
|---|
|  | 1769 | ##fixme:  if we're given an IP, try rwhois as well as whois so we get the real final data | 
|---|
|  | 1770 |  | 
|---|
|  | 1771 | # le sigh.  idjits spit out data without linefeeds... | 
|---|
|  | 1772 | $Text::Wrap::columns = 88; | 
|---|
|  | 1773 |  | 
|---|
| [93] | 1774 | # &%$@%@# high-bit crap.  We should probably find a way to properly recode these | 
|---|
|  | 1775 | # instead of one-by-one.  Note CGI::Simple's escapeHTML() doesn't do more than | 
|---|
|  | 1776 | # the bare minimum.  :/ | 
|---|
| [48] | 1777 | # Mainly an XHTML validation thing. | 
|---|
| [93] | 1778 | $dominfo = $q->escapeHTML($dominfo); | 
|---|
| [48] | 1779 | $dominfo =~ s/\xa9/\©/g; | 
|---|
|  | 1780 | $dominfo =~ s/\xae/\®/g; | 
|---|
|  | 1781 |  | 
|---|
|  | 1782 | $page->param(qfor => $webvar{qfor}); | 
|---|
|  | 1783 | $page->param(dominfo => wrap('','',$dominfo)); | 
|---|
|  | 1784 | $page->param(whois_server => $whois_server); | 
|---|
|  | 1785 | } else { | 
|---|
|  | 1786 | $page->param(errmsg => "Missing host or domain to query in WHOIS") if $webvar{askaway}; | 
|---|
|  | 1787 | } | 
|---|
|  | 1788 |  | 
|---|
| [47] | 1789 | } elsif ($webvar{page} eq 'log') { | 
|---|
|  | 1790 |  | 
|---|
| [60] | 1791 | my $id = $curgroup;  # we do this because the group log may be called from (almost) any page, | 
|---|
|  | 1792 | # but the others are much more limited.  this is probably non-optimal. | 
|---|
| [180] | 1793 |  | 
|---|
| [61] | 1794 | if ($webvar{ltype} && $webvar{ltype} eq 'user') { | 
|---|
| [545] | 1795 | ##fixme:  where should we call this from? | 
|---|
| [60] | 1796 | $id = $webvar{id}; | 
|---|
| [180] | 1797 | if (!check_scope(id => $id, type => 'user')) { | 
|---|
|  | 1798 | $page->param(errmsg => "You are not permitted to view log entries for the requested user"); | 
|---|
|  | 1799 | goto DONELOG; | 
|---|
|  | 1800 | } | 
|---|
| [547] | 1801 | $page->param(logfor => 'user '.$dnsdb->userFullName($id)); | 
|---|
| [60] | 1802 | } elsif ($webvar{ltype} && $webvar{ltype} eq 'dom') { | 
|---|
| [59] | 1803 | $id = $webvar{id}; | 
|---|
| [180] | 1804 | if (!check_scope(id => $id, type => 'domain')) { | 
|---|
|  | 1805 | $page->param(errmsg => "You are not permitted to view log entries for the requested domain"); | 
|---|
|  | 1806 | goto DONELOG; | 
|---|
|  | 1807 | } | 
|---|
| [547] | 1808 | $page->param(logfor => 'domain '.$dnsdb->domainName($id)); | 
|---|
| [544] | 1809 | } elsif ($webvar{ltype} && $webvar{ltype} eq 'rdns') { | 
|---|
|  | 1810 | $id = $webvar{id}; | 
|---|
|  | 1811 | if (!check_scope(id => $id, type => 'revzone')) { | 
|---|
|  | 1812 | $page->param(errmsg => "You are not permitted to view log entries for the requested reverse zone"); | 
|---|
|  | 1813 | goto DONELOG; | 
|---|
|  | 1814 | } | 
|---|
| [547] | 1815 | $page->param(logfor => 'reverse zone '.$dnsdb->revName($id)); | 
|---|
| [59] | 1816 | } else { | 
|---|
|  | 1817 | # Default to listing curgroup log | 
|---|
| [547] | 1818 | $page->param(logfor => 'group '.$dnsdb->groupName($id)); | 
|---|
| [180] | 1819 | # note that scope limitations are applied via the change-group check; | 
|---|
|  | 1820 | # group log is always for the "current" group | 
|---|
| [59] | 1821 | } | 
|---|
| [545] | 1822 | $webvar{ltype} = 'group' if !$webvar{ltype}; | 
|---|
| [547] | 1823 | my $lcount = $dnsdb->getLogCount(id => $id, logtype => $webvar{ltype}) or push @debugbits, $dnsdb->errstr; | 
|---|
| [545] | 1824 |  | 
|---|
|  | 1825 | $page->param(id => $id); | 
|---|
|  | 1826 | $page->param(ltype => $webvar{ltype}); | 
|---|
|  | 1827 |  | 
|---|
|  | 1828 | fill_fpnla($lcount); | 
|---|
|  | 1829 | fill_pgcount($lcount, "log entries", ''); | 
|---|
|  | 1830 | $page->param(curpage => $webvar{page}.($webvar{ltype} ? "&ltype=$webvar{ltype}" : '')); | 
|---|
|  | 1831 |  | 
|---|
|  | 1832 | $sortby = 'stamp'; | 
|---|
|  | 1833 | $sortorder = 'DESC';  # newest-first;  although filtering is probably going to be more useful than sorting | 
|---|
|  | 1834 | # sort/order | 
|---|
|  | 1835 | $session->param($webvar{page}.'sortby', $webvar{sortby}) if $webvar{sortby}; | 
|---|
|  | 1836 | $session->param($webvar{page}.'order', $webvar{order}) if $webvar{order}; | 
|---|
|  | 1837 |  | 
|---|
|  | 1838 | $sortby = $session->param($webvar{page}.'sortby') if $session->param($webvar{page}.'sortby'); | 
|---|
|  | 1839 | $sortorder = $session->param($webvar{page}.'order') if $session->param($webvar{page}.'order'); | 
|---|
|  | 1840 |  | 
|---|
|  | 1841 | # Set up the column headings with the sort info | 
|---|
|  | 1842 | my @cols = ('fname','username','entry','stamp'); | 
|---|
| [547] | 1843 | my %colnames = (fname => 'Name', username => 'Username', entry => 'Log Entry', stamp => 'Date/Time'); | 
|---|
| [545] | 1844 | fill_colheads($sortby, $sortorder, \@cols, \%colnames); | 
|---|
|  | 1845 |  | 
|---|
|  | 1846 | ##fixme:  increase per-page limit or use separate limit for log?  some ops give *lots* of entries... | 
|---|
| [547] | 1847 | my $logentries = $dnsdb->getLogEntries(id => $id, logtype => $webvar{ltype}, | 
|---|
|  | 1848 | offset => $webvar{offset}, sortby => $sortby, sortorder => $sortorder); | 
|---|
| [545] | 1849 | $page->param(logentries => $logentries); | 
|---|
|  | 1850 |  | 
|---|
| [544] | 1851 | ##fixme: | 
|---|
|  | 1852 | # - filtering | 
|---|
|  | 1853 | # - show reverse zone column? | 
|---|
| [545] | 1854 | # - on log record creation, bundle "parented" log actions (eg, "AXFR record blah for domain foo", | 
|---|
|  | 1855 | #   or "Add record bar for new domain baz") into one entry (eg, "AXFR domain foo", "Add domain baz")? | 
|---|
|  | 1856 | #   need a way to expand this into the complete list, and to exclude "child" entries | 
|---|
| [47] | 1857 |  | 
|---|
| [180] | 1858 | # scope check fail target | 
|---|
|  | 1859 | DONELOG: ; | 
|---|
|  | 1860 |  | 
|---|
| [60] | 1861 | } # end $webvar{page} dance | 
|---|
| [2] | 1862 |  | 
|---|
|  | 1863 |  | 
|---|
| [17] | 1864 | # start output here so we can redirect pages. | 
|---|
| [548] | 1865 | print $q->header( -cookie => $sesscookie); | 
|---|
|  | 1866 | print $header->output; | 
|---|
| [7] | 1867 |  | 
|---|
| [20] | 1868 | ##common bits | 
|---|
| [545] | 1869 | # mostly things in the menu | 
|---|
| [173] | 1870 | if ($webvar{page} ne 'login' && $webvar{page} ne 'badpage') { | 
|---|
| [30] | 1871 | $page->param(username => $session->param("username")); | 
|---|
|  | 1872 |  | 
|---|
| [20] | 1873 | $page->param(group => $curgroup); | 
|---|
| [547] | 1874 | $page->param(groupname => $dnsdb->groupName($curgroup)); | 
|---|
|  | 1875 | $page->param(logingrp => $dnsdb->groupName($logingroup)); | 
|---|
| [117] | 1876 | $page->param(logingrp_num => $logingroup); | 
|---|
| [20] | 1877 |  | 
|---|
| [544] | 1878 | ##fixme | 
|---|
|  | 1879 | $page->param(mayrdns => 1); | 
|---|
|  | 1880 |  | 
|---|
| [545] | 1881 | $page->param(mayloc => ($permissions{admin} || $permissions{location_view})); | 
|---|
|  | 1882 |  | 
|---|
| [140] | 1883 | $page->param(maydefrec => $permissions{admin}); | 
|---|
| [111] | 1884 | $page->param(mayimport => $permissions{admin} || $permissions{domain_create}); | 
|---|
|  | 1885 | $page->param(maybulk => $permissions{admin} || $permissions{domain_edit} || $permissions{domain_create} || $permissions{domain_delete}); | 
|---|
|  | 1886 |  | 
|---|
| [140] | 1887 | $page->param(chggrps => ($permissions{admin} || $permissions{group_create} || $permissions{group_edit} || $permissions{group_delete})); | 
|---|
|  | 1888 |  | 
|---|
| [24] | 1889 | # group tree.  should go elsewhere, probably | 
|---|
|  | 1890 | my $tmpgrplist = fill_grptree($logingroup,$curgroup); | 
|---|
|  | 1891 | $page->param(grptree => $tmpgrplist); | 
|---|
| [65] | 1892 | $page->param(subs => ($tmpgrplist ? 1 : 0));  # probably not useful to pass gobs of data in for a boolean | 
|---|
| [42] | 1893 | $page->param(inlogingrp => $curgroup == $logingroup); | 
|---|
|  | 1894 |  | 
|---|
| [548] | 1895 | # fill in the URL-to-self for the group tree and search-by-letter | 
|---|
| [117] | 1896 | $page->param(whereami => $uri_self); | 
|---|
| [548] | 1897 | # fill in general URL-to-self | 
|---|
| [649] | 1898 | $page->param(script_self => "$ENV{SCRIPT_NAME}?"); | 
|---|
| [17] | 1899 | } | 
|---|
| [13] | 1900 |  | 
|---|
| [166] | 1901 | if (@debugbits) { | 
|---|
|  | 1902 | print "<pre>\n"; | 
|---|
|  | 1903 | foreach (@debugbits) { print; } | 
|---|
|  | 1904 | print "</pre>\n"; | 
|---|
|  | 1905 | } | 
|---|
| [24] | 1906 |  | 
|---|
| [2] | 1907 | # spit it out | 
|---|
|  | 1908 | print $page->output; | 
|---|
|  | 1909 |  | 
|---|
| [38] | 1910 | if ($debugenv) { | 
|---|
|  | 1911 | print "<div id=\"debug\">webvar keys: <pre>\n"; | 
|---|
|  | 1912 | foreach my $key (keys %webvar) { | 
|---|
|  | 1913 | print "key: $key\tval: $webvar{$key}\n"; | 
|---|
|  | 1914 | } | 
|---|
|  | 1915 | print "</pre>\nsession:\n<pre>\n"; | 
|---|
|  | 1916 | my $sesdata = $session->dataref(); | 
|---|
|  | 1917 | foreach my $key (keys %$sesdata) { | 
|---|
|  | 1918 | print "key: $key\tval: ".$sesdata->{$key}."\n"; | 
|---|
|  | 1919 | } | 
|---|
|  | 1920 | print "</pre>\nENV:\n<pre>\n"; | 
|---|
|  | 1921 | foreach my $key (keys %ENV) { | 
|---|
|  | 1922 | print "key: $key\tval: $ENV{$key}\n"; | 
|---|
|  | 1923 | } | 
|---|
|  | 1924 | print "</pre></div>\n"; | 
|---|
| [2] | 1925 | } | 
|---|
|  | 1926 |  | 
|---|
|  | 1927 | print $footer->output; | 
|---|
|  | 1928 |  | 
|---|
| [18] | 1929 | # as per the docs, Just In Case | 
|---|
|  | 1930 | $session->flush(); | 
|---|
| [2] | 1931 |  | 
|---|
|  | 1932 | exit 0; | 
|---|
|  | 1933 |  | 
|---|
|  | 1934 |  | 
|---|
| [24] | 1935 | sub fill_grptree { | 
|---|
|  | 1936 | my $root = shift; | 
|---|
|  | 1937 | my $cur = shift; | 
|---|
| [69] | 1938 | my $indent = shift || '    '; | 
|---|
| [24] | 1939 |  | 
|---|
|  | 1940 | my @childlist; | 
|---|
|  | 1941 |  | 
|---|
| [548] | 1942 | # some magic to control bad offsets on group change | 
|---|
|  | 1943 | my $grp_uri_self = $uri_self; | 
|---|
|  | 1944 | $grp_uri_self =~ s/\&offset=[^&]+// unless ($webvar{page} eq 'reclist' && $webvar{defrec} eq 'n'); | 
|---|
|  | 1945 |  | 
|---|
| [24] | 1946 | my $grptree = HTML::Template->new(filename => 'templates/grptree.tmpl'); | 
|---|
| [547] | 1947 | $dnsdb->getChildren($root, \@childlist, 'immediate'); | 
|---|
| [24] | 1948 | return if $#childlist == -1; | 
|---|
|  | 1949 | my @grouplist; | 
|---|
|  | 1950 | foreach (@childlist) { | 
|---|
|  | 1951 | my %row; | 
|---|
| [547] | 1952 | $row{grpname} = $dnsdb->groupName($_); | 
|---|
| [117] | 1953 | $row{grpnum} = $_; | 
|---|
| [548] | 1954 | $row{whereami} = $grp_uri_self; | 
|---|
| [185] | 1955 | $row{curgrp} = ($_ == $cur); | 
|---|
| [547] | 1956 | $row{expanded} = $dnsdb->isParent($_, 'group', $cur, 'group'); | 
|---|
| [185] | 1957 | $row{expanded} = 1 if $_ == $cur; | 
|---|
| [69] | 1958 | $row{subs} = fill_grptree($_,$cur,$indent.'    '); | 
|---|
|  | 1959 | $row{indent} = $indent; | 
|---|
| [24] | 1960 | push @grouplist, \%row; | 
|---|
|  | 1961 | } | 
|---|
| [69] | 1962 | $grptree->param(indent => $indent); | 
|---|
| [24] | 1963 | $grptree->param(treelvl => \@grouplist); | 
|---|
|  | 1964 | return $grptree->output; | 
|---|
|  | 1965 | } | 
|---|
|  | 1966 |  | 
|---|
| [11] | 1967 | sub changepage { | 
|---|
|  | 1968 | my %params = @_;      # think this works the way I want... | 
|---|
|  | 1969 |  | 
|---|
| [174] | 1970 | # cross-site scripting fixup.  instead of passing error messages by URL/form | 
|---|
|  | 1971 | # variable, put them in the session where the nasty user can't meddle. | 
|---|
| [177] | 1972 | # these are done here since it's far simpler to pass them in from wherever | 
|---|
|  | 1973 | # than set them locally everywhere. | 
|---|
|  | 1974 | foreach my $sessme ('resultmsg','warnmsg','errmsg') { | 
|---|
| [545] | 1975 | if (my $tmp = $params{$sessme}) { | 
|---|
|  | 1976 | $tmp =~ s/^\n//; | 
|---|
|  | 1977 | $tmp =~ s|\n|<br />\n|g; | 
|---|
|  | 1978 | $session->param($sessme, $tmp); | 
|---|
| [177] | 1979 | delete $params{$sessme}; | 
|---|
|  | 1980 | } | 
|---|
| [174] | 1981 | } | 
|---|
|  | 1982 |  | 
|---|
| [11] | 1983 | # handle user check | 
|---|
| [548] | 1984 | my $newurl = "http://$ENV{HTTP_HOST}$ENV{SCRIPT_NAME}?"; | 
|---|
| [544] | 1985 | foreach (sort keys %params) { | 
|---|
| [547] | 1986 | ## fixme:  something is undefined here on add location | 
|---|
| [92] | 1987 | $newurl .= "&$_=".$q->url_encode($params{$_}); | 
|---|
| [11] | 1988 | } | 
|---|
|  | 1989 |  | 
|---|
| [30] | 1990 | # Just In Case | 
|---|
|  | 1991 | $session->flush(); | 
|---|
|  | 1992 |  | 
|---|
| [548] | 1993 | print $q->redirect ( -url => $newurl, -cookie => $sesscookie); | 
|---|
| [11] | 1994 | exit; | 
|---|
|  | 1995 | } # end changepage | 
|---|
|  | 1996 |  | 
|---|
| [545] | 1997 | # wrap up the usual suspects for result, warning, or error messages to be displayed | 
|---|
|  | 1998 | sub show_msgs { | 
|---|
|  | 1999 | if ($session->param('resultmsg')) { | 
|---|
|  | 2000 | $page->param(resultmsg => $session->param('resultmsg')); | 
|---|
|  | 2001 | $session->clear('resultmsg'); | 
|---|
|  | 2002 | } | 
|---|
|  | 2003 | if ($session->param('warnmsg')) { | 
|---|
|  | 2004 | $page->param(warnmsg => $session->param('warnmsg')); | 
|---|
|  | 2005 | $session->clear('warnmsg'); | 
|---|
|  | 2006 | } | 
|---|
|  | 2007 | if ($session->param('errmsg')) { | 
|---|
|  | 2008 | $page->param(errmsg => $session->param('errmsg')); | 
|---|
|  | 2009 | $session->clear('errmsg'); | 
|---|
|  | 2010 | } | 
|---|
|  | 2011 | } # end show_msgs | 
|---|
|  | 2012 |  | 
|---|
| [2] | 2013 | sub fillsoa { | 
|---|
| [545] | 2014 | my $defrec = shift; | 
|---|
|  | 2015 | my $revrec = shift; | 
|---|
| [2] | 2016 | my $id = shift; | 
|---|
| [545] | 2017 | my $preserve = shift || 'd';  # Flag to use webvar fields or retrieve from database | 
|---|
| [2] | 2018 |  | 
|---|
| [545] | 2019 | my $domname = ($defrec eq 'y' ? '' : "DOMAIN"); | 
|---|
| [2] | 2020 |  | 
|---|
| [545] | 2021 | $page->param(defrec   => $defrec); | 
|---|
|  | 2022 | $page->param(revrec   => $revrec); | 
|---|
|  | 2023 |  | 
|---|
| [39] | 2024 | # i had a good reason to do this when I wrote it... | 
|---|
|  | 2025 | #  $page->param(domain  => $domname); | 
|---|
|  | 2026 | #  $page->param(group   => $DNSDB::group); | 
|---|
| [545] | 2027 | $page->param(isgrp => 1) if $defrec eq 'y'; | 
|---|
| [547] | 2028 | $page->param(parent => ($defrec eq 'y' ? $dnsdb->groupName($id) : | 
|---|
|  | 2029 | ($revrec eq 'n' ? $dnsdb->domainName($id) : $dnsdb->revName($id)) ) ); | 
|---|
| [2] | 2030 |  | 
|---|
|  | 2031 | # defaults | 
|---|
| [17] | 2032 | $page->param(defcontact       => $DNSDB::def{contact}); | 
|---|
|  | 2033 | $page->param(defns            => $DNSDB::def{prins}); | 
|---|
|  | 2034 | $page->param(defsoattl        => $DNSDB::def{soattl}); | 
|---|
|  | 2035 | $page->param(defrefresh       => $DNSDB::def{refresh}); | 
|---|
|  | 2036 | $page->param(defretry         => $DNSDB::def{retry}); | 
|---|
|  | 2037 | $page->param(defexpire        => $DNSDB::def{expire}); | 
|---|
|  | 2038 | $page->param(defminttl        => $DNSDB::def{minttl}); | 
|---|
| [2] | 2039 |  | 
|---|
| [545] | 2040 | $page->param(id       => $id); | 
|---|
| [2] | 2041 |  | 
|---|
| [545] | 2042 | if ($preserve eq 'd') { | 
|---|
|  | 2043 | # there are probably better ways to do this.  TMTOWTDI. | 
|---|
| [547] | 2044 | my $soa = $dnsdb->getSOA($defrec, $revrec, $id); | 
|---|
| [545] | 2045 |  | 
|---|
|  | 2046 | $page->param(prins  => ($soa->{prins} ? $soa->{prins} : $DNSDB::def{prins})); | 
|---|
|  | 2047 | $page->param(contact        => ($soa->{contact} ? $soa->{contact} : $DNSDB::def{contact})); | 
|---|
|  | 2048 | $page->param(refresh        => ($soa->{refresh} ? $soa->{refresh} : $DNSDB::def{refresh})); | 
|---|
|  | 2049 | $page->param(retry  => ($soa->{retry} ? $soa->{retry} : $DNSDB::def{retry})); | 
|---|
|  | 2050 | $page->param(expire => ($soa->{expire} ? $soa->{expire} : $DNSDB::def{expire})); | 
|---|
|  | 2051 | $page->param(minttl => ($soa->{minttl} ? $soa->{minttl} : $DNSDB::def{minttl})); | 
|---|
|  | 2052 | $page->param(ttl    => ($soa->{ttl} ? $soa->{ttl} : $DNSDB::def{soattl})); | 
|---|
|  | 2053 | } else { | 
|---|
|  | 2054 | $page->param(prins  => ($webvar{prins} ? $webvar{prins} : $DNSDB::def{prins})); | 
|---|
|  | 2055 | $page->param(contact        => ($webvar{contact} ? $webvar{contact} : $DNSDB::def{contact})); | 
|---|
|  | 2056 | $page->param(refresh        => ($webvar{refresh} ? $webvar{refresh} : $DNSDB::def{refresh})); | 
|---|
|  | 2057 | $page->param(retry  => ($webvar{retry} ? $webvar{retry} : $DNSDB::def{retry})); | 
|---|
|  | 2058 | $page->param(expire => ($webvar{expire} ? $webvar{expire} : $DNSDB::def{expire})); | 
|---|
|  | 2059 | $page->param(minttl => ($webvar{minttl} ? $webvar{minttl} : $DNSDB::def{minttl})); | 
|---|
|  | 2060 | $page->param(ttl    => ($webvar{ttl} ? $webvar{ttl} : $DNSDB::def{soattl})); | 
|---|
|  | 2061 | } | 
|---|
| [2] | 2062 | } | 
|---|
|  | 2063 |  | 
|---|
| [544] | 2064 | sub showzone { | 
|---|
| [2] | 2065 | my $def = shift; | 
|---|
| [544] | 2066 | my $rev = shift; | 
|---|
| [2] | 2067 | my $id = shift; | 
|---|
|  | 2068 |  | 
|---|
|  | 2069 | # get the SOA first | 
|---|
| [547] | 2070 | my $soa = $dnsdb->getSOA($def, $rev, $id); | 
|---|
| [2] | 2071 |  | 
|---|
| [545] | 2072 | $page->param(contact  => $soa->{contact}); | 
|---|
|  | 2073 | $page->param(prins    => $soa->{prins}); | 
|---|
|  | 2074 | $page->param(refresh  => $soa->{refresh}); | 
|---|
|  | 2075 | $page->param(retry    => $soa->{retry}); | 
|---|
|  | 2076 | $page->param(expire   => $soa->{expire}); | 
|---|
|  | 2077 | $page->param(minttl   => $soa->{minttl}); | 
|---|
|  | 2078 | $page->param(ttl      => $soa->{ttl}); | 
|---|
| [2] | 2079 |  | 
|---|
| [548] | 2080 | my $foo2 = $dnsdb->getRecList(defrec => $def, revrec => $rev, id => $id, offset => $webvar{offset}, | 
|---|
| [547] | 2081 | sortby => $sortby, sortorder => $sortorder, filter => $filter); | 
|---|
| [2] | 2082 |  | 
|---|
|  | 2083 | foreach my $rec (@$foo2) { | 
|---|
|  | 2084 | $rec->{type} = $typemap{$rec->{type}}; | 
|---|
| [544] | 2085 | $rec->{fwdzone} = $rev eq 'n'; | 
|---|
| [562] | 2086 | $rec->{ttl} = '(auto)' if $rec->{ttl} == -1; | 
|---|
| [23] | 2087 | $rec->{distance} = 'n/a' unless ($rec->{type} eq 'MX' || $rec->{type} eq 'SRV'); | 
|---|
|  | 2088 | $rec->{weight} = 'n/a' unless ($rec->{type} eq 'SRV'); | 
|---|
|  | 2089 | $rec->{port} = 'n/a' unless ($rec->{type} eq 'SRV'); | 
|---|
| [95] | 2090 | # ACLs | 
|---|
|  | 2091 | $rec->{record_edit} = ($permissions{admin} || $permissions{record_edit}); | 
|---|
|  | 2092 | $rec->{record_delete} = ($permissions{admin} || $permissions{record_delete}); | 
|---|
| [545] | 2093 | $rec->{locname} = '' unless ($permissions{admin} || $permissions{location_view}); | 
|---|
| [548] | 2094 | # Timestamps | 
|---|
|  | 2095 | if ($rec->{expires}) { | 
|---|
|  | 2096 | $rec->{stamptype} = $rec->{ispast} ? 'expired at' : 'expires at'; | 
|---|
|  | 2097 | } else { | 
|---|
|  | 2098 | $rec->{stamptype} = 'valid after'; | 
|---|
|  | 2099 | } | 
|---|
|  | 2100 | # strip seconds and timezone?  no, not yet.  could probably offer a config knob on this display at some point. | 
|---|
|  | 2101 | #    $rec->{stamp} =~ s/:\d\d-\d+$//; | 
|---|
|  | 2102 | delete $rec->{expires}; | 
|---|
|  | 2103 | delete $rec->{ispast}; | 
|---|
| [2] | 2104 | } | 
|---|
|  | 2105 | $page->param(reclist => $foo2); | 
|---|
|  | 2106 | } | 
|---|
|  | 2107 |  | 
|---|
| [16] | 2108 | sub fill_recdata { | 
|---|
| [587] | 2109 | # le sigh.  we may get called with many empty %webvar keys | 
|---|
| [91] | 2110 | no warnings qw( uninitialized ); | 
|---|
|  | 2111 |  | 
|---|
| [101] | 2112 | ##todo:  allow BIND-style bare names, ASS-U-ME that the name is within the domain? | 
|---|
|  | 2113 | # prefill <domain> or DOMAIN in "Host" space for new records | 
|---|
| [544] | 2114 | if ($webvar{revrec} eq 'n') { | 
|---|
| [587] | 2115 | $page->param(typelist => $dnsdb->getTypelist($webvar{revrec}, $webvar{type})); | 
|---|
| [547] | 2116 | my $domroot = ($webvar{defrec} eq 'y' ? 'DOMAIN' : $dnsdb->domainName($webvar{parentid})); | 
|---|
| [545] | 2117 | $page->param(name   => ($webvar{name} ? $webvar{name} : $domroot)); | 
|---|
| [544] | 2118 | $page->param(address        => $webvar{address}); | 
|---|
|  | 2119 | $page->param(distance       => $webvar{distance}) | 
|---|
| [16] | 2120 | if ($webvar{type} == $reverse_typemap{MX} or $webvar{type} == $reverse_typemap{SRV}); | 
|---|
| [544] | 2121 | $page->param(weight => $webvar{weight}) if $webvar{type} == $reverse_typemap{SRV}; | 
|---|
|  | 2122 | $page->param(port   => $webvar{port}) if $webvar{type} == $reverse_typemap{SRV}; | 
|---|
|  | 2123 | } else { | 
|---|
| [547] | 2124 | my $domroot = ($webvar{defrec} eq 'y' ? 'ADMINDOMAIN' : ".$dnsdb->{domain}"); | 
|---|
| [544] | 2125 | $page->param(name   => ($webvar{name} ? $webvar{name} : $domroot)); | 
|---|
| [587] | 2126 | my $zname = ($webvar{defrec} eq 'y' ? 'ZONE' : $dnsdb->revName($webvar{parentid}, 'y')); | 
|---|
| [544] | 2127 | $zname =~ s|\d*/\d+$||; | 
|---|
|  | 2128 | $page->param(address        => ($webvar{address} ? $webvar{address} : $zname)); | 
|---|
| [587] | 2129 | $page->param(typelist => $dnsdb->getTypelist($webvar{revrec}, | 
|---|
| [649] | 2130 | $webvar{type} || ($zname =~ /:/ ? $reverse_typemap{'AAAA+PTR'} : $reverse_typemap{'A+PTR'}))); | 
|---|
| [544] | 2131 | } | 
|---|
| [101] | 2132 | # retrieve the right ttl instead of falling (way) back to the hardcoded system default | 
|---|
| [547] | 2133 | my $soa = $dnsdb->getSOA($webvar{defrec}, $webvar{revrec}, $webvar{parentid}); | 
|---|
| [545] | 2134 | $page->param(ttl      => ($webvar{ttl} ? $webvar{ttl} : $soa->{minttl})); | 
|---|
| [548] | 2135 | $page->param(stamp_until => ($webvar{expires} eq 'until')); | 
|---|
|  | 2136 | $page->param(stamp => $webvar{stamp}); | 
|---|
| [2] | 2137 | } | 
|---|
| [7] | 2138 |  | 
|---|
| [24] | 2139 | sub fill_actypelist { | 
|---|
| [83] | 2140 | my $curtype = shift || 'u'; | 
|---|
|  | 2141 |  | 
|---|
| [24] | 2142 | my @actypes; | 
|---|
|  | 2143 |  | 
|---|
|  | 2144 | my %row1 = (actypeval => 'u', actypename => 'user'); | 
|---|
| [83] | 2145 | $row1{typesel} = 1 if $curtype eq 'u'; | 
|---|
| [24] | 2146 | push @actypes, \%row1; | 
|---|
|  | 2147 |  | 
|---|
|  | 2148 | my %row2 = (actypeval => 'S', actypename => 'superuser'); | 
|---|
| [83] | 2149 | $row2{typesel} = 1 if $curtype eq 'S'; | 
|---|
| [24] | 2150 | push @actypes, \%row2; | 
|---|
|  | 2151 |  | 
|---|
| [83] | 2152 | $page->param(actypelist => \@actypes); | 
|---|
| [24] | 2153 | } | 
|---|
|  | 2154 |  | 
|---|
| [65] | 2155 | sub fill_clonemelist { | 
|---|
| [87] | 2156 | # shut up some warnings, but don't stomp on caller's state | 
|---|
|  | 2157 | local $webvar{clonesrc} = 0 if !defined($webvar{clonesrc}); | 
|---|
|  | 2158 |  | 
|---|
| [547] | 2159 | my $clones = $dnsdb->getUserDropdown($curgroup, $webvar{clonesrc}); | 
|---|
| [545] | 2160 | $page->param(clonesrc => $clones); | 
|---|
| [65] | 2161 | } | 
|---|
|  | 2162 |  | 
|---|
| [7] | 2163 | sub fill_fpnla { | 
|---|
|  | 2164 | my $count = shift; | 
|---|
|  | 2165 | if ($offset eq 'all') { | 
|---|
| [70] | 2166 | $page->param(perpage => $perpage); | 
|---|
| [41] | 2167 | # uhm.... | 
|---|
| [7] | 2168 | } else { | 
|---|
|  | 2169 | # all these bits only have sensible behaviour if offset is numeric. err, probably. | 
|---|
|  | 2170 | if ($count > $perpage) { | 
|---|
|  | 2171 | # if there are more results than the default, always show the "all" link | 
|---|
|  | 2172 | $page->param(navall => 1); | 
|---|
|  | 2173 |  | 
|---|
|  | 2174 | if ($offset > 0) { | 
|---|
|  | 2175 | $page->param(navfirst => 1); | 
|---|
|  | 2176 | $page->param(navprev => 1); | 
|---|
|  | 2177 | $page->param(prevoffs => $offset-1); | 
|---|
|  | 2178 | } | 
|---|
|  | 2179 |  | 
|---|
|  | 2180 | # show "next" and "last" links if we're not on the last page of results | 
|---|
|  | 2181 | if ( (($offset+1) * $perpage - $count) < 0 ) { | 
|---|
|  | 2182 | $page->param(navnext => 1); | 
|---|
|  | 2183 | $page->param(nextoffs => $offset+1); | 
|---|
|  | 2184 | $page->param(navlast => 1); | 
|---|
| [8] | 2185 | $page->param(lastoffs => int (($count-1)/$perpage)); | 
|---|
| [7] | 2186 | } | 
|---|
| [87] | 2187 | } else { | 
|---|
|  | 2188 | $page->param(onepage => 1); | 
|---|
| [7] | 2189 | } | 
|---|
|  | 2190 | } | 
|---|
| [10] | 2191 | } # end fill_fpnla() | 
|---|
|  | 2192 |  | 
|---|
| [12] | 2193 | sub fill_pgcount { | 
|---|
|  | 2194 | my $pgcount = shift; | 
|---|
|  | 2195 | my $pgtype = shift; | 
|---|
|  | 2196 | my $parent = shift; | 
|---|
|  | 2197 |  | 
|---|
|  | 2198 | $page->param(ntot => $pgcount); | 
|---|
|  | 2199 | $page->param(nfirst => (($offset eq 'all' ? 0 : $offset)*$perpage+1)); | 
|---|
|  | 2200 | $page->param(npglast => ($offset eq 'all' ? $pgcount : | 
|---|
|  | 2201 | ( (($offset+1)*$perpage) > $pgcount ? $pgcount : (($offset+1)*$perpage) ) | 
|---|
|  | 2202 | )); | 
|---|
|  | 2203 | $page->param(pgtype => $pgtype); | 
|---|
|  | 2204 | $page->param(parent => $parent); | 
|---|
| [137] | 2205 | $page->param(filter => $filter); | 
|---|
| [12] | 2206 | } # end fill_pgcount() | 
|---|
|  | 2207 |  | 
|---|
| [41] | 2208 |  | 
|---|
| [544] | 2209 | sub listdomains { listzones(); }        # temp | 
|---|
|  | 2210 |  | 
|---|
|  | 2211 | sub listzones { | 
|---|
| [95] | 2212 | # ACLs | 
|---|
|  | 2213 | $page->param(domain_create    => ($permissions{admin} || $permissions{domain_create}) ); | 
|---|
|  | 2214 | $page->param(domain_edit      => ($permissions{admin} || $permissions{domain_edit}) ); | 
|---|
|  | 2215 | $page->param(domain_delete    => ($permissions{admin} || $permissions{domain_delete}) ); | 
|---|
|  | 2216 |  | 
|---|
| [52] | 2217 | my @childgroups; | 
|---|
| [547] | 2218 | $dnsdb->getChildren($curgroup, \@childgroups, 'all') if $searchsubs; | 
|---|
| [52] | 2219 | my $childlist = join(',',@childgroups); | 
|---|
|  | 2220 |  | 
|---|
| [547] | 2221 | my $count = $dnsdb->getZoneCount(childlist => $childlist, curgroup => $curgroup, revrec => $webvar{revrec}, | 
|---|
|  | 2222 | filter => ($filter ? $filter : undef), startwith => ($startwith ? $startwith : undef) ); | 
|---|
| [17] | 2223 |  | 
|---|
| [12] | 2224 | # fill page count and first-previous-next-last-all bits | 
|---|
| [547] | 2225 | fill_pgcount($count,($webvar{revrec} eq 'n' ? 'domains' : 'revzones'),$dnsdb->groupName($curgroup)); | 
|---|
| [10] | 2226 | fill_fpnla($count); | 
|---|
|  | 2227 |  | 
|---|
| [548] | 2228 | $sortby = ($webvar{revrec} eq 'n' ? 'domain' : 'revnet'); | 
|---|
| [41] | 2229 | # sort/order | 
|---|
| [51] | 2230 | $session->param($webvar{page}.'sortby', $webvar{sortby}) if $webvar{sortby}; | 
|---|
|  | 2231 | $session->param($webvar{page}.'order', $webvar{order}) if $webvar{order}; | 
|---|
| [41] | 2232 |  | 
|---|
| [120] | 2233 | $sortby = $session->param($webvar{page}.'sortby') if $session->param($webvar{page}.'sortby'); | 
|---|
|  | 2234 | $sortorder = $session->param($webvar{page}.'order') if $session->param($webvar{page}.'order'); | 
|---|
| [51] | 2235 |  | 
|---|
| [44] | 2236 | # set up the headers | 
|---|
| [544] | 2237 | my @cols = (($webvar{revrec} eq 'n' ? 'domain' : 'revnet'), 'status', 'group'); | 
|---|
|  | 2238 | my %colheads = (domain => 'Domain', revnet => 'Reverse Zone', status => 'Status', group => 'Group'); | 
|---|
| [54] | 2239 | fill_colheads($sortby, $sortorder, \@cols, \%colheads); | 
|---|
| [41] | 2240 |  | 
|---|
|  | 2241 | # hack! hack! pthbttt.  have to rethink the status column storage, | 
|---|
|  | 2242 | # or inactive comes "before" active.  *sigh* | 
|---|
|  | 2243 | $sortorder = ($sortorder eq 'ASC' ? 'DESC' : 'ASC') if $sortby eq 'status'; | 
|---|
|  | 2244 |  | 
|---|
| [51] | 2245 | # waffle, waffle - keep state on these as well as sortby, sortorder? | 
|---|
| [544] | 2246 | ##fixme:  put this higher so the count doesn't get munched? | 
|---|
| [53] | 2247 | $page->param("start$startwith" => 1) if $startwith && $startwith =~ /^(?:[a-z]|0-9)$/; | 
|---|
| [41] | 2248 |  | 
|---|
| [53] | 2249 | $page->param(filter => $filter) if $filter; | 
|---|
|  | 2250 | $page->param(searchsubs => $searchsubs) if $searchsubs; | 
|---|
| [41] | 2251 |  | 
|---|
| [544] | 2252 | $page->param(group => $curgroup); | 
|---|
| [41] | 2253 |  | 
|---|
| [547] | 2254 | my $zonelist = $dnsdb->getZoneList(childlist => $childlist, curgroup => $curgroup, revrec => $webvar{revrec}, | 
|---|
| [544] | 2255 | filter => ($filter ? $filter : undef), startwith => ($startwith ? $startwith : undef), | 
|---|
| [548] | 2256 | offset => $offset, sortby => $sortby, sortorder => $sortorder | 
|---|
| [547] | 2257 | ); | 
|---|
| [544] | 2258 | # probably don't need this, keeping for reference for now | 
|---|
| [587] | 2259 | #  foreach my $rec (@$zonelist) { | 
|---|
| [544] | 2260 | #  } | 
|---|
|  | 2261 | $page->param(domtable => $zonelist); | 
|---|
| [11] | 2262 | } # end listdomains() | 
|---|
| [18] | 2263 |  | 
|---|
| [87] | 2264 |  | 
|---|
| [22] | 2265 | sub listgroups { | 
|---|
| [53] | 2266 |  | 
|---|
| [153] | 2267 | # security check - does the user have permission to view this entity? | 
|---|
|  | 2268 | if (!(grep /^$curgroup$/, @viewablegroups)) { | 
|---|
|  | 2269 | # hmm.  Reset the current group to the login group?  Yes.  Prevents confusing behaviour elsewhere. | 
|---|
|  | 2270 | $session->param('curgroup',$logingroup); | 
|---|
|  | 2271 | $page->param(errmsg => "You are not permitted to view the requested group"); | 
|---|
|  | 2272 | $curgroup = $logingroup; | 
|---|
|  | 2273 | } | 
|---|
|  | 2274 |  | 
|---|
| [26] | 2275 | my @childgroups; | 
|---|
| [547] | 2276 | $dnsdb->getChildren($curgroup, \@childgroups, 'all') if $searchsubs; | 
|---|
| [26] | 2277 | my $childlist = join(',',@childgroups); | 
|---|
|  | 2278 |  | 
|---|
| [547] | 2279 | my ($count) = $dnsdb->getGroupCount(childlist => $childlist, curgroup => $curgroup, | 
|---|
|  | 2280 | filter => ($filter ? $filter : undef), startwith => ($startwith ? $startwith : undef) ); | 
|---|
| [26] | 2281 |  | 
|---|
| [22] | 2282 | # fill page count and first-previous-next-last-all bits | 
|---|
|  | 2283 | fill_pgcount($count,"groups",''); | 
|---|
|  | 2284 | fill_fpnla($count); | 
|---|
|  | 2285 |  | 
|---|
| [80] | 2286 | $page->param(gid => $curgroup); | 
|---|
|  | 2287 |  | 
|---|
| [124] | 2288 | $sortby = 'group'; | 
|---|
| [42] | 2289 | # sort/order | 
|---|
| [51] | 2290 | $session->param($webvar{page}.'sortby', $webvar{sortby}) if $webvar{sortby}; | 
|---|
|  | 2291 | $session->param($webvar{page}.'order', $webvar{order}) if $webvar{order}; | 
|---|
| [42] | 2292 |  | 
|---|
| [120] | 2293 | $sortby = $session->param($webvar{page}.'sortby') if $session->param($webvar{page}.'sortby'); | 
|---|
|  | 2294 | $sortorder = $session->param($webvar{page}.'order') if $session->param($webvar{page}.'order'); | 
|---|
| [51] | 2295 |  | 
|---|
| [44] | 2296 | # set up the headers | 
|---|
| [545] | 2297 | my @cols = ('group','parent','nusers','ndomains','nrevzones'); | 
|---|
|  | 2298 | my %colnames = (group => 'Group', parent => 'Parent Group', nusers => 'Users', ndomains => 'Domains', nrevzones => 'Reverse Zones'); | 
|---|
| [54] | 2299 | fill_colheads($sortby, $sortorder, \@cols, \%colnames); | 
|---|
| [42] | 2300 |  | 
|---|
| [51] | 2301 | # waffle, waffle - keep state on these as well as sortby, sortorder? | 
|---|
| [64] | 2302 | $page->param("start$startwith" => 1) if $startwith && $startwith =~ /^(?:[a-z]|0-9)$/; | 
|---|
| [51] | 2303 |  | 
|---|
| [53] | 2304 | $page->param(filter => $filter) if $filter; | 
|---|
|  | 2305 | $page->param(searchsubs => $searchsubs) if $searchsubs; | 
|---|
| [51] | 2306 |  | 
|---|
|  | 2307 | # munge sortby for columns in database | 
|---|
|  | 2308 | $sortby = 'g.group_name' if $sortby eq 'group'; | 
|---|
|  | 2309 | $sortby = 'g2.group_name' if $sortby eq 'parent'; | 
|---|
|  | 2310 |  | 
|---|
| [547] | 2311 | my $glist = $dnsdb->getGroupList(childlist => $childlist, curgroup => $curgroup, | 
|---|
| [545] | 2312 | filter => ($filter ? $filter : undef), startwith => ($startwith ? $startwith : undef), | 
|---|
| [547] | 2313 | offset => $webvar{offset}, sortby => $sortby, sortorder => $sortorder); | 
|---|
| [22] | 2314 |  | 
|---|
| [545] | 2315 | $page->param(grouptable => $glist); | 
|---|
| [22] | 2316 | } # end listgroups() | 
|---|
|  | 2317 |  | 
|---|
| [92] | 2318 |  | 
|---|
| [20] | 2319 | sub fill_grouplist { | 
|---|
| [19] | 2320 | my $template_var = shift; | 
|---|
|  | 2321 | my $cur = shift || $curgroup; | 
|---|
| [26] | 2322 |  | 
|---|
| [545] | 2323 | # little recursive utility sub-sub | 
|---|
|  | 2324 | sub getgroupdrop { | 
|---|
|  | 2325 | my $root = shift; | 
|---|
|  | 2326 | my $cur = shift;    # to tag the selected group | 
|---|
|  | 2327 | my $grplist = shift; | 
|---|
|  | 2328 | my $indent = shift || '    '; | 
|---|
| [26] | 2329 |  | 
|---|
| [545] | 2330 | my @childlist; | 
|---|
| [547] | 2331 | $dnsdb->getChildren($root, \@childlist, 'immediate'); | 
|---|
| [545] | 2332 | return if $#childlist == -1; | 
|---|
|  | 2333 | foreach (@childlist) { | 
|---|
|  | 2334 | my %row; | 
|---|
|  | 2335 | $row{groupval} = $_; | 
|---|
|  | 2336 | $row{groupactive} = ($_ == $cur); | 
|---|
| [547] | 2337 | $row{groupname} = $indent.$dnsdb->groupName($_); | 
|---|
| [545] | 2338 | push @{$grplist}, \%row; | 
|---|
|  | 2339 | getgroupdrop($_, $cur, $grplist, $indent.'    '); | 
|---|
|  | 2340 | } | 
|---|
|  | 2341 | } | 
|---|
| [117] | 2342 |  | 
|---|
| [20] | 2343 | my @grouplist; | 
|---|
| [545] | 2344 | push @grouplist, { groupval => $logingroup, groupactive => $logingroup == $curgroup, | 
|---|
| [547] | 2345 | groupname => $dnsdb->groupName($logingroup) }; | 
|---|
| [545] | 2346 | getgroupdrop($logingroup, $curgroup, \@grouplist); | 
|---|
| [18] | 2347 |  | 
|---|
| [20] | 2348 | $page->param("$template_var" => \@grouplist); | 
|---|
| [24] | 2349 | } # end fill_grouplist() | 
|---|
|  | 2350 |  | 
|---|
| [92] | 2351 |  | 
|---|
| [545] | 2352 | sub fill_loclist { | 
|---|
|  | 2353 | my $cur = shift || $curgroup; | 
|---|
|  | 2354 | my $defloc = shift || ''; | 
|---|
|  | 2355 |  | 
|---|
|  | 2356 | return unless ($permissions{admin} || $permissions{location_view}); | 
|---|
|  | 2357 |  | 
|---|
|  | 2358 | $page->param(location_view => ($permissions{admin} || $permissions{location_view})); | 
|---|
|  | 2359 |  | 
|---|
|  | 2360 | if ($permissions{admin} || $permissions{record_locchg}) { | 
|---|
| [547] | 2361 | my $loclist = $dnsdb->getLocDropdown($cur, $defloc); | 
|---|
| [545] | 2362 | $page->param(record_locchg => 1); | 
|---|
|  | 2363 | $page->param(loclist => $loclist); | 
|---|
|  | 2364 | } else { | 
|---|
| [547] | 2365 | my $loc = $dnsdb->getLoc($defloc); | 
|---|
| [545] | 2366 | $page->param(loc_name => $loc->{description}); | 
|---|
|  | 2367 | } | 
|---|
|  | 2368 | } # end fill_loclist() | 
|---|
|  | 2369 |  | 
|---|
|  | 2370 |  | 
|---|
| [24] | 2371 | sub list_users { | 
|---|
| [52] | 2372 |  | 
|---|
|  | 2373 | my @childgroups; | 
|---|
| [547] | 2374 | $dnsdb->getChildren($curgroup, \@childgroups, 'all') if $searchsubs; | 
|---|
| [52] | 2375 | my $childlist = join(',',@childgroups); | 
|---|
|  | 2376 |  | 
|---|
| [547] | 2377 | my $count = $dnsdb->getUserCount(childlist => $childlist, curgroup => $curgroup, | 
|---|
|  | 2378 | filter => ($filter ? $filter : undef), startwith => ($startwith ? $startwith : undef) ); | 
|---|
| [24] | 2379 |  | 
|---|
|  | 2380 | # fill page count and first-previous-next-last-all bits | 
|---|
|  | 2381 | fill_pgcount($count,"users",''); | 
|---|
|  | 2382 | fill_fpnla($count); | 
|---|
|  | 2383 |  | 
|---|
| [124] | 2384 | $sortby = 'user'; | 
|---|
| [44] | 2385 | # sort/order | 
|---|
| [51] | 2386 | $session->param($webvar{page}.'sortby', $webvar{sortby}) if $webvar{sortby}; | 
|---|
|  | 2387 | $session->param($webvar{page}.'order', $webvar{order}) if $webvar{order}; | 
|---|
| [44] | 2388 |  | 
|---|
| [120] | 2389 | $sortby = $session->param($webvar{page}.'sortby') if $session->param($webvar{page}.'sortby'); | 
|---|
|  | 2390 | $sortorder = $session->param($webvar{page}.'order') if $session->param($webvar{page}.'order'); | 
|---|
| [51] | 2391 |  | 
|---|
| [44] | 2392 | # set up the headers | 
|---|
|  | 2393 | my @cols = ('user','fname','type','group','status'); | 
|---|
|  | 2394 | my %colnames = (user => 'Username', fname => 'Full Name', type => 'Type', group => 'Group', status => 'Status'); | 
|---|
| [54] | 2395 | fill_colheads($sortby, $sortorder, \@cols, \%colnames); | 
|---|
| [44] | 2396 |  | 
|---|
| [51] | 2397 | # waffle, waffle - keep state on these as well as sortby, sortorder? | 
|---|
| [64] | 2398 | $page->param("start$startwith" => 1) if $startwith && $startwith =~ /^(?:[a-z]|0-9)$/; | 
|---|
| [51] | 2399 |  | 
|---|
| [53] | 2400 | $page->param(filter => $filter) if $filter; | 
|---|
|  | 2401 | $page->param(searchsubs => $searchsubs) if $searchsubs; | 
|---|
| [51] | 2402 |  | 
|---|
| [547] | 2403 | my $ulist = $dnsdb->getUserList(childlist => $childlist, curgroup => $curgroup, | 
|---|
| [545] | 2404 | filter => ($filter ? $filter : undef), startwith => ($startwith ? $startwith : undef), | 
|---|
| [547] | 2405 | offset => $webvar{offset}, sortby => $sortby, sortorder => $sortorder); | 
|---|
| [545] | 2406 | # Some UI things need to be done to the list (unlike other lists) | 
|---|
|  | 2407 | foreach my $u (@{$ulist}) { | 
|---|
|  | 2408 | $u->{eduser} = ($permissions{admin} || | 
|---|
|  | 2409 | ($permissions{user_edit} && $u->{type} ne 'S') || | 
|---|
|  | 2410 | ($permissions{self_edit} && $u->{user_id} == $session->param('uid')) ); | 
|---|
|  | 2411 | $u->{deluser} = ($permissions{admin} || ($permissions{user_delete} && $u->{type} ne 'S')); | 
|---|
|  | 2412 | $u->{type} = ($u->{type} eq 'S' ? 'superuser' : 'user'); | 
|---|
|  | 2413 | } | 
|---|
|  | 2414 | $page->param(usertable => $ulist); | 
|---|
|  | 2415 | } # end list_users() | 
|---|
| [51] | 2416 |  | 
|---|
|  | 2417 |  | 
|---|
| [545] | 2418 | sub list_locations { | 
|---|
| [24] | 2419 |  | 
|---|
| [545] | 2420 | my @childgroups; | 
|---|
| [547] | 2421 | $dnsdb->getChildren($curgroup, \@childgroups, 'all') if $searchsubs; | 
|---|
| [545] | 2422 | my $childlist = join(',',@childgroups); | 
|---|
|  | 2423 |  | 
|---|
| [547] | 2424 | my $count = $dnsdb->getLocCount(childlist => $childlist, curgroup => $curgroup, | 
|---|
|  | 2425 | filter => ($filter ? $filter : undef), startwith => ($startwith ? $startwith : undef) ); | 
|---|
| [545] | 2426 |  | 
|---|
|  | 2427 | # fill page count and first-previous-next-last-all bits | 
|---|
|  | 2428 | fill_pgcount($count,"locations/views",''); | 
|---|
|  | 2429 | fill_fpnla($count); | 
|---|
|  | 2430 |  | 
|---|
|  | 2431 | $sortby = 'user'; | 
|---|
|  | 2432 | # sort/order | 
|---|
|  | 2433 | $session->param($webvar{page}.'sortby', $webvar{sortby}) if $webvar{sortby}; | 
|---|
|  | 2434 | $session->param($webvar{page}.'order', $webvar{order}) if $webvar{order}; | 
|---|
|  | 2435 |  | 
|---|
|  | 2436 | $sortby = $session->param($webvar{page}.'sortby') if $session->param($webvar{page}.'sortby'); | 
|---|
|  | 2437 | $sortorder = $session->param($webvar{page}.'order') if $session->param($webvar{page}.'order'); | 
|---|
|  | 2438 |  | 
|---|
|  | 2439 | # set up the headers | 
|---|
|  | 2440 | my @cols = ('description', 'iplist', 'group'); | 
|---|
|  | 2441 | my %colnames = (description => 'Location/View Name', iplist => 'Permitted IPs/Ranges', group => 'Group'); | 
|---|
|  | 2442 | fill_colheads($sortby, $sortorder, \@cols, \%colnames); | 
|---|
|  | 2443 |  | 
|---|
|  | 2444 | # waffle, waffle - keep state on these as well as sortby, sortorder? | 
|---|
|  | 2445 | $page->param("start$startwith" => 1) if $startwith && $startwith =~ /^(?:[a-z]|0-9)$/; | 
|---|
|  | 2446 |  | 
|---|
|  | 2447 | $page->param(filter => $filter) if $filter; | 
|---|
|  | 2448 | $page->param(searchsubs => $searchsubs) if $searchsubs; | 
|---|
|  | 2449 |  | 
|---|
| [547] | 2450 | my $loclist = $dnsdb->getLocList(childlist => $childlist, curgroup => $curgroup, | 
|---|
| [545] | 2451 | filter => ($filter ? $filter : undef), startwith => ($startwith ? $startwith : undef), | 
|---|
| [547] | 2452 | offset => $webvar{offset}, sortby => $sortby, sortorder => $sortorder); | 
|---|
| [545] | 2453 | # Some UI things need to be done to the list | 
|---|
|  | 2454 | foreach my $l (@{$loclist}) { | 
|---|
|  | 2455 | $l->{iplist} = "(All IPs)" if !$l->{iplist}; | 
|---|
|  | 2456 | $l->{edloc} = ($permissions{admin} || $permissions{loc_edit}); | 
|---|
|  | 2457 | $l->{delloc} = ($permissions{admin} || $permissions{loc_delete}); | 
|---|
| [24] | 2458 | } | 
|---|
| [545] | 2459 | $page->param(loctable => $loclist); | 
|---|
|  | 2460 | } # end list_locations() | 
|---|
| [43] | 2461 |  | 
|---|
| [92] | 2462 |  | 
|---|
| [43] | 2463 | # Generate all of the glop necessary to add or not the appropriate marker/flag for | 
|---|
|  | 2464 | # the sort order and column in domain, user, group, and record lists | 
|---|
|  | 2465 | # Takes an array ref and hash ref | 
|---|
|  | 2466 | sub fill_colheads { | 
|---|
| [54] | 2467 | my $sortby = shift; | 
|---|
|  | 2468 | my $sortorder = shift; | 
|---|
| [43] | 2469 | my $cols = shift; | 
|---|
|  | 2470 | my $colnames = shift; | 
|---|
| [72] | 2471 | my $custom = shift; | 
|---|
| [43] | 2472 |  | 
|---|
|  | 2473 | my @headings; | 
|---|
|  | 2474 |  | 
|---|
|  | 2475 | foreach my $col (@$cols) { | 
|---|
|  | 2476 | my %coldata; | 
|---|
|  | 2477 | $coldata{page} = $webvar{page}; | 
|---|
|  | 2478 | $coldata{offset} = $webvar{offset} if $webvar{offset}; | 
|---|
|  | 2479 | $coldata{sortby} = $col; | 
|---|
|  | 2480 | $coldata{colname} = $colnames->{$col}; | 
|---|
|  | 2481 | if ($col eq $sortby) { | 
|---|
|  | 2482 | $coldata{order} = ($sortorder eq 'ASC' ? 'DESC' : 'ASC'); | 
|---|
|  | 2483 | $coldata{sortorder} = $sortorder; | 
|---|
|  | 2484 | } else { | 
|---|
|  | 2485 | $coldata{order} = 'ASC'; | 
|---|
|  | 2486 | } | 
|---|
| [72] | 2487 | if ($custom) { | 
|---|
|  | 2488 | foreach my $ckey (keys %$custom) { | 
|---|
|  | 2489 | $coldata{$ckey} = $custom->{$ckey}; | 
|---|
|  | 2490 | } | 
|---|
|  | 2491 | } | 
|---|
| [43] | 2492 | push @headings, \%coldata; | 
|---|
|  | 2493 | } | 
|---|
|  | 2494 |  | 
|---|
|  | 2495 | $page->param(colheads => \@headings); | 
|---|
|  | 2496 |  | 
|---|
| [54] | 2497 | } # end fill_colheads() | 
|---|
| [55] | 2498 |  | 
|---|
| [92] | 2499 |  | 
|---|
| [66] | 2500 | # we have to do this in a variety of places;  let's make it consistent | 
|---|
|  | 2501 | sub fill_permissions { | 
|---|
|  | 2502 | my $template = shift; # may need to do several sets on a single page | 
|---|
|  | 2503 | my $permset = shift;  # hashref to permissions on object | 
|---|
| [67] | 2504 | my $usercan = shift || \%permissions; # allow alternate user-is-allowed permission block | 
|---|
| [66] | 2505 |  | 
|---|
|  | 2506 | foreach (@permtypes) { | 
|---|
| [67] | 2507 | $template->param("may_$_" => ($usercan->{admin} || $usercan->{$_})); | 
|---|
| [66] | 2508 | $template->param($_ => $permset->{$_}); | 
|---|
|  | 2509 | } | 
|---|
|  | 2510 | } | 
|---|
| [155] | 2511 |  | 
|---|
|  | 2512 | # so simple when defined as a sub instead of inline.  O_o | 
|---|
|  | 2513 | sub check_scope { | 
|---|
| [169] | 2514 | my %args = @_; | 
|---|
|  | 2515 | my $entity = $args{id} || 0;  # prevent the shooting of feet with SQL "... intcolumn = '' ..." | 
|---|
|  | 2516 | my $entype = $args{type} || ''; | 
|---|
| [155] | 2517 |  | 
|---|
|  | 2518 | if ($entype eq 'group') { | 
|---|
|  | 2519 | return 1 if grep /^$entity$/, @viewablegroups; | 
|---|
|  | 2520 | } else { | 
|---|
|  | 2521 | foreach (@viewablegroups) { | 
|---|
| [547] | 2522 | return 1 if $dnsdb->isParent($_, 'group', $entity, $entype); | 
|---|
| [155] | 2523 | } | 
|---|
|  | 2524 | } | 
|---|
|  | 2525 | } | 
|---|