1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455
|
#--
#Copyright 2007 Nominet UK
#
#Licensed under the Apache License, Version 2.0 (the "License");
#you may not use this file except in compliance with the License.
#You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
#Unless required by applicable law or agreed to in writing, software
#distributed under the License is distributed on an "AS IS" BASIS,
#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#See the License for the specific language governing permissions and
#limitations under the License.
#++
module Dnsruby
#== Description
# The Config class determines the system configuration for DNS.
# In particular, it determines the nameserver to target queries to.
#
#
# It also specifies whether and how the search list and default
# domain should be applied to queries, according to the following
# algorithm :
#
#* If the name is absolute, then it is used as is.
#
#* If the name is not absolute, then :
#
# If apply_domain is true, and ndots is greater than the number
# of labels in the name, then the default domain is added to the name.
#
# If apply_search_list is true, then each member of the search list
# is appended to the name.
#
# The Config class has now been modified for lazy loading. Previously, the config
# was loaded when a Resolver was instantiated. Now, the config is only loaded if
# a query is performed (or a config parameter requested on) a Resolver which has
# not yet been configured.
class Config
#--
#@TODO@ Switches for :
#
# -- single socket for all packets
# -- single new socket for individual client queries (including retries and multiple nameservers)
#++
# The list of nameservers to query
def nameserver
if (!@configured)
parse_config
end
return @nameserver
end
# Should the search list be applied?
attr_accessor :apply_search_list
# Should the default domain be applied?
attr_accessor :apply_domain
# The minimum number of labels in the query name (if it is not absolute) before it is considered complete
def ndots
if (!@configured)
parse_config
end
return @ndots
end
# Set the config. Parameter can be :
#
# * A String containing the name of the config file to load
# e.g. /etc/resolv.conf
#
# * A hash with the following elements :
# nameserver (String)
# domain (String)
# search (String)
# ndots (Fixnum)
#
# This method should not normally be called by client code.
def set_config_info(config_info)
parse_config(config_info)
end
# Create a new Config with system default values
def initialize()
@mutex = Mutex.new
@configured = false
# parse_config
end
# Reset the config to default values
def Config.reset
c = Config.new
@configured = false
# c.parse_config
end
def parse_config(config_info=nil) #:nodoc: all
@mutex.synchronize {
ns = []
@nameserver = []
@domain, s, @search = nil
dom=""
nd = 1
@ndots = 1
@apply_search_list = true
@apply_domain = true
config_hash = Config.default_config_hash
case config_info
when nil
when String
config_hash.merge!(Config.parse_resolv_conf(config_info))
when Hash
config_hash.merge!(config_info.dup)
if String === config_hash[:nameserver]
config_hash[:nameserver] = [config_hash[:nameserver]]
end
if String === config_hash[:search]
config_hash[:search] = [config_hash[:search]]
end
else
raise ArgumentError.new("invalid resolv configuration: #{@config_info.inspect}")
end
ns = config_hash[:nameserver] if config_hash.include? :nameserver
s = config_hash[:search] if config_hash.include? :search
nd = config_hash[:ndots] if config_hash.include? :ndots
@apply_search_list = config_hash[:apply_search_list] if config_hash.include? :apply_search_list
@apply_domain= config_hash[:apply_domain] if config_hash.include? :apply_domain
dom = config_hash[:domain] if config_hash.include? :domain
if (!@configured)
send("nameserver=",ns)
end
@configured = true
send("search=",s)
send("ndots=",nd)
send("domain=",dom)
}
Dnsruby.log.info{to_s}
end
# Set the default domain
def domain=(dom)
# @configured = true
if (dom)
if !dom.kind_of?(String)
raise ArgumentError.new("invalid domain config: #{@domain.inspect}")
end
@domain = Name::split(dom)
else
@domain=nil
end
end
# Set ndots
def ndots=(nd)
@configured = true
@ndots=nd
if !@ndots.kind_of?(Integer)
raise ArgumentError.new("invalid ndots config: #{@ndots.inspect}")
end
end
# Set the default search path
def search=(s)
@configured = true
@search=s
if @search
if @search.class == Array
@search = @search.map {|arg| Name::split(arg) }
else
raise ArgumentError.new("invalid search config: search must be an array!")
end
else
hostname = Socket.gethostname
if /\./ =~ hostname
@search = [Name.split($')]
else
@search = [[]]
end
end
if !@search.kind_of?(Array) ||
# !@search.all? {|ls| ls.all? {|l| Label::Str === l } }
!@search.all? {|ls| ls.all? {|l| Name::Label === l } }
raise ArgumentError.new("invalid search config: #{@search.inspect}")
end
end
def check_ns(ns) #:nodoc: all
if !ns.kind_of?(Array) ||
!ns.all? {|n| (Name === n || String === n || IPv4 === n || IPv6 === n)}
raise ArgumentError.new("invalid nameserver config: #{ns.inspect}")
end
ns.each {|n|
if (String ===n)
# Make sure we can make a Name or an address from it
begin
a = IPv4.create(n)
rescue ArgumentError
begin
a = IPv6.create(n)
rescue ArgumentError
begin
a = Name.create(n)
rescue ArgumentError
raise ArgumentError.new("Can't interpret #{n} as IPv4, IPv6 or Name")
end
end
end
end
}
end
# Add a nameserver to the list of nameservers.
#
# Can take either a single String or an array of Strings.
# The new nameservers are added at a higher priority.
def add_nameserver(ns)
@configured = true
if (ns.kind_of?String)
ns=[ns]
end
check_ns(ns)
ns.reverse_each do |n|
if (!@nameserver.include?(n))
self.nameserver=[n]+@nameserver
end
end
end
# Set the config to point to a single nameserver
def nameserver=(ns)
@configured = true
check_ns(ns)
# @nameserver = ['0.0.0.0'] if (@nameserver.class != Array || @nameserver.empty?)
# Now go through and ensure that all ns point to IP addresses, not domain names
@nameserver=ns
Dnsruby.log.debug{"Nameservers = #{@nameserver.join(", ")}"}
end
def Config.resolve_server(ns) #:nodoc: all
# Sanity check server
# If it's an IP address, then use that for server
# If it's a name, then we'll need to resolve it first
server=ns
if (Name === ns)
ns = ns.to_s
end
begin
addr = IPv4.create(ns)
server = ns
rescue Exception
begin
addr=IPv6.create(ns)
server = ns
rescue Exception
begin
# try to resolve server to address
if ns == "localhost"
server = "127.0.0.1"
else
# Use Dnsruby to resolve the servers
# First, try the default resolvers
resolver = Resolver.new
found = false
begin
ret = resolver.query(ns)
ret.answer.each {|rr|
if ([Types::A, Types::AAAA].include?rr.type)
addr = rr.address.to_s
server = addr
found = true
end
}
rescue Exception
end
if (!found)
# That didn't work - try recursing from the root
recursor = Recursor.new
ret = recursor.query(ns)
ret.answer.each {|rr|
if ([Types::A, Types::AAAA].include?rr.type)
addr = rr.address.to_s
server = addr
end
}
if (!found)
raise ArgumentError.new("Recursor can't locate #{server}")
end
end
end
rescue Exception => e
Dnsruby.log.error{"Can't make sense of nameserver : #{server}, exception : #{e}"}
# raise ArgumentError.new("Can't make sense of nameserver : #{server}, exception : #{e}")
return nil
end
end
end
return server
end
def Config.parse_resolv_conf(filename) #:nodoc: all
nameserver = []
search = nil
domain = nil
ndots = 1
open(filename) {|f|
f.each {|line|
line.sub!(/[#;].*/, '')
keyword, *args = line.split(/\s+/)
args.each { |arg|
arg.untaint
}
next unless keyword
case keyword
when 'nameserver'
nameserver += args
when 'domain'
next if args.empty?
domain = args[0]
# if search == nil
# search = []
# end
# search.push(args[0])
when 'search'
next if args.empty?
if search == nil
search = []
end
args.each {|a| search.push(a)}
when 'options'
args.each {|arg|
case arg
when /\Andots:(\d+)\z/
ndots = $1.to_i
end
}
end
}
}
return { :nameserver => nameserver, :domain => domain, :search => search, :ndots => ndots }
end
def inspect #:nodoc: all
to_s
end
def to_s
if (!@configured)
parse_config
end
ret = "Config - nameservers : "
@nameserver.each {|n| ret += n.to_s + ", "}
domain_string="empty"
if (@domain!=nil)
domain_string=@domain.to_s
end
ret += " domain : #{domain_string}, search : "
search.each {|s| ret += s + ", " }
ret += " ndots : #{@ndots}"
return ret
end
def Config.default_config_hash(filename="/etc/resolv.conf") #:nodoc: all
config_hash={}
if File.exist? filename
config_hash = Config.parse_resolv_conf(filename)
else
if (/java/ =~ RUBY_PLATFORM && !(filename=~/:/))
# Problem with paths and Windows on JRuby - see if we can munge the drive...
wd = Dir.getwd
drive = wd.split(':')[0]
if (drive.length==1)
file = drive << ":" << filename
if File.exist? file
config_hash = Config.parse_resolv_conf(file)
end
end
elsif /mswin32|cygwin|mingw|bccwin/ =~ RUBY_PLATFORM
# @TODO@ Need to get windows domain sorted
search, nameserver = Win32::Resolv.get_resolv_info
# config_hash[:domain] = domain if domain
config_hash[:nameserver] = nameserver if nameserver
config_hash[:search] = [search].flatten if search
end
end
config_hash
end
# Return the search path
def search
if (!@configured)
parse_config
end
search = []
@search.each do |s|
search.push(Name.new(s).to_s)
end
return search
end
# Return the default domain
def domain
if (!@configured)
parse_config
end
if (@domain==nil)
return nil
end
return Name.create(@domain).to_s
end
def single? #:nodoc: all
if @nameserver.length == 1
return @nameserver[0]
else
return nil
end
end
def get_ready
if (!@configured)
parse_config
end
end
def generate_candidates(name) #:nodoc: all
if !@configured
parse_config
end
candidates = []
name = Name.create(name)
if name.absolute?
candidates = [name]
else
if (@apply_domain)
if @ndots > name.length - 1
candidates.push(Name.create(name.to_a+@domain))
end
end
if (!@apply_search_list)
candidates.push(Name.create(name.to_a))
else
if @ndots <= name.length - 1
candidates.push(Name.create(name.to_a))
end
candidates.concat(@search.map {|domain| Name.create(name.to_a + domain)})
if (name.length == 1)
candidates.concat([Name.create(name.to_a)])
end
end
end
return candidates
end
end
end
|