2015-04-09 20:01:23 +00:00
|
|
|
# encoding: utf-8
|
2015-07-15 13:15:18 +00:00
|
|
|
# copyright: 2015, Vulcano Security GmbH
|
2015-04-09 20:01:23 +00:00
|
|
|
# license: All rights reserved
|
|
|
|
|
|
|
|
require 'utils/parseconfig'
|
2015-08-03 03:11:01 +00:00
|
|
|
require 'utils/find_files'
|
2015-08-01 07:31:57 +00:00
|
|
|
require 'resources/mysql'
|
2015-04-09 20:01:23 +00:00
|
|
|
|
2015-06-22 13:51:44 +00:00
|
|
|
class MysqlConfEntry
|
2015-09-03 18:43:58 +00:00
|
|
|
def initialize(path, params)
|
2015-06-22 13:51:44 +00:00
|
|
|
@params = params
|
|
|
|
@path = path
|
|
|
|
end
|
2015-08-28 19:41:48 +00:00
|
|
|
|
2015-09-03 18:43:58 +00:00
|
|
|
def method_missing(name, *args)
|
2015-06-22 13:51:44 +00:00
|
|
|
k = name.to_s
|
|
|
|
res = @params[k]
|
|
|
|
return true if res.nil? && @params.key?(k)
|
|
|
|
@params[k]
|
|
|
|
end
|
2015-08-28 19:41:48 +00:00
|
|
|
|
2015-06-22 13:51:44 +00:00
|
|
|
def to_s
|
|
|
|
group = ' '
|
|
|
|
group = "[#{@path.join('][')}] " unless @path.nil? or @path.empty?
|
|
|
|
"MySQL Config entry [#{@path.join(' ')}]"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-08-28 19:41:48 +00:00
|
|
|
class MysqlConf < Vulcano.resource(1)
|
|
|
|
name 'mysql_conf'
|
2015-04-09 20:01:23 +00:00
|
|
|
|
2015-09-03 18:43:58 +00:00
|
|
|
def initialize(conf_path)
|
2015-04-09 20:01:23 +00:00
|
|
|
@conf_path = conf_path
|
|
|
|
@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-04-09 20:01:23 +00:00
|
|
|
@params || read_content
|
|
|
|
res = @params
|
|
|
|
opts.each do |opt|
|
|
|
|
res = res[opt] unless res.nil?
|
|
|
|
end
|
2015-06-22 13:51:44 +00:00
|
|
|
MysqlConfEntry.new(opts, res)
|
|
|
|
end
|
|
|
|
|
2015-09-03 18:43:58 +00:00
|
|
|
def method_missing(name)
|
2015-06-22 13:51:44 +00:00
|
|
|
@params || read_content
|
|
|
|
@params[name.to_s]
|
2015-04-09 20:01:23 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def read_content
|
2015-09-03 21:18:28 +00:00
|
|
|
@content = ''
|
2015-04-09 20:01:23 +00:00
|
|
|
@params = {}
|
2015-08-03 03:27:34 +00:00
|
|
|
|
|
|
|
# skip if the main configuration file doesn't exist
|
2015-08-30 02:33:15 +00:00
|
|
|
if !vulcano.file(@conf_path).file?
|
2015-08-03 03:27:34 +00:00
|
|
|
return skip_resource "Can't find file \"#{@conf_path}\""
|
|
|
|
end
|
2015-08-03 03:35:18 +00:00
|
|
|
raw_conf = read_file(@conf_path)
|
2015-08-30 02:33:15 +00:00
|
|
|
if raw_conf.empty? && vulcano.file(@conf_path).size > 0
|
2015-08-03 03:35:18 +00:00
|
|
|
return skip_resource("Can't read file \"#{@conf_path}\"")
|
|
|
|
end
|
2015-08-03 03:27:34 +00:00
|
|
|
|
2015-04-09 20:01:23 +00:00
|
|
|
to_read = [@conf_path]
|
|
|
|
while !to_read.empty?
|
|
|
|
raw_conf = read_file(to_read[0])
|
|
|
|
@content += raw_conf
|
2015-06-22 13:51:44 +00:00
|
|
|
|
2015-04-09 20:01:23 +00:00
|
|
|
params = ParseConfig.new(raw_conf).params
|
|
|
|
@params.merge!(params)
|
|
|
|
|
|
|
|
to_read = to_read.drop(1)
|
|
|
|
# see if there is more stuff to include
|
|
|
|
include_files = raw_conf.scan(/^!include\s+(.*)\s*/).flatten.compact
|
|
|
|
include_dirs = raw_conf.scan(/^!includedir\s+(.*)\s*/).flatten.compact
|
|
|
|
include_dirs.map do |include_dir|
|
2015-08-03 03:11:01 +00:00
|
|
|
include_files += FindFiles.find(include_dir, depth: 1, type: 'file')
|
2015-04-09 20:01:23 +00:00
|
|
|
end
|
|
|
|
to_read += include_files.find_all do |fp|
|
|
|
|
not @files_contents.key? fp
|
|
|
|
end
|
|
|
|
end
|
|
|
|
#
|
|
|
|
@content
|
|
|
|
end
|
|
|
|
|
|
|
|
def read_file(path)
|
2015-08-30 02:33:15 +00:00
|
|
|
@files_contents[path] ||= vulcano.file(path).content
|
2015-04-09 20:01:23 +00:00
|
|
|
end
|
|
|
|
end
|