Class: Bolt::Applicator

Inherits:
Object
  • Object
show all
Defined in:
lib/bolt/applicator.rb

Instance Method Summary collapse

Constructor Details

#initialize(inventory, executor, modulepath, plugin_dirs, pdb_client, hiera_config, max_compiles) ⇒ Applicator

Returns a new instance of Applicator.



16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'lib/bolt/applicator.rb', line 16

def initialize(inventory, executor, modulepath, plugin_dirs, pdb_client, hiera_config, max_compiles)
  # lazy-load expensive gem code
  require 'concurrent'

  @inventory = inventory
  @executor = executor
  @modulepath = modulepath
  @plugin_dirs = plugin_dirs
  @pdb_client = pdb_client
  @hiera_config = hiera_config ? validate_hiera_config(hiera_config) : nil

  @pool = Concurrent::ThreadPoolExecutor.new(max_threads: max_compiles)
  @logger = Logging.logger[self]
  @plugin_tarball = Concurrent::Delay.new do
    build_plugin_tarball do |mod|
      search_dirs = []
      search_dirs << mod.plugins if mod.plugins?
      search_dirs << mod.pluginfacts if mod.pluginfacts?
      search_dirs << mod.files if mod.files?
      search_dirs
    end
  end
end

Instance Method Details

#apply(args, apply_body, scope) ⇒ Object

Raises:

  • (ArgumentError)


188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
# File 'lib/bolt/applicator.rb', line 188

def apply(args, apply_body, scope)
  raise(ArgumentError, 'apply requires a TargetSpec') if args.empty?
  type0 = Puppet.lookup(:pal_script_compiler).type('TargetSpec')
  Puppet::Pal.assert_type(type0, args[0], 'apply targets')

  @executor.report_function_call('apply')

  options = {}
  if args.count > 1
    type1 = Puppet.lookup(:pal_script_compiler).type('Hash[String, Data]')
    Puppet::Pal.assert_type(type1, args[1], 'apply options')
    options = args[1].map { |k, v| [k.sub(/^_/, '').to_sym, v] }.to_h
  end

  plan_vars = scope.to_hash(true, true)
  %w[trusted server_facts facts].each { |k| plan_vars.delete(k) }

  targets = @inventory.get_targets(args[0])

  apply_ast(apply_body, targets, options, plan_vars)
end

#apply_ast(raw_ast, targets, options, plan_vars = {}) ⇒ Object



222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
# File 'lib/bolt/applicator.rb', line 222

def apply_ast(raw_ast, targets, options, plan_vars = {})
  ast = Puppet::Pops::Serialization::ToDataConverter.convert(raw_ast, rich_data: true, symbol_to_string: true)

  # rubocop:disable Style/GlobalVars
  if $future
    # Serialize as pcore for *Result* objects
    plan_vars = Puppet::Pops::Serialization::ToDataConverter.convert(plan_vars,
                                                                     rich_data: true,
                                                                     symbol_as_string: true,
                                                                     type_by_reference: true,
                                                                     local_reference: false)
    scope = {
      code_ast: ast,
      modulepath: @modulepath,
      pdb_config: @pdb_client.config.to_hash,
      hiera_config: @hiera_config,
      plan_vars: plan_vars,
      # This data isn't available on the target config hash
      config: @inventory.config.transport_data_get
    }
  end
  # rubocop:enable Style/GlobalVars

  r = @executor.log_action('apply catalog', targets) do
    futures = targets.map do |target|
      Concurrent::Future.execute(executor: @pool) do
        @executor.with_node_logging("Compiling manifest block", [target]) do
          # rubocop:disable Style/GlobalVars
          $future ? future_compile(target, scope) : compile(target, ast, plan_vars)
          # rubocop:enable Style/GlobalVars
        end
      end
    end

    result_promises = targets.zip(futures).flat_map do |target, future|
      @executor.queue_execute([target]) do |transport, batch|
        @executor.with_node_logging("Applying manifest block", batch) do
          catalog = future.value
          raise future.reason if future.rejected?

          arguments = {
            'catalog' => Puppet::Pops::Types::PSensitiveType::Sensitive.new(catalog),
            'plugins' => Puppet::Pops::Types::PSensitiveType::Sensitive.new(plugins),
            '_task' => catalog_apply_task.name,
            '_noop' => options[:noop]
          }

          callback = proc do |event|
            if event[:type] == :node_result
              event = event.merge(result: ApplyResult.from_task_result(event[:result]))
            end
            @executor.publish_event(event)
          end
          # Respect the run_as default set on the executor
          options[:run_as] = @executor.run_as if @executor.run_as && !options.key?(:run_as)

          results = transport.batch_task(batch, catalog_apply_task, arguments, options, &callback)
          Array(results).map { |result| ApplyResult.from_task_result(result) }
        end
      end
    end

    @executor.await_results(result_promises)
  end

  # Allow for report to exclude event metrics (apply_result doesn't require it to be present)
  resource_counts = r.ok_set.map { |result| result.event_metrics&.fetch('total') }.compact
  @executor.report_apply(count_statements(raw_ast), resource_counts)

  if !r.ok && !options[:catch_errors]
    raise Bolt::ApplyFailure, r
  end
  r
