2015-08-01 07:21:32 +00:00
# encoding: utf-8
# copyright: 2015, Vulcano Security GmbH
2015-10-06 16:55:44 +00:00
# author: Dominik Richter
# author: Christoph Hartmann
2017-05-04 00:00:07 +00:00
# author: Aaron Lippold
2015-08-01 07:21:32 +00:00
2016-03-08 18:06:55 +00:00
module Inspec::Resources
class Postgres < Inspec . resource ( 1 )
name 'postgres'
2015-08-28 19:37:03 +00:00
2017-05-04 00:00:07 +00:00
attr_reader :service , :data_dir , :conf_dir , :conf_path , :version , :cluster
2016-03-08 18:06:55 +00:00
def initialize
2017-06-26 13:16:09 +00:00
if inspec . os . debian?
2016-08-10 11:25:03 +00:00
#
# https://wiki.debian.org/PostgreSql
#
# Debian allows multiple versions of postgresql to be
# installed as well as multiple "clusters" to be configured.
#
2017-05-04 00:00:07 +00:00
@version = version_from_psql || version_from_dir ( '/etc/postgresql' )
@cluster = cluster_from_dir ( " /etc/postgresql/ #{ @version } " )
@conf_dir = " /etc/postgresql/ #{ @version } / #{ @cluster } "
@data_dir = " /var/lib/postgresql/ #{ @version } / #{ @cluster } "
2016-03-08 18:06:55 +00:00
else
2017-05-04 00:00:07 +00:00
@version = version_from_psql
if @version . nil?
if inspec . directory ( '/var/lib/pgsql/data' ) . exist?
warn ' Unable to determine PostgreSQL version : psql did not return
a version number and unversioned data directories were found . '
nil
else
2017-06-26 16:23:39 +00:00
@version = version_from_dir ( '/var/lib/pgsql' )
2017-05-04 00:00:07 +00:00
end
end
@data_dir = locate_data_dir_location_by_version ( @version )
2016-03-08 18:06:55 +00:00
end
2016-08-03 17:18:24 +00:00
2016-08-10 11:25:03 +00:00
@service = 'postgresql'
2017-05-04 00:00:07 +00:00
@service += " - #{ @version } " if @version . to_f > = 9 . 4
2016-08-10 11:25:03 +00:00
@conf_dir || = @data_dir
2017-06-26 13:16:09 +00:00
2016-08-10 11:25:03 +00:00
verify_dirs
2017-06-26 13:16:09 +00:00
if ! @version . nil? && ! @conf_dir . empty?
@conf_path = File . join @conf_dir , 'postgresql.conf'
else
@conf_path = nil
return skip_resource 'Seems like PostgreSQL is not installed on your system'
end
2015-08-01 07:21:32 +00:00
end
2015-10-12 11:01:58 +00:00
2016-03-08 18:06:55 +00:00
def to_s
'PostgreSQL'
end
2016-08-10 11:25:03 +00:00
private
def verify_dirs
if ! inspec . directory ( @conf_dir ) . exist?
warn " Default postgresql configuration directory: #{ @conf_dir } does not exist. Postgresql may not be installed or we've misidentified the configuration directory. "
end
if ! inspec . directory ( @data_dir ) . exist?
warn " Default postgresql data directory: #{ @data_dir } does not exist. Postgresql may not be installed or we've misidentified the data directory. "
end
end
2017-05-04 00:00:07 +00:00
def version_from_psql
return unless inspec . command ( 'psql' ) . exist?
inspec . command ( " psql --version | awk '{ print $NF }' | awk -F. '{ print $1 \" . \" $2 }' " ) . stdout . strip
end
def locate_data_dir_location_by_version ( ver = @version )
data_dir_loc = nil
dir_list = [
" /var/lib/pgsql/ #{ ver } /data " ,
'/var/lib/pgsql/data' ,
'/var/lib/postgres/data' ,
'/var/lib/postgresql/data' ,
]
dir_list . each do | dir |
2017-06-19 12:28:35 +00:00
data_dir_loc = dir if inspec . directory ( dir ) . exist?
2017-05-04 00:00:07 +00:00
break
end
if data_dir_loc . nil?
warn ' Unable to find the PostgreSQL data_dir in expected location ( s ) , please
execute " psql -t -A -p <port> -h <host> -c " show hba_file " ; " as the PostgreSQL
2017-10-17 15:30:35 +00:00
DBA to find the non - standard data_dir location . '
2017-05-04 00:00:07 +00:00
end
data_dir_loc
end
2016-08-10 11:25:03 +00:00
def version_from_dir ( dir )
dirs = inspec . command ( " ls -d #{ dir } /*/ " ) . stdout
entries = dirs . lines . count
case entries
when 0
warn " Could not determine version of installed postgresql by inspecting #{ dir } "
nil
when 1
warn " Using #{ dirs } : #{ dir_to_version ( dirs ) } "
dir_to_version ( dirs )
else
warn " Multiple versions of postgresql installed or incorrect base dir #{ dir } "
first = dir_to_version ( dirs . lines . first )
warn " Using the first version found: #{ first } "
first
end
end
def dir_to_version ( dir )
dir . chomp . split ( '/' ) . last
end
def cluster_from_dir ( dir )
# Main is the default cluster name on debian use it if it
# exists.
if inspec . directory ( " #{ dir } /main " ) . exist?
'main'
else
dirs = inspec . command ( " ls -d #{ dir } /*/ " ) . stdout . lines
first = dirs . first . chomp . split ( '/' ) . last
if dirs . count > 1
warn " Multiple postgresql clusters configured or incorrect base dir #{ dir } "
warn " Using the first directory found: #{ first } "
end
first
end
end
2015-10-12 11:01:58 +00:00
end
2015-08-01 07:21:32 +00:00
end