mirror of
https://github.com/inspec/inspec
synced 2024-11-23 13:13:22 +00:00
2857d07151
The opening and closing mechanic varied between all the various resources. This changes them all to use a HEREDOC with a tilde to remove leading whitespace. This removes the need for the special method to trim the `#print_example` method from shell. Signed-off-by: Franklin Webber <franklin.webber@gmail.com>
92 lines
2.7 KiB
Ruby
92 lines
2.7 KiB
Ruby
# encoding: utf-8
|
|
# copyright:
|
|
|
|
require 'utils/parser'
|
|
require 'utils/file_reader'
|
|
|
|
module Inspec::Resources
|
|
class EtcFstab < Inspec.resource(1)
|
|
name 'etc_fstab'
|
|
supports platform: 'unix'
|
|
desc 'Use the etc_fstab InSpec audit resource to check the configuration of the etc/fstab file.'
|
|
example <<~EXAMPLE
|
|
nfs_systems = etc_fstab.nfs_file_systems.entries
|
|
nfs_systems.each do |file_system|
|
|
describe file_system do
|
|
its ('mount_options') { should include 'nosuid' }
|
|
its ('mount_options') { should include 'noexec' }
|
|
its ('mount_options') { should include 'sec=krb5:krb5i:krb5p }
|
|
end
|
|
end
|
|
|
|
describe etc_fstab do
|
|
its ('home_mount_options') { should include 'nosuid' }
|
|
end
|
|
EXAMPLE
|
|
|
|
attr_reader :params
|
|
|
|
include CommentParser
|
|
include FileReader
|
|
|
|
def initialize(fstab_path = nil)
|
|
@conf_path = fstab_path || '/etc/fstab'
|
|
@files_contents = {}
|
|
@content = nil
|
|
@params = nil
|
|
read_content
|
|
end
|
|
|
|
filter = FilterTable.create
|
|
filter.register_column(:device_name, field: 'device_name')
|
|
.register_column(:mount_point, field: 'mount_point')
|
|
.register_column(:file_system_type, field: 'file_system_type')
|
|
.register_column(:mount_options, field: 'mount_options')
|
|
.register_column(:dump_options, field: 'dump_options')
|
|
.register_column(:file_system_options, field: 'file_system_options')
|
|
.register_custom_matcher(:configured?) { |x| x.entries.any? }
|
|
|
|
filter.install_filter_methods_on_resource(self, :params)
|
|
|
|
def nfs_file_systems
|
|
where { file_system_type.match(/nfs/) }
|
|
end
|
|
|
|
def home_mount_options
|
|
return nil unless where { mount_point == '/home' }.configured?
|
|
where { mount_point == '/home' }.entries[0].mount_options
|
|
end
|
|
|
|
private
|
|
|
|
def read_content
|
|
@content = ''
|
|
@params = {}
|
|
@content = read_file(@conf_path)
|
|
@params = parse_conf(@content)
|
|
end
|
|
|
|
def parse_conf(content)
|
|
content.map do |line|
|
|
data, = parse_comment_line(line, comment_char: '#', standalone_comments: false)
|
|
parse_line(data) unless data == ''
|
|
end.compact
|
|
end
|
|
|
|
def parse_line(line)
|
|
attributes = line.split
|
|
{
|
|
'device_name' => attributes[0],
|
|
'mount_point' => attributes[1],
|
|
'file_system_type' => attributes[2],
|
|
'mount_options' => attributes[3].split(','),
|
|
'dump_options' => attributes[4].to_i,
|
|
'file_system_options' => attributes[5].to_i,
|
|
}
|
|
end
|
|
|
|
def read_file(conf_path = @conf_path)
|
|
read_file_content(conf_path).lines
|
|
end
|
|
end
|
|
end
|