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-10-06 16:55:44 +00:00
# author: Dominik Richter
# author: Christoph Hartmann
2015-04-09 20:01:23 +00:00
# license: All rights reserved
require 'utils/simpleconfig'
2015-08-03 03:17:07 +00:00
require 'utils/find_files'
2015-08-01 07:21:32 +00:00
require 'resources/postgres'
2015-04-09 20:01:23 +00:00
2015-10-26 03:04:18 +00:00
class PostgresConf < Inspec . resource ( 1 )
2015-08-28 19:37:03 +00:00
name 'postgres_conf'
2015-11-27 13:02:38 +00:00
desc 'Use the postgres_conf InSpec audit resource to test the contents of the configuration file for PostgreSQL, typically located at /etc/postgresql/<version>/main/postgresql.conf or /var/lib/postgres/data/postgresql.conf, depending on the platform.'
example "
describe postgres_conf do
its ( 'max_connections' ) { should eq '5' }
end
"
2015-04-09 20:01:23 +00:00
2015-09-10 09:33:41 +00:00
include FindFiles
2015-10-26 15:50:49 +00:00
def initialize ( conf_path = nil )
@conf_path = conf_path || inspec . postgres . conf_path
2015-04-09 20:01:23 +00:00
@conf_dir = File . expand_path ( File . dirname @conf_path )
@files_contents = { }
@content = nil
@params = nil
read_content
end
def content
@content || = read_content
end
2015-09-04 07:59:30 +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
res
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-10-26 03:04:18 +00:00
if ! inspec . 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-10-26 03:04:18 +00:00
if raw_conf . empty? && inspec . 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 ]
2015-09-09 16:37:16 +00:00
until to_read . empty?
2015-04-09 20:01:23 +00:00
raw_conf = read_file ( to_read [ 0 ] )
@content += raw_conf
params = SimpleConfig . new ( raw_conf ) . params
@params . merge! ( params )
to_read = to_read . drop ( 1 )
# see if there is more config files to include
2015-09-09 17:15:51 +00:00
to_read += include_files ( params ) . find_all do | fp |
2015-04-09 20:01:23 +00:00
not @files_contents . key? fp
end
end
@content
end
2015-09-09 17:15:51 +00:00
def include_files ( params )
include_files = params [ 'include' ] || [ ]
include_files += params [ 'include_if_exists' ] || [ ]
dirs = params [ 'include_dir' ] || [ ]
dirs . each do | dir |
dir = File . join ( @conf_dir , dir ) if dir [ 0 ] != '/'
2015-09-10 09:33:41 +00:00
include_files += find_files ( dir , depth : 1 , type : 'file' )
2015-09-09 17:15:51 +00:00
end
include_files
end
2015-04-09 20:01:23 +00:00
def read_file ( path )
2015-10-26 03:04:18 +00:00
@files_contents [ path ] || = inspec . file ( path ) . content
2015-04-09 20:01:23 +00:00
end
2015-10-12 11:01:58 +00:00
def to_s
'PostgreSQL Configuration'
end
2015-04-09 20:01:23 +00:00
end