cloudamatic/mu

View on GitHub
cookbooks/firewall/libraries/provider_firewall_ufw.rb

Summary

Maintainability
A
55 mins
Test Coverage
#
# Author:: Seth Chisamore (<schisamo@opscode.com>)
# Cookbook:: firewall
# Resource:: default
#
# Copyright:: 2011-2016, Chef Software, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
class Chef
  class Provider::FirewallUfw < Chef::Provider::LWRPBase
    include FirewallCookbook::Helpers::Ufw

    provides :firewall, os: 'linux', platform_family: %w(debian) do |node|
      !(node['firewall'] && node['firewall']['ubuntu_iptables'])
    end

    def whyrun_supported?
      false
    end

    def action_install
      return if disabled?(new_resource)

      pkg_ufw = package 'ufw' do
        action :nothing
      end
      pkg_ufw.run_action(:install)
      new_resource.updated_by_last_action(true) if pkg_ufw.updated_by_last_action?

      defaults_ufw = template '/etc/default/ufw' do
        action :nothing
        owner 'root'
        group 'root'
        mode '0644'
        source 'ufw/default.erb'
        cookbook 'firewall'
      end
      defaults_ufw.run_action(:create)
      new_resource.updated_by_last_action(true) if defaults_ufw.updated_by_last_action?

      return if ::File.exist?(ufw_rules_filename)

      ufw_file = lookup_or_create_rulesfile
      ufw_file.content '# created by chef to allow service to start'
      ufw_file.run_action(:create)

      new_resource.updated_by_last_action(true) if ufw_file.updated_by_last_action?
    end

    def action_restart
      return if disabled?(new_resource)

      # ensure it's initialized
      new_resource.rules({}) unless new_resource.rules
      new_resource.rules['ufw'] = {} unless new_resource.rules['ufw']

      # this populates the hash of rules from firewall_rule resources
      firewall_rules = Chef.run_context.resource_collection.select { |item| item.is_a?(Chef::Resource::FirewallRule) }
      firewall_rules.each do |firewall_rule|
        next unless firewall_rule.action.include?(:create) && !firewall_rule.should_skip?(:create)

        # build rules to apply with weight
        k = build_rule(firewall_rule)
        v = firewall_rule.position

        # unless we're adding them for the first time.... bail out.
        unless new_resource.rules['ufw'].key?(k) && new_resource.rules['ufw'][k] == v
          new_resource.rules['ufw'][k] = v
        end
      end

      # ensure a file resource exists with the current ufw rules
      ufw_file = lookup_or_create_rulesfile
      ufw_file.content build_rule_file(new_resource.rules['ufw'])
      ufw_file.run_action(:create)

      # if the file was changed, restart iptables
      return unless ufw_file.updated_by_last_action?
      ufw_reset!
      ufw_logging!(new_resource.log_level) if new_resource.log_level

      new_resource.rules['ufw'].sort_by { |_k, v| v }.map { |k, _v| k }.each do |cmd|
        ufw_rule!(cmd)
      end

      # ensure it's enabled _after_ rules are inputted, to catch malformed rules
      ufw_enable! unless ufw_active?
      new_resource.updated_by_last_action(true)
    end

    def action_disable
      return if disabled?(new_resource)

      ufw_file = lookup_or_create_rulesfile
      ufw_file.content '# created by chef to allow service to start'
      ufw_file.run_action(:create)
      new_resource.updated_by_last_action(true) if ufw_file.updated_by_last_action?

      return unless ufw_active?
      ufw_disable!
      new_resource.updated_by_last_action(true)
    end

    def action_flush
      return if disabled?(new_resource)

      ufw_reset!
      new_resource.updated_by_last_action(true)

      ufw_file = lookup_or_create_rulesfile
      ufw_file.content '# created by chef to allow service to start'
      ufw_file.run_action(:create)
      new_resource.updated_by_last_action(true) if ufw_file.updated_by_last_action?
    end

    def lookup_or_create_rulesfile
      begin
        ufw_file = Chef.run_context.resource_collection.find(file: ufw_rules_filename)
      rescue
        ufw_file = file ufw_rules_filename do
          action :nothing
        end
      end
      ufw_file
    end
  end
end