# frozen_string_literal: true
module Facter
module Resolvers
class Ec2 < BaseResolver
init_resolver
EC2_METADATA_ROOT_URL = 'http://169.254.169.254/latest/meta-data/'
EC2_USERDATA_ROOT_URL = 'http://169.254.169.254/latest/user-data/'
EC2_SESSION_TIMEOUT = 5
class << self
private
def post_resolve(fact_name, _options)
log.debug('Querying Ec2 metadata')
@fact_list.fetch(fact_name) { read_facts(fact_name) }
end
def read_facts(fact_name)
@fact_list[:metadata] = {}
query_for_metadata(EC2_METADATA_ROOT_URL, @fact_list[:metadata])
@fact_list[:userdata] = get_data_from(EC2_USERDATA_ROOT_URL).strip
@fact_list[fact_name]
end
def query_for_metadata(url, container)
metadata = get_data_from(url)
metadata.each_line do |line|
next if line.empty?
http_path_component = build_path_component(line)
next if http_path_component == 'security-credentials/'
if http_path_component.end_with?('/')
child = {}
child[http_path_component] = query_for_metadata("#{url}#{http_path_component}", child)
child.reject! { |key, _info| key == http_path_component }
name = http_path_component.chomp('/')
container[name] = child
else
container[http_path_component] = get_data_from("#{url}#{http_path_component}").strip
end
end
end
def build_path_component(line)
array_match = /^(\d+)=.*$/.match(line)
array_match ? "#{array_match[1]}/" : line.strip
end
def get_data_from(url)
headers = {}
headers['X-aws-ec2-metadata-token'] = v2_token if v2_token
Facter::Util::Resolvers::Http.get_request(url, headers, { session: determine_session_timeout })
end
def determine_session_timeout
session_env = ENV['EC2_SESSION_TIMEOUT']
session_env ? session_env.to_i : EC2_SESSION_TIMEOUT
end
def v2_token
@v2_token ||= begin
token = Facter::Util::Resolvers::AwsToken.get
token == '' ? nil : token
end
end
end
end
end
end
Copyright 2K16 - 2K18 Indonesian Hacker Rulez