1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
|
# ZCTEST 1.0
# $Id: generic.rb,v 1.26 2003/12/01 09:45:15 sdalu Exp $
#
# CONTACT : zonecheck@nic.fr
# AUTHOR : Stephane D'Alu <sdalu@nic.fr>
#
# CREATED : 2002/08/02 13:58:17
# REVISION : $Revision: 1.26 $
# DATE : $Date: 2003/12/01 09:45:15 $
#
# CONTRIBUTORS: (see also CREDITS file)
#
#
# LICENSE : GPL v2 (or MIT/X11-like after agreement)
# COPYRIGHT : AFNIC (c) 2003
#
# This file is part of ZoneCheck.
#
# ZoneCheck is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# ZoneCheck is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with ZoneCheck; if not, write to the Free Software Foundation,
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
require 'framework'
module CheckGeneric
##
## Check syntax validity of the domain name
##
class DomainNameSyntax < Test
with_msgcat 'test/generic.%s'
#-- Checks --------------------------------------------------
# DESC: A domainname should only contains A-Z a-Z 0-9 '-' '.'
def chk_dn_sntx
@domain.name.to_s =~ /^[A-Za-z0-9\-\.]+$/
end
# DESC: A domainname should not countain a double hyphen
def chk_dn_dbl_hyph
! (@domain.name.to_s =~ /--/)
end
# DESC: A domainname should not start or end with an hyphen
def chk_dn_orp_hyph
! (@domain.name.to_s =~ /(^|\.)-|-(\.|$)/)
end
end
##
## Check basic absurdity with the nameserver IP addresses
##
class ServerAddress < Test
with_msgcat 'test/generic.%s'
#-- Initialization ------------------------------------------
def initialize(*args)
super(*args)
@cache.create(:ip, :by_subnet)
end
#-- Shortcuts -----------------------------------------------
def ip
@cache.use(:ip) {
ip = @domain.ns.collect { |ns, ips| ips }
ip.flatten!
ip
}
end
def ns_from_ip(ip)
@domain.ns.each { |ns, ips|
return ns if ips.include?(ip)
}
nil
end
def by_subnet
@cache.use(:by_subnet) {
nethosts = {}
ip.each { |i|
net = case i # decide of subnet size:
when Address::IPv4 then i.prefix(28) # /28 for IPv4
when Address::IPv6 then i.prefix(64) # /64 for IPv6
end
nethosts[net] = [ ] unless nethosts.has_key?(net)
nethosts[net] << i
}
nethosts
}
end
#-- Checks --------------------------------------------------
# DESC: Addresses should be distincts
def chk_ip_distinct
# Ok all addresses are distincts
return true if ip == ip.uniq
# Create data for failure handling
hosts = {}
@domain.ns.each { |ns, ips|
ips.each { |i|
hosts[i] = [ ] unless hosts.has_key?(i)
hosts[i] << ns
}
}
hosts.delete_if { |k, v| v.size < 2 }
hosts.each { |k, v| # Got at least 1 entry as ip != ip.uniq
return { 'ip' => k, 'ns' => v.join(', ') }
}
end
# DESC: Addresses should avoid belonging to the same network
def chk_ip_same_net
# Only keep list of hosts on same subnet
same_net = by_subnet.dup.delete_if { |k, v| v.size < 2 }
# Ok all hosts are on different subnets
return true if same_net.empty?
# Create output data for failure
subnetlist = []
same_net.each { |k, v|
hlist = (v.collect { |i| ns = ns_from_ip(i) }).join(', ')
prefix = case k
when Address::IPv4 then 28
when Address::IPv6 then 64
end
subnetlist << "#{k}/#{prefix} (#{hlist})"
}
return { 'subnets' => subnetlist.join(', ') }
end
# DESC: Addresses should avoid belonging ALL to the same network
# WARN: Test is wrong in case of IPv4 and IPv6
def chk_ip_all_same_net
# Ok not all hosts are on the same subnet
return true unless ((by_subnet.size == 1) &&
(by_subnet.values[0].size > 1))
# Create output data for failure
subnet = by_subnet.keys[0]
prefix = case subnet
when Address::IPv4 then 28
when Address::IPv6 then 64
end
return { 'subnet' => "#{subnet}/#{prefix}" }
end
# DESC: Addresses should avoid belonging ALL to the same AS
def chk_all_same_asn
asn = ip.collect { |addr|
aname = NResolv::DNS::Name::create(addr.to_dnsform +
'.asn.routeviews.org.')
txtres = @cm[nil].txt(aname, NResolv::DNS::Resource::IN::TXT)
txtres[0].txtdata[0]
}
asn.uniq!
asn.size > 1 ? true : { 'asn' => asn[0] }
end
end
##
## Check for nameserver!
##
class NameServers < Test
with_msgcat 'test/generic.%s'
#-- Checks --------------------------------------------------
# DESC: A domain should have a nameserver!
def chk_one_ns
@domain.ns.length >= 1
end
# DESC: A domain should have at least 2 nameservers
def chk_several_ns
@domain.ns.length >= 2
end
end
##
##
##
class Delegation < Test
with_msgcat 'test/generic.%s'
#-- Initialisation ------------------------------------------
def initialize(*args)
super(*args)
@querysize = const('delegation_query_size').to_i
end
#-- Checks --------------------------------------------------
def chk_delegation_udp512
dummyttl = 3600
msg = NResolv::DNS::Message::Answer::new
msg.question.add(NResolv::DNS::Name::Root,
NResolv::DNS::Resource::IN::NS)
@domain.ns.each { |ns, ips|
msg.authority.add(@domain.name,
NResolv::DNS::Resource::IN::NS::new(ns),
dummyttl)
}
excess = (msg.to_wire.size + @querysize-1) - 512
return true if excess <= 0
{ 'excess' => excess }
end
def chk_delegation_udp512_additional
dummyttl = 3600
msg = NResolv::DNS::Message::Answer::new
msg.question.add(NResolv::DNS::Name::Root,
NResolv::DNS::Resource::IN::NS)
@domain.ns.each { |ns, ips|
msg.answer.add(@domain.name,
NResolv::DNS::Resource::IN::NS::new(ns),
dummyttl)
if ns.in_domain?(@domain.name)
ips.each { |ip|
msg.additional.add(ns, ip.to_dnsressource, dummyttl) }
end
}
excess = (msg.to_wire.size + @querysize-1) - 512
return true if excess <= 0
{ 'excess' => excess }
end
end
end
|