Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(FACT-2717) Block external facts #1998

Merged
merged 1 commit into from
Jul 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ AllCops:
TargetRubyVersion: 2.3
Exclude:
- acceptance/**/*
- vendor/**/*

require:
- rubocop-performance
Expand Down
37 changes: 37 additions & 0 deletions acceptance/tests/external_facts/block_external_facts.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
test_name 'custom facts included in blocklist will not be displayed' do
tag 'risk:high'

require 'facter/acceptance/user_fact_utils'
extend Facter::Acceptance::UserFactUtils

agents.each do |agent|
ext = get_external_fact_script_extension(agent['platform'])
facts_dir = agent.tmpdir('facts.d')
fact_file = File.join(facts_dir, "external_fact_1#{ext}")
content = external_fact_content(agent['platform'], 'external_fact', 'external_value')

config_dir = agent.tmpdir("config_dir")
config_file = File.join(config_dir, "facter.conf")

teardown do
agent.rm_rf(facts_dir)
end

create_remote_file(agent, config_file, <<-FILE)
facts : { blocklist : [ "external_fact_1#{ext}" ] }
FILE

step "Agent #{agent}: setup default external facts directory and fact" do
agent.mkdir_p(facts_dir)
create_remote_file(agent, fact_file, content)
agent.chmod('+x', fact_file)
end

step "agent #{agent}: resolve the external fact" do
on(agent, facter("--debug --external-dir \"#{facts_dir}\" --config \"#{config_file}\"")) do |facter_output|
assert_match(/External fact file external_fact_1#{ext} blocked./, facter_output.stderr.chomp, 'Expected to block the external_fact')
assert_no_match(/external_fact => external_value/, stdout, 'Expected fact not to match fact')
end
end
end
end
10 changes: 10 additions & 0 deletions lib/facter/custom_facts/util/directory_loader.rb
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ def load_directory_entries(_collection)
facts = []
entries.each do |file|
basename = File.basename(file)
next if file_blocked?(basename)
BogdanIrimie marked this conversation as resolved.
Show resolved Hide resolved

if facts.find { |f| f.name == basename } && cm.group_cached?(basename)
Facter.log_exception(Exception.new("Caching is enabled for group \"#{basename}\" while "\
'there are at least two external facts files with the same filename'))
Expand Down Expand Up @@ -107,6 +109,14 @@ def entries
def should_parse?(file)
File.basename(file) !~ /^\./
end

def file_blocked?(file)
if Facter::Options[:blocked_facts].include? file
Facter.debug("External fact file #{file} blocked.")
return true
end
false
end
end
end
end
15 changes: 15 additions & 0 deletions spec/custom_facts/util/directory_loader_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,21 @@
expect(collection.value('f1')).to eq 'higher_weight_fact'
end
end

context 'when blocking external facts' do
before do
Facter::Options[:blocked_facts] = ['data.yaml']
end

it 'is not loading blocked file' do
data = { 'f1' => 'one', 'f2' => 'two' }
write_to_file('data.yaml', YAML.dump(data))

dir_loader.load(collection)

expect(collection_double).not_to have_received(:add)
end
end
end

def write_to_file(file_name, to_write)
Expand Down