inspec/lib/resources/apache_conf.rb

114 lines
2.4 KiB
Ruby
Raw Normal View History

2015-07-27 21:24:46 +00:00
# encoding: utf-8
# copyright: 2015, Vulcano Security GmbH
2015-10-06 16:55:44 +00:00
# author: Dominik Richter
# author: Christoph Hartmann
2015-07-27 21:24:46 +00:00
# license: All rights reserved
require 'utils/simpleconfig'
require 'utils/find_files'
2015-07-27 21:24:46 +00:00
2015-10-26 03:04:18 +00:00
class ApacheConf < Inspec.resource(1)
name 'apache_conf'
2015-07-27 21:24:46 +00:00
include FindFiles
2015-09-03 18:43:58 +00:00
def initialize(conf_path)
2015-07-27 21:24:46 +00:00
@conf_path = conf_path
@conf_dir = File.dirname(@conf_path)
2015-07-27 21:24:46 +00:00
@files_contents = {}
@content = nil
@params = nil
read_content
end
def content
@content ||= read_content
end
2015-09-03 18:43:58 +00:00
def params(*opts)
2015-07-27 21:24:46 +00:00
@params || read_content
res = @params
opts.each do |opt|
res = res[opt] unless res.nil?
end
res
end
2015-09-03 18:43:58 +00:00
def filter_comments(data)
2015-09-03 18:35:23 +00:00
content = ''
2015-07-27 21:24:46 +00:00
data.each_line do |line|
if !line.match(/^\s*#/)
content << line
2015-07-27 21:24:46 +00:00
end
end
2015-09-03 18:45:37 +00:00
content
2015-07-27 21:24:46 +00:00
end
def read_content
2015-09-03 18:35:23 +00:00
@content = ''
2015-07-27 21:24:46 +00:00
@params = {}
# skip if the main configuration file doesn't exist
2015-10-26 03:04:18 +00:00
file = inspec.file(@conf_path)
if !file.file?
return skip_resource "Can't find file \"#{@conf_path}\""
end
raw_conf = file.content
if raw_conf.empty? && file.size > 0
return skip_resource("Can't read file \"#{@conf_path}\"")
end
2015-07-27 21:24:46 +00:00
to_read = [@conf_path]
until to_read.empty?
2015-07-27 21:24:46 +00:00
raw_conf = read_file(to_read[0])
@content += raw_conf
# parse include file parameters
2015-09-05 14:07:54 +00:00
params = SimpleConfig.new(
raw_conf,
2015-07-27 21:24:46 +00:00
assignment_re: /^\s*(\S+)\s+(.*)\s*$/,
multiple_values: true,
2015-07-27 21:24:46 +00:00
).params
@params.merge!(params)
to_read = to_read.drop(1)
to_read += include_files(params).find_all do |fp|
2015-07-27 21:24:46 +00:00
not @files_contents.key? fp
end
end
# fiter comments
@content = filter_comments @content
@content
end
def include_files(params)
# see if there is more config files to include
include_files = params['Include'] || []
include_files_optional = params['IncludeOptional'] || []
required = []
include_files.each do |f|
id = File.join(@conf_dir, f)
required.push(find_files(id, depth: 1, type: 'file'))
end
optional = []
include_files_optional.each do |f|
id = File.join(@conf_dir, f)
optional.push(find_files(id, depth: 1, type: 'file'))
end
required.flatten! + optional.flatten!
end
2015-07-27 21:24:46 +00:00
def read_file(path)
2015-10-26 03:04:18 +00:00
@files_contents[path] ||= inspec.file(path).content
2015-07-27 21:24:46 +00:00
end
def to_s
"Apache Config #{@conf_path}"
end
2015-07-27 21:24:46 +00:00
end