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 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516
|
# $Id: config.rb,v 1.42 2010/06/07 08:51:25 chabannf Exp $
#
# CONTACT : zonecheck@nic.fr
# AUTHOR : Stephane D'Alu <sdalu@nic.fr>
#
# CREATED : 2002/07/19 07:28:13
# REVISION : $Revision: 1.42 $
# DATE : $Date: 2010/06/07 08:51:25 $
#
# CONTRIBUTORS: (see also CREDITS file)
#
#
# LICENSE : GPL v3
# 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 3 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
#
module ZoneCheck
require 'framework'
require 'ext/myxml'
require 'instructions'
##
## Hold the information about the zc.conf configuration file
##
class Config
Warning = 'w' # Warning severity
Fatal = 'f' # Fatal severity
Info = 'i' # Informational
Skip = 'S' # Don't run the test
Ok = 'o' # Reserved
Profile_Automatic = 'automatic'
Preset_Default = 'default'
E_PROFILE = 'profile' # XML Elements
E_CONFIG = 'config' # .
E_PRESET = 'preset' # .
E_PARAM = 'param' # .
E_CASE = 'case' # .
E_WHEN = 'when' # .
E_ELSE = 'else' # .
E_CONST = 'const' # .
E_MAP = 'map' # .
E_RULES = 'rules' # .
E_CHECK = 'check' # .
E_TEST = 'test' # .
A_NAME = 'name' # XML attributes
A_LONGDESC = 'longdesc' # .
A_VALUE = 'value' # .
A_ZONE = 'zone' # .
A_PROFILE = 'profile' # .
A_TEST = 'test' # .
A_CLASS = 'class' # .
A_SEVERITY = 'severity' # .
A_CATEGORY = 'category' # .
TestSeqOrder = [ CheckGeneric.family, CheckNameServer.family,
CheckNetworkAddress.family, CheckExtra.family, CheckDNSSEC.family ]
def self.severity2tag(severity)
case severity
when NilClass then 'ok'
when Config::Info then 'info'
when Config::Warning then 'warning'
when Config::Fatal then 'fatal'
else raise ArgumentError, "unknown severity: #{severity}"
end
end
#
# Create a full filename from a configfile
# XXX: unix specific '/'
def self.cfgfile(configfile)
if configfile =~ /^\//
then configfile
else $zc_config_dir + '/' + configfile
end
end
## Configuration error
## (unknown test, ordering problem, file not found)
##
class ConfigError < StandardError
end
##
## Syntax error, while parsing the file
##
class SyntaxError < ConfigError
attr_reader :path, :line
def initialize(string=nil, path=nil, line=nil)
super(string) if string
@path, @line = path, line
end
end
##
## Hold mapping information between a 'zone' and a 'profile'
##
class ZoneMapping
def initialize
@data = {}
end
# Store a new mapping
def []=(zone, profilename)
zone = Dnsruby::Name::create(zone)
$dbg.msg(DBG::CONFIG, "adding mapping: #{zone} -> #{profilename}")
@data[zone] = profilename
end
# Returns the best mapping for a zone (longuest match)
def [](zone)
depth, profilename = -1, nil
@data.each { |tld, name|
next unless zone.subdomain_of?(tld) && (depth < tld.labels.size)
depth, profilename = tld.labels.size, name
}
profilename
end
# Iterate on all the couple |zone, profile|
def each(&bloc)
@data.each &bloc
end
def include?(profilename)
@data.each {|zone,profile|
return true if profile == profilename
}
return false
end
end
##
## Store the different preset
##
class Presets
def initialize
@data = {}
end
# Store a new profile
def <<(preset)
$dbg.msg(DBG::CONFIG, "adding preset: #{preset.name}")
@data[preset.name] = preset
end
# Retrieve a profile by its name
def [](name)
@data[name]
end
# Iterate on |preset|
def each(&block)
@data.each_value &block
end
end
##
## Store the different profiles
##
class Profiles
def initialize
@data = {}
end
# Store a new profile
def <<(profile)
$dbg.msg(DBG::CONFIG, "adding profile: #{profile.name}")
@data[profile.name] = profile
end
# Retrieve a profile by its name
def [](name)
@data[name]
end
# Iterate on |profile|
def each(&block)
@data.each_value &block
end
end
##
## Store constants and allow inheritence from parent
##
class Constants
attr_reader :parent
def initialize(parent = nil)
@parent = parent
@data = {}
end
def []=(name, value)
$dbg.msg(DBG::CONFIG, "adding constant: #{name}")
@data[name] = value
end
def [](name)
@data[name] || (@parent ? @parent[name] : nil)
end
def fetch(name)
begin
@data.fetch(name)
rescue IndexError
if @parent
then @parent.fetch(name)
else raise IndexError,
"Unable to fetch ZoneCheck constant '#{name}'"
end
end
end
end
class Preset
attr_reader :name
def initialize(name, params)
@name = name
@data = params
end
def [](name)
@data[name]
end
end
class Profile
attr_reader :name, :rules, :constants, :longdesc
def validate(testmanager)
@rules.each_value { |rules| rules.validate(testmanager) }
end
def initialize(name, constants, rules, longdesc)
@name, @constants, @rules, @longdesc =
name, constants, rules, longdesc
end
def self.from_xmlprofile(xmlprofile, parent=nil)
profilename = xmlprofile[A_NAME]
longdesc = xmlprofile[A_LONGDESC]
constants = Constants::new(parent.constants)
rules = {}
$dbg.msg(DBG::CONFIG, "processing profile: #{profilename}")
xmlprofile.each(E_CONST) { |element|
name = element[A_NAME]
value = element[A_VALUE]
constants[name]=value.untaint
}
xmlprofile.each(E_RULES) { |element|
klass = element[A_CLASS]
rules[klass] = parse_block(element)
}
self::new(profilename, constants, rules, longdesc)
end
#-- [private] -----------------------------------------------
private
def self.parse_block(rule)
block = Instruction::Block::new
rule.each { |elt|
next unless elt.kind_of?(MyXML::Node::Element)
block << case elt.name
when E_CHECK then parse_check(elt)
when E_CASE then parse_case(elt)
end
}
block
end
def self.parse_check(xmlelt)
name, severity, category =
xmlelt[A_NAME], xmlelt[A_SEVERITY], xmlelt[A_CATEGORY]
block = Instruction::Block::new
xmlelt.each { |elt|
case elt.name
when E_CHECK
block << parse_check(elt)
end
}
#puts "Check #{name} : #{xmlelt.inspect}"
$dbg.msg(DBG::CONFIG, "creating instruction check: #{name}")
Instruction::Check::new(name, severity, category, block)
end
def self.parse_case(xmlelt)
when_stmt, else_stmt = {}, nil
testname = xmlelt[A_TEST]
xmlelt.each { |elt|
next unless elt.kind_of?(MyXML::Node::Element)
case elt.name
when E_WHEN
when_stmt[elt[A_VALUE]] = parse_block(elt)
when E_ELSE
else_stmt = parse_block(elt)
end
}
$dbg.msg(DBG::CONFIG, "creating instruction test: #{testname}")
Instruction::Switch::new(testname, when_stmt, else_stmt)
end
end
#
# Initializer
#
def initialize(test_manager)
@test_manager = test_manager
end
#
# Set the overriding configuration profile
#
def overrideconf(testlist)
rules = {}
# Order the check by class (or family)
testlist.each { |checkname|
# Ensure that the check is currently available
if ! @test_manager.has_check?(checkname)
raise ArgumentError,
$mc.get('config:check_unknown') % [ checkname ]
end
# Ordering
(rules[@test_manager.family(checkname)] ||= []) << checkname
}
# Create a fake configuration
fakeprofile = "<#{E_PROFILE} #{A_NAME}=\"override\" #{A_LONGDESC}=\"profile generated to only check a particular set of tests\">\n"
TestSeqOrder.each { |family|
next unless rules[family]
fakeprofile += "<#{E_RULES} #{A_CLASS}=\"#{family}\">\n"
rules[family].each { |checkname|
fakeprofile += "<#{E_CHECK} #{A_NAME}=\"#{checkname}\" #{A_SEVERITY}=\"#{Fatal}\" #{A_CATEGORY}=\"\"/>\n" }
fakeprofile += "</#{E_RULES}>\n"
}
fakeprofile += "</#{E_PROFILE}>\n"
fakeconf = "<?xml version='1.0' encoding='UTF-8'?>" + "\n"
fakeconf += '<!DOCTYPE config PUBLIC "-//ZoneCheck//DTD Config V1.0//EN" "config.dtd">' + "\n"
fakeconf += "<#{E_CONFIG}>" + fakeprofile + "</#{E_CONFIG}>"
# Register it as an override profile
xmlprofile = MyXML::Document::new(fakeconf).root.child(E_PROFILE)
@profile_override = Profile::from_xmlprofile(xmlprofile, self)
end
#
# Read the configuration file
#
def load(configfile)
clear
# Parse the configuration file
cfgfile = Config.cfgfile(configfile)
$dbg.msg(DBG::CONFIG, "loading main configuration: #{configfile}")
$dbg.msg(DBG::CONFIG, "reading file: #{cfgfile}")
io, main = nil, nil
begin
io = File::open(cfgfile)
main = MyXML::Document::new(io)
rescue SystemCallError # for the Errno::ENOENT error
raise ConfigError, $mc.get('problem_file') % configfile
rescue REXML::ParseException => e
raise SyntaxError::new(e.message, cfgfile, e.line)
ensure
io.close unless io.nil?
end
main.root.each(E_CONST) { |element|
name = element[A_NAME]
value = element[A_VALUE]
@constants[name] =value.untaint
}
main.root.each(E_MAP) { |element|
zone = element[A_ZONE]
profile = element[A_PROFILE]
@mapping[zone] = profile.untaint
}
main.root.each(E_PRESET) { |preset|
presetname = preset[A_NAME]
params = {}
preset.each(E_PARAM) { |param|
name = param[A_NAME]
value = param[A_VALUE]
params[name] = value
}
@presets << Preset::new(presetname, params)
}
Dir[ Config.cfgfile('*.profile')].each { |cfgfile|
filename = cfgfile.split('/')[-1]
profilename = filename.gsub(/\.profile$/, '')
next if @profiles[profilename]
#next unless @mapping.include?(profilename) || filename == configfile
$dbg.msg(DBG::CONFIG, "loading profile: #{filename}")
$dbg.msg(DBG::CONFIG, "reading file: #{cfgfile}")
io = nil
begin
io = File::open(cfgfile)
doc = MyXML::Document::new(io)
rescue SystemCallError # for the Errno::ENOENT error
raise ConfigError, $mc.get("problem_file") % cfgfile
rescue REXML::ParseException => e
raise SyntaxError::new(e.message, cfgfile, e.line)
end
doc.root.each(E_PROFILE) { |xmlprofile|
@profiles << Profile::from_xmlprofile(xmlprofile, self)
}
}
end
#
# Validate the loaded configuration file
# (ie: check the existence of all used methods chk_* and tst_*)
#
def validate(testmanager)
@profiles.each { |c| c.validate(testmanager) }
end
#
# Force use of a particular profile
#
def profilename=(name)
name = nil if name == Profile_Automatic
if !name.nil? && @profiles[name].nil?
raise ConfigError, $mc.get('config:unknown_profile') % name
end
@profilename = name
end
#
# Retrieve the bet profile for the zone
#
def profile(zone)
pfile = selected_profile = @profiles[@profilename || @mapping[zone]]
if pfile.nil? && zone == Dnsruby::Name::create(".")
pfile = selected_profile = @profiles["default"]
end
if @profile_override
# Ensure that the constants from the 'selected' profile
# will be used even in overrided profile
pfile = Profile::new(@profile_override.name,
selected_profile.constants,
@profile_override.rules,
@profile_override.longdesc)
end
pfile
end
attr_reader :constants, :profiles, :presets, :profilename
#-- [private] ---------------------------------------------------------
private
#
# Clear the current configuration
# (used in: initialize and load)
#
def clear
@constants = Constants::new
@profiles = Profiles::new
@presets = Presets::new
@mapping = ZoneMapping::new
@profile_override = nil
@profilename = nil
end
end
end
|