end

#build_plugin_tarballObject



302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
# File 'lib/bolt/applicator.rb', line 302

def build_plugin_tarball
  # lazy-load expensive gem code
  require 'minitar'
  require 'zlib'

  start_time = Time.now
  sio = StringIO.new
  output = Minitar::Output.new(Zlib::GzipWriter.new(sio))

  Puppet.lookup(:current_environment).override_with(modulepath: @plugin_dirs).modules.each do |mod|
    search_dirs = yield mod

    parent = Pathname.new(mod.path).parent
    files = Find.find(*search_dirs).select { |file| File.file?(file) }

    files.each do |file|
      tar_path = Pathname.new(file).relative_path_from(parent)
      @logger.debug("Packing plugin #{file} to #{tar_path}")
      stat = File.stat(file)
      content = File.binread(file)
      output.tar.add_file_simple(
        tar_path.to_s,
        data: content,
        size: content.size,
        mode: stat.mode & 0o777,
        mtime: stat.mtime
      )
    end
  end

  duration = Time.now - start_time
  @logger.debug("Packed plugins in #{duration * 1000} ms")

  output.close
  Base64.encode64(sio.string)
ensure
  output&.close
end

#catalog_apply_taskObject



57
58
59
60
61
62
63
64
65
66
67
68
# File 'lib/bolt/applicator.rb', line 57

def catalog_apply_task
  @catalog_apply_task ||= begin
                            path = File.join(libexec, 'apply_catalog.rb')
                            file = { 'name' => 'apply_catalog.rb', 'path' => path }
                             = { 'supports_noop' => true, 'input_method' => 'stdin',
                                         'implementations' => [
                                           { 'name' => 'apply_catalog.rb' },
                                           { 'name' => 'apply_catalog.rb', 'remote' => true }
                                         ] }
                            Bolt::Task.new(name: 'apply_helpers::apply_catalog', files: [file], metadata: )
                          end
end

#compile(target, ast, plan_vars) ⇒ Object

Raises:



84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# File 'lib/bolt/applicator.rb', line 84

def compile(target, ast, plan_vars)
  trusted = Puppet::Context::TrustedInformation.new('local', target.name, {})
  facts = @inventory.facts(target).merge('bolt' => true)

  catalog_input = {
    code_ast: ast,
    modulepath: @modulepath,
    pdb_config: @pdb_client.config.to_hash,
    hiera_config: @hiera_config,
    target: {
      name: target.name,
      facts: facts,
      variables: @inventory.vars(target).merge(plan_vars),
      trusted: trusted.to_h
    },
    inventory: @inventory.data_hash
  }

  bolt_catalog_exe = File.join(libexec, 'bolt_catalog')
  old_path = ENV['PATH']
  ENV['PATH'] = "#{RbConfig::CONFIG['bindir']}#{File::PATH_SEPARATOR}#{old_path}"
  out, err, stat = Open3.capture3('ruby', bolt_catalog_exe, 'compile', stdin_data: catalog_input.to_json)
  ENV['PATH'] = old_path

  # stderr may contain formatted logs from Puppet's logger or other errors.
  # Print them in order, but handle them separately. Anything not a formatted log is assumed
  # to be an error message.
  logs = err.lines.map do |l|
    begin
      JSON.parse(l)
    rescue StandardError
      l
    end
  end
  logs.each do |log|
    if log.is_a?(String)
      @logger.error(log.chomp)
    else
      log.map { |k, v| [k.to_sym, v] }.each do |level, msg|
        bolt_level = Bolt::Util::PuppetLogLevel::MAPPING[level]
        @logger.send(bolt_level, "#{target.name}: #{msg.chomp}")
      end
    end
  end

  raise(ApplyError, target.name) unless stat.success?
  JSON.parse(out)
end

#count_statements(ast) ⇒ Object

Count the number of top-level statements in the AST.



211
212
213
214
215
216
217
218
219
220
# File 'lib/bolt/applicator.rb', line 211

def count_statements(ast)
  case ast
  when Puppet::Pops::Model::Program
    count_statements(ast.body)
  when Puppet::Pops::Model::BlockExpression
    ast.statements.count
  else
    1
  end
end

#custom_facts_taskObject



44
45
46
47
48
49
50
51
52
53
54
55
# File 'lib/bolt/applicator.rb', line 44

def custom_facts_task
  @custom_facts_task ||= begin
    path = File.join(libexec, 'custom_facts.rb')
    file = { 'name' => 'custom_facts.rb', 'path' => path }
     = { 'supports_noop' => true, 'input_method' => 'stdin',
                 'implementations' => [
                   { 'name' => 'custom_facts.rb' },
                   { 'name' => 'custom_facts.rb', 'remote' => true }
                 ] }
    Bolt::Task.new(name: 'apply_helpers::custom_facts', files: [file], metadata: )
  end
end

#future_compile(target, catalog_input) ⇒ Object

Raises:



133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
# File 'lib/bolt/applicator.rb', line 133

def future_compile(target, catalog_input)
  trusted = Puppet::Context::TrustedInformation.new('local', target.name, {})
  catalog_input[:target] = {
    name: target.name,
    facts: @inventory.facts(target).merge('bolt' => true),
    variables: @inventory.vars(target),
    trusted: trusted.to_h
  }
  # rubocop:disable Style/GlobalVars
  catalog_input[:future] = $future
  # rubocop:enable Style/GlobalVars

  bolt_catalog_exe = File.join(libexec, 'bolt_catalog')
  old_path = ENV['PATH']
  ENV['PATH'] = "#{RbConfig::CONFIG['bindir']}#{File::PATH_SEPARATOR}#{old_path}"
  out, err, stat = Open3.capture3('ruby', bolt_catalog_exe, 'compile', stdin_data: catalog_input.to_json)
  ENV['PATH'] = old_path

  # stderr may contain formatted logs from Puppet's logger or other errors.
  # Print them in order, but handle them separately. Anything not a formatted log is assumed
  # to be an error message.
  logs = err.lines.map do |l|
    begin
      JSON.parse(l)
    rescue StandardError
      l
    end
  end
  logs.each do |log|
    if log.is_a?(String)
      @logger.error(log.chomp)
    else
      log.map { |k, v| [k.to_sym, v] }.each do |level, msg|
        bolt_level = Bolt::Util::PuppetLogLevel::MAPPING[level]
        @logger.send(bolt_level, "#{target.name}: #{msg.chomp}")
      end
    end
  end

  raise(ApplyError, target.name) unless stat.success?
  JSON.parse(out)
end

#pluginsObject



297
298
299
300
# File 'lib/bolt/applicator.rb', line 297

def plugins
  @plugin_tarball.value ||
    raise(Bolt::Error.new("Failed to pack module plugins: #{@plugin_tarball.reason}", 'bolt/plugin-error'))
end

#query_resources_taskObject



70
71
72
73
74
75
76
77
78
79
80
81
82
# File 'lib/bolt/applicator.rb', line 70

def query_resources_task
  @query_resources_task ||= begin
    path = File.join(libexec, 'query_resources.rb')
    file = { 'name' => 'query_resources.rb', 'path' => path }
     = { 'supports_noop' => true, 'input_method' => 'stdin',
                 'implementations' => [
                   { 'name' => 'query_resources.rb' },
                   { 'name' => 'query_resources.rb', 'remote' => true }
                 ] }

    Bolt::Task.new(name: 'apply_helpers::query_resources', files: [file], metadata: )
  end
end

#validate_hiera_config(hiera_config) ⇒ Object



176
177
178
179
180
181
182
183
184
185
186
# File 'lib/bolt/applicator.rb', line 176

def validate_hiera_config(hiera_config)
  if File.exist?(File.path(hiera_config))
    data = File.open(File.path(hiera_config), "r:UTF-8") { |f| YAML.safe_load(f.read, [Symbol]) }
    if data.nil?
      return nil
    elsif data['version'] != 5
      raise Bolt::ParseError, "Hiera v5 is required, found v#{data['version'] || 3} in #{hiera_config}"
    end
    hiera_config
  end
end