Class: Dcmgr::NodeModules::ServiceNetfilter
- Inherits:
-
Isono::NodeModules::Base
- Object
- Isono::NodeModules::Base
- Dcmgr::NodeModules::ServiceNetfilter
- Includes:
- Helpers::NicHelper, Logger, Bandwidth, Nat
- Defined in:
- lib/dcmgr/node_modules/service_netfilter.rb
Instance Attribute Summary collapse
-
#controller ⇒ Object
Returns the value of attribute controller.
Instance Method Summary collapse
-
#add_netfilter_by_instance_id(inst_id) ⇒ Object
This method created all netfilter rules for one instance.
- #build_ebtables_basic_part(vif_map, inst_map, action = :create) ⇒ Object
- #build_ebtables_chains(vif_map, action = :create) ⇒ Object
- #build_ebtables_final_part(vif_map, action = :create) ⇒ Object
- #build_ebtables_group_part(vif_map, inst_map, viftable_map, action = :create) ⇒ Object
- #build_iptables_basic_part(vif_map, inst_map, action = :create) ⇒ Object
- #build_iptables_chains(protocol_map, vif_map, action = :create) ⇒ Object
- #build_iptables_final_part(vif_map, action = :create) ⇒ Object
- #build_iptables_group_part(vif_map, inst_map, action = :create) ⇒ Object
- #build_rule(rules = []) ⇒ Object
- #build_vif_map(inst_map = {}) ⇒ Object
-
#delete_netfilter_by_instance_id(inst_id) ⇒ Object
This method deletes all netfilter rules for one instance.
- #do_exec(cmds) ⇒ Object
- #event ⇒ Object
- #init_bandwidth_limit(network_maps) ⇒ Object
- #init_ebtables(inst_maps = [], viftable_map = {}) ⇒ Object
- #init_iptables(inst_maps = []) ⇒ Object
- #init_netfilter ⇒ Object
- #init_static_nat(inst_maps = []) ⇒ Object
- #protocol_map(type) ⇒ Object
-
#refresh_netfilter_by_friend_instance_id(inst_id) ⇒ Object
from event_subscriber.
-
#refresh_netfilter_by_joined_security_group_id(security_group_id) ⇒ Object
from event_subscriber.
- #rpc ⇒ Object
Methods included from Bandwidth
#clear_bandwidth_limits, #limit_bandwidth
Methods included from Logger
create, default_logdev, included
Methods included from Helpers::NicHelper
#clean_mac, #find_nic, #is_natted?, #nic_state, #valid_nic?
Methods included from Nat
#arp_respond, #build_nat_chains, #is_natted_ip?, #nat_exceptions, #nat_instance, #stop_arp_reply, #unlink_nat_chains
Instance Attribute Details
#controller ⇒ Object
Returns the value of attribute controller.
237 238 239 |
# File 'lib/dcmgr/node_modules/service_netfilter.rb', line 237 def controller @controller end |
Instance Method Details
#add_netfilter_by_instance_id(inst_id) ⇒ Object
This method created all netfilter rules for one instance. It is called when starting a new instances inst_id is the canonical uuid of the instance whose netfilter rule are to be created.
326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 |
# File 'lib/dcmgr/node_modules/service_netfilter.rb', line 326 def add_netfilter_by_instance_id(inst_id) raise ArgumentError, "Unknown Instance ID: #{inst_id}" if inst_id.nil? inst_map = rpc.request('hva-collector', 'get_instance', inst_id) raise ArgumentError, "Unknown Instance ID: #{inst_id}" if inst_map.nil? cmds = [] vif_map = build_vif_map(inst_map) viftable_map = {} viftable_map[ inst_map[:ips].first ] = inst_map[:instance_nics].first[:uuid] if @node.manifest.config.enable_ebtables cmds << build_ebtables_chains(vif_map,:create) cmds << build_ebtables_basic_part(vif_map, inst_map, :create) cmds << build_ebtables_group_part(vif_map, inst_map, viftable_map, :create) cmds << build_ebtables_final_part(vif_map, :create) end if @node.manifest.config.enable_iptables cmds << build_iptables_chains(protocol_map(:iptables), vif_map, :create) cmds << build_iptables_basic_part(vif_map, inst_map, :create) cmds << build_iptables_group_part(vif_map, inst_map, :create) cmds << build_iptables_final_part(vif_map, :create) end if @node.manifest.config.enable_ebtables && @node.manifest.config.enable_iptables cmds << build_nat_chains(inst_map) cmds << nat_exceptions(inst_map) unless @node.manifest.config.use_ipset cmds << nat_instance(inst_map) end do_exec(cmds) end |
#build_ebtables_basic_part(vif_map, inst_map, action = :create) ⇒ Object
589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 |
# File 'lib/dcmgr/node_modules/service_netfilter.rb', line 589 def build_ebtables_basic_part(vif_map, inst_map, action = :create) basic_cmds = [] actions = { :create => 'A' , :delete => 'D' } raise ArgumentError, "#{action} is not a valid action. Valid actions are #{actions.keys.join(',')}" unless actions.keys.member?(action) hva_ipv4 = Isono::Util.default_gw_ipaddr ################################ ## 1. basic part ################################ protocol_map = protocol_map(:ebtables) basic_cmds << build_ebtables_chains(vif_map,action) if action == :create # jumt to user defined chains basic_cmds << "ebtables -#{actions[action]} FORWARD -i #{vif_map[:uuid]} -j s_#{vif_map[:uuid]}" basic_cmds << "ebtables -#{actions[action]} FORWARD -o #{vif_map[:uuid]} -j d_#{vif_map[:uuid]}" basic_cmds << "ebtables -#{actions[action]} INPUT -i #{vif_map[:uuid]} -j s_#{vif_map[:uuid]}_d_hst" basic_cmds << "ebtables -#{actions[action]} OUTPUT -o #{vif_map[:uuid]} -j d_#{vif_map[:uuid]}_s_hst" # IP protocol routing protocol_map.each { |k,v| basic_cmds << "ebtables -#{actions[action]} s_#{vif_map[:uuid]} -p #{v} -j s_#{vif_map[:uuid]}_#{k}" basic_cmds << "ebtables -#{actions[action]} d_#{vif_map[:uuid]} -p #{v} -j d_#{vif_map[:uuid]}_#{k}" basic_cmds << "ebtables -#{actions[action]} s_#{vif_map[:uuid]}_d_hst -p #{v} -j s_#{vif_map[:uuid]}_d_hst_#{k}" basic_cmds << "ebtables -#{actions[action]} d_#{vif_map[:uuid]}_s_hst -p #{v} -j d_#{vif_map[:uuid]}_s_hst_#{k}" } if @node.manifest.config.packet_drop_log basic_cmds << "ebtables -#{actions[action]} s_#{vif_map[:uuid]} --log-level 4 --log-ip --log-arp --log-prefix 'D s_#{vif_map[:uuid]}:' -j CONTINUE" if @node.manifest.config.packet_drop_log basic_cmds << "ebtables -#{actions[action]} s_#{vif_map[:uuid]}_d_hst --log-level 4 --log-ip --log-arp --log-prefix 'D s_#{vif_map[:uuid]}_d_hst:' -j CONTINUE" if @node.manifest.config.packet_drop_log end basic_cmds << "ebtables -#{actions[action]} s_#{vif_map[:uuid]} -j DROP" basic_cmds << "ebtables -#{actions[action]} s_#{vif_map[:uuid]}_d_hst -j DROP" # anti spoof: mac # guest -> * basic_cmds << "ebtables -#{actions[action]} s_#{vif_map[:uuid]}_arp --protocol arp --arp-mac-src ! #{vif_map[:mac]} --log-ip --log-arp --log-prefix 'Dmc s_#{vif_map[:uuid]}_arp:' -j CONTINUE" if @node.manifest.config.packet_drop_log basic_cmds << "ebtables -#{actions[action]} s_#{vif_map[:uuid]}_d_hst_arp --protocol arp --arp-mac-src ! #{vif_map[:mac]} --log-ip --log-arp --log-prefix 'Dmc s_#{vif_map[:uuid]}_d_hst_arp:' -j CONTINUE" if @node.manifest.config.packet_drop_log basic_cmds << "ebtables -#{actions[action]} s_#{vif_map[:uuid]}_arp --protocol arp --arp-mac-src ! #{vif_map[:mac]} -j DROP" basic_cmds << "ebtables -#{actions[action]} s_#{vif_map[:uuid]}_d_hst_arp --protocol arp --arp-mac-src ! #{vif_map[:mac]} -j DROP" # guest <- * (broadcast) basic_cmds << "ebtables -#{actions[action]} d_#{vif_map[:uuid]}_arp --protocol arp --arp-mac-dst 00:00:00:00:00:00 --log-ip --log-arp --log-prefix 'Amc d_#{vif_map[:uuid]}_arp:' -j CONTINUE" if @node.manifest.config.packet_drop_log basic_cmds << "ebtables -#{actions[action]} d_#{vif_map[:uuid]}_s_hst_arp --protocol arp --arp-ip-src=#{hva_ipv4} --arp-mac-dst 00:00:00:00:00:00 --log-ip --log-arp --log-prefix 'Amc d_#{vif_map[:uuid]}_hst_arp:' -j CONTINUE" if @node.manifest.config.packet_drop_log basic_cmds << "ebtables -#{actions[action]} d_#{vif_map[:uuid]}_arp --protocol arp --arp-mac-dst 00:00:00:00:00:00 -j ACCEPT" basic_cmds << "ebtables -#{actions[action]} d_#{vif_map[:uuid]}_s_hst_arp --protocol arp --arp-ip-src=#{hva_ipv4} --arp-mac-dst 00:00:00:00:00:00 -j ACCEPT" # guest <- * basic_cmds << "ebtables -#{actions[action]} d_#{vif_map[:uuid]}_arp --protocol arp --arp-mac-dst ! #{vif_map[:mac]} --log-ip --log-arp --log-prefix 'Dmc d_#{vif_map[:uuid]}_arp:' -j CONTINUE" if @node.manifest.config.packet_drop_log basic_cmds << "ebtables -#{actions[action]} d_#{vif_map[:uuid]}_s_hst_arp --protocol arp --arp-mac-dst ! #{vif_map[:mac]} --log-ip --log-arp --log-prefix 'Dmc d_#{vif_map[:uuid]}_s_hst_arp:' -j CONTINUE" if @node.manifest.config.packet_drop_log basic_cmds << "ebtables -#{actions[action]} d_#{vif_map[:uuid]}_arp --protocol arp --arp-mac-dst ! #{vif_map[:mac]} -j DROP" basic_cmds << "ebtables -#{actions[action]} d_#{vif_map[:uuid]}_s_hst_arp --protocol arp --arp-mac-dst ! #{vif_map[:mac]} -j DROP" # anti spoof: ipv4 inst_map[:ips].each { |ipv4| # guest -> * basic_cmds << "ebtables -#{actions[action]} s_#{vif_map[:uuid]}_arp --protocol arp --arp-ip-src ! #{ipv4} --log-ip --log-arp --log-prefix 'Dip s_#{vif_map[:uuid]}_arp:' -j CONTINUE" if @node.manifest.config.packet_drop_log basic_cmds << "ebtables -#{actions[action]} s_#{vif_map[:uuid]}_d_hst_arp --protocol arp --arp-ip-src ! #{ipv4} --log-ip --log-arp --log-prefix 'Dip s_#{vif_map[:uuid]}_d_hst_arp:' -j CONTINUE" if @node.manifest.config.packet_drop_log basic_cmds << "ebtables -#{actions[action]} s_#{vif_map[:uuid]}_arp --protocol arp --arp-ip-src ! #{ipv4} -j DROP" basic_cmds << "ebtables -#{actions[action]} s_#{vif_map[:uuid]}_d_hst_arp --protocol arp --arp-ip-src ! #{ipv4} -j DROP" # guest <- * basic_cmds << "ebtables -#{actions[action]} d_#{vif_map[:uuid]}_arp --protocol arp --arp-ip-dst ! #{ipv4} --log-ip --log-arp --log-prefix 'Dip d_#{vif_map[:uuid]}_arp:' -j CONTINUE" if @node.manifest.config.packet_drop_log basic_cmds << "ebtables -#{actions[action]} d_#{vif_map[:uuid]}_s_hst_arp --protocol arp --arp-ip-dst ! #{ipv4} --log-ip --log-arp --log-prefix 'Dip d_#{vif_map[:uuid]}_s_hst_arp:' -j CONTINUE" if @node.manifest.config.packet_drop_log basic_cmds << "ebtables -#{actions[action]} d_#{vif_map[:uuid]}_arp --protocol arp --arp-ip-dst ! #{ipv4} -j DROP" basic_cmds << "ebtables -#{actions[action]} d_#{vif_map[:uuid]}_s_hst_arp --protocol arp --arp-ip-dst ! #{ipv4} -j DROP" } basic_cmds << build_ebtables_chains(vif_map,action) if action == :delete basic_cmds end |
#build_ebtables_chains(vif_map, action = :create) ⇒ Object
558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 |
# File 'lib/dcmgr/node_modules/service_netfilter.rb', line 558 def build_ebtables_chains(vif_map,action = :create) actions = { :create => 'N' , :delete => 'X' } raise ArgumentError, "#{action} is not a valid action. Valid actions are #{actions.keys.join(',')}" unless actions.keys.member?(action) ################################ ## 0. chain name ################################ # support IP protocol protocol_map = protocol_map(:ebtables) # make chain names. chains = [] chains << "s_#{vif_map[:uuid]}" chains << "d_#{vif_map[:uuid]}" chains << "s_#{vif_map[:uuid]}_d_hst" chains << "d_#{vif_map[:uuid]}_s_hst" protocol_map.each { |k,v| chains << "s_#{vif_map[:uuid]}_#{k}" chains << "d_#{vif_map[:uuid]}_#{k}" chains << "s_#{vif_map[:uuid]}_d_hst_#{k}" chains << "d_#{vif_map[:uuid]}_s_hst_#{k}" } # create user defined chains. cmds = chains.map { |chain| "ebtables -#{actions[action]} #{chain}" } cmds end |
#build_ebtables_final_part(vif_map, action = :create) ⇒ Object
742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 |
# File 'lib/dcmgr/node_modules/service_netfilter.rb', line 742 def build_ebtables_final_part(vif_map, action = :create) final_cmds = [] actions = { :create => 'A' , :delete => 'D' } raise ArgumentError, "#{action} is not a valid action. Valid actions are #{actions.keys.join(',')}" unless actions.keys.member?(action) ################################ ## 3. final part ################################ # deny,allow final_cmds << "ebtables -#{actions[action]} d_#{vif_map[:uuid]}_arp --log-level 4 --log-ip --log-arp --log-prefix 'D d_#{vif_map[:uuid]}_arp:' -j CONTINUE" if @node.manifest.config.packet_drop_log final_cmds << "ebtables -#{actions[action]} s_#{vif_map[:uuid]}_d_hst_arp --log-level 4 --log-ip --log-arp --log-prefix 'D s_#{vif_map[:uuid]}_d_hst_arp:' -j CONTINUE" if @node.manifest.config.packet_drop_log final_cmds << "ebtables -#{actions[action]} d_#{vif_map[:uuid]}_arp -j DROP" final_cmds << "ebtables -#{actions[action]} s_#{vif_map[:uuid]}_d_hst_arp -j DROP" final_cmds end |
#build_ebtables_group_part(vif_map, inst_map, viftable_map, action = :create) ⇒ Object
660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 |
# File 'lib/dcmgr/node_modules/service_netfilter.rb', line 660 def build_ebtables_group_part(vif_map, inst_map, viftable_map, action = :create) group_cmds = [] hva_ipv4 = Isono::Util.default_gw_ipaddr actions = { :create => 'A' , :delete => 'D' } raise ArgumentError, "#{action} is not a valid action. Valid actions are #{actions.keys.join(',')}" unless actions.keys.member?(action) ################################ ## 2. group part ################################ same_subnet_ipv4s = rpc.request('hva-collector', 'get_group_instance_ipv4s', inst_map[:uuid]) network_map = rpc.request('hva-collector', 'get_network', inst_map[:instance_nics].first[:network_id]) raise "UnknownNetworkId" if network_map.nil? joined_network = IPAddress("#{network_map[:ipv4_gw]}/#{network_map[:prefix]}") [ network_map[:dns_server], network_map[:dhcp_server], network_map[:metadata_server] ].each { |ipv4| next if ipv4.nil? or not joined_network.include? IPAddress(ipv4) same_subnet_ipv4s << ipv4 } # network resource node(s) ng_maps = rpc.request('hva-collector', 'get_security_groups_of_instance', inst_map[:uuid]) rules = ng_maps.map { |ng_map| ng_map[:rules].map { |rule| rule[:permission] } }.flatten build_rule(rules).each do |rule| # <ArgumentError: Invalid IP "0.0.0.0"> next if rule[:ip_source] == "0.0.0.0/0" begin next unless joined_network.include? IPAddress(rule[:ip_source]) same_subnet_ipv4s << rule[:ip_source] rescue Exception => e #raise unless e.is_a? ArgumentError p e end end same_subnet_ipv4s << network_map[:ipv4_gw] # guest node(s) in HyperVisor. alive_inst_maps = rpc.request('hva-collector', 'get_alive_instances', node.node_id) guest_ipv4s = alive_inst_maps.map { |alive_inst_map| alive_inst_map[:ips] }.flatten.uniq.compact same_subnet_ipv4s.uniq.reverse_each do |ipv4| next if vif_map[:ipv4] == ipv4 # get_macaddr_by_ipv4, ipv4 if ipv4 == hva_ipv4 #p "#{vif_map[:uuid]}(#{vif_map[:ipv4]}) -> [host] ***-****** (#{ipv4})" group_cmds << "ebtables -#{actions[action]} s_#{vif_map[:uuid]}_d_hst_arp --protocol arp --arp-ip-src #{vif_map[:ipv4]} --arp-ip-dst #{ipv4} --log-ip --log-arp --log-prefix 'Afw s_#{vif_map[:uuid]}_d_hst_arp:' -j CONTINUE" if @node.manifest.config.packet_drop_log group_cmds << "ebtables -#{actions[action]} s_#{vif_map[:uuid]}_d_hst_arp --protocol arp --arp-ip-src #{vif_map[:ipv4]} --arp-ip-dst #{ipv4} -j ACCEPT" elsif guest_ipv4s.include?(ipv4) #p "#{vif_map[:uuid]}(#{vif_map[:ipv4]}) -> [guest] #{viftable_map[ipv4]}(#{ipv4})" # guest->guest group_cmds << "ebtables -#{actions[action]} d_#{vif_map[:uuid]}_arp --protocol arp --arp-ip-src #{ipv4} --arp-ip-dst #{vif_map[:ipv4]} --log-ip --log-arp --log-prefix 'Afw d_#{vif_map[:uuid]}_arp:' -j CONTINUE" if @node.manifest.config.packet_drop_log group_cmds << "ebtables -#{actions[action]} d_#{vif_map[:uuid]}_arp --protocol arp --arp-ip-src #{ipv4} --arp-ip-dst #{vif_map[:ipv4]} -j ACCEPT" # guest->host group_cmds << "ebtables -#{actions[action]} s_#{vif_map[:uuid]}_d_hst_arp --protocol arp --arp-ip-src #{vif_map[:ipv4]} --arp-ip-dst #{ipv4} --log-ip --log-arp --log-prefix 'Afw s_#{vif_map[:uuid]}_d_hst_arp:' -j CONTINUE" if @node.manifest.config.packet_drop_log group_cmds << "ebtables -#{actions[action]} s_#{vif_map[:uuid]}_d_hst_arp --protocol arp --arp-ip-src #{vif_map[:ipv4]} --arp-ip-dst #{ipv4} -j ACCEPT" unless viftable_map[ipv4].nil? # guest->guest group_cmds << "ebtables -#{actions[action]} d_#{viftable_map[ipv4]}_arp --protocol arp --arp-ip-src #{vif_map[:ipv4]} --arp-ip-dst #{ipv4} --log-ip --log-arp --log-prefix 'Arv d_#{viftable_map[ipv4]}_arp:' -j CONTINUE" if @node.manifest.config.packet_drop_log group_cmds << "ebtables -#{actions[action]} d_#{viftable_map[ipv4]}_arp --protocol arp --arp-ip-src #{vif_map[:ipv4]} --arp-ip-dst #{ipv4} -j ACCEPT" # guest->host group_cmds << "ebtables -#{actions[action]} s_#{viftable_map[ipv4]}_d_hst_arp --protocol arp --arp-ip-src #{ipv4} --arp-ip-dst #{vif_map[:ipv4]} --log-ip --log-arp --log-prefix 'Arv s_#{viftable_map[ipv4]}_d_hst_arp:' -j CONTINUE" if @node.manifest.config.packet_drop_log group_cmds << "ebtables -#{actions[action]} s_#{viftable_map[ipv4]}_d_hst_arp --protocol arp --arp-ip-src #{ipv4} --arp-ip-dst #{vif_map[:ipv4]} -j ACCEPT" end else #p "#{vif_map[:uuid]}(#{vif_map[:ipv4]}) -> [other] ***-******** (#{ipv4})" group_cmds << "ebtables -#{actions[action]} d_#{vif_map[:uuid]}_arp --protocol arp --arp-ip-src #{ipv4} --arp-ip-dst #{vif_map[:ipv4]} --log-ip --log-arp --log-prefix 'Afw :d_#{vif_map[:uuid]}_arp' -j CONTINUE" if @node.manifest.config.packet_drop_log group_cmds << "ebtables -#{actions[action]} d_#{vif_map[:uuid]}_arp --protocol arp --arp-ip-src #{ipv4} --arp-ip-dst #{vif_map[:ipv4]} -j ACCEPT" end end group_cmds end |
#build_iptables_basic_part(vif_map, inst_map, action = :create) ⇒ Object
784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 |
# File 'lib/dcmgr/node_modules/service_netfilter.rb', line 784 def build_iptables_basic_part(vif_map, inst_map, action = :create) basic_cmds = [] actions = { :create => 'A' , :delete => 'D' } raise ArgumentError, "#{action} is not a valid action. Valid actions are #{actions.keys.join(',')}" unless actions.keys.member?(action) network_map = rpc.request('hva-collector', 'get_network', inst_map[:instance_nics].first[:network_id]) raise "UnknownNetworkId" if network_map.nil? # support IP protocol protocol_map = protocol_map(:iptables) # make chain names. basic_cmds << build_iptables_chains(protocol_map, vif_map, :create) if action == :create ################################ ## 1. basic part ################################ # metadata-server port = network_map[:metadata_server_port] || 80 basic_cmds << "iptables -t nat -#{actions[action]} PREROUTING -m physdev --physdev-in #{vif_map[:uuid]} -d 169.254.169.254 -p tcp --dport 80 -j DNAT --to-destination #{network_map[:metadata_server]}:#{port}" # DHCP Server basic_cmds << "iptables -#{actions[action]} d_#{vif_map[:uuid]} -p udp ! -s #{network_map[:dhcp_server]} --sport 67 -j d_#{vif_map[:uuid]}_udp_drop" basic_cmds << "iptables -#{actions[action]} d_#{vif_map[:uuid]} -p udp ! -s #{network_map[:dhcp_server]} --sport 68 -j d_#{vif_map[:uuid]}_udp_drop" # group nodes # group node IPv4 addresses. ipv4s = rpc.request('hva-collector', 'get_group_instance_ipv4s', inst_map[:uuid]) ipv4s << network_map[:ipv4_gw] ipv4s.uniq.reverse_each { |addr| basic_cmds << "iptables -#{actions[action]} d_#{vif_map[:uuid]} -s #{addr} -j ACCEPT" } # IP protocol routing [ 's', 'd' ].each do |bound| protocol_map.each { |k,v| #basic_cmds << "iptables -#{chain_actions[action]} #{bound}_#{vif_map[:uuid]}_#{k}" # Log dropped packets ["#{bound}_#{vif_map[:uuid]}", "#{bound}_#{vif_map[:uuid]}_#{k}"].each { |chain| basic_cmds << "iptables -#{actions[action]} #{chain}_drop -j LOG --log-level 4 --log-prefix 'D #{chain}:'" if @node.manifest.config.packet_drop_log basic_cmds << "iptables -#{actions[action]} #{chain}_drop -j DROP" } case k when 'tcp' case bound when 's' basic_cmds << "iptables -#{actions[action]} #{bound}_#{vif_map[:uuid]} -m state --state NEW,ESTABLISHED -p #{k} -j #{bound}_#{vif_map[:uuid]}_#{k}" when 'd' basic_cmds << "iptables -#{actions[action]} #{bound}_#{vif_map[:uuid]} -m state --state RELATED,ESTABLISHED -p #{k} -j ACCEPT" basic_cmds << "iptables -#{actions[action]} #{bound}_#{vif_map[:uuid]} -p #{k} -j #{bound}_#{vif_map[:uuid]}_#{k}" end when 'udp' case bound when 's' basic_cmds << "iptables -#{actions[action]} #{bound}_#{vif_map[:uuid]} -m state --state NEW,ESTABLISHED -p #{k} -j #{bound}_#{vif_map[:uuid]}_#{k}" when 'd' basic_cmds << "iptables -#{actions[action]} #{bound}_#{vif_map[:uuid]} -m state --state ESTABLISHED -p #{k} -j ACCEPT" basic_cmds << "iptables -#{actions[action]} #{bound}_#{vif_map[:uuid]} -p #{k} -j #{bound}_#{vif_map[:uuid]}_#{k}" end when 'icmp' case bound when 's' basic_cmds << "iptables -#{actions[action]} #{bound}_#{vif_map[:uuid]} -m state --state NEW,ESTABLISHED,RELATED -p #{k} -j #{bound}_#{vif_map[:uuid]}_#{k}" when 'd' basic_cmds << "iptables -#{actions[action]} #{bound}_#{vif_map[:uuid]} -m state --state ESTABLISHED,RELATED -p #{k} -j ACCEPT" basic_cmds << "iptables -#{actions[action]} #{bound}_#{vif_map[:uuid]} -p #{k} -j #{bound}_#{vif_map[:uuid]}_#{k}" end end } end basic_cmds << "iptables -#{actions[action]} FORWARD -m physdev --physdev-is-bridged --physdev-in #{vif_map[:uuid]} -j s_#{vif_map[:uuid]}" basic_cmds << "iptables -#{actions[action]} FORWARD -m physdev --physdev-is-bridged --physdev-out #{vif_map[:uuid]} -j d_#{vif_map[:uuid]}" ## ## ACCEPT ## # DHCP Server basic_cmds << "iptables -#{actions[action]} d_#{vif_map[:uuid]}_udp -p udp -s #{network_map[:dhcp_server]} --sport 67 -j ACCEPT" basic_cmds << "iptables -#{actions[action]} d_#{vif_map[:uuid]}_udp -p udp -s #{network_map[:dhcp_server]} --sport 68 -j ACCEPT" # DNS Server basic_cmds << "iptables -#{actions[action]} s_#{vif_map[:uuid]}_udp -p udp -d #{network_map[:dns_server]} --dport 53 -j ACCEPT" # MetaData Server basic_cmds << "iptables -#{actions[action]} s_#{vif_map[:uuid]}_tcp -p tcp -d #{network_map[:metadata_server]} --dport #{network_map[:metadata_server_port]} -j ACCEPT" ## ## DROP ## protocol_map.each { |k,v| # DHCP basic_cmds << "iptables -#{actions[action]} s_#{vif_map[:uuid]} -d #{network_map[:dhcp_server]} -p #{k} -j s_#{vif_map[:uuid]}_#{k}_drop" # DNS basic_cmds << "iptables -#{actions[action]} s_#{vif_map[:uuid]} -d #{network_map[:dns_server]} -p #{k} -j s_#{vif_map[:uuid]}_#{k}_drop" } basic_cmds << build_iptables_chains(protocol_map, vif_map, :delete) if action == :delete basic_cmds end |
#build_iptables_chains(protocol_map, vif_map, action = :create) ⇒ Object
759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 |
# File 'lib/dcmgr/node_modules/service_netfilter.rb', line 759 def build_iptables_chains(protocol_map, vif_map, action = :create) actions = { :create => ['N'] , :delete => ['F','X'] } raise ArgumentError, "#{action} is not a valid action. Valid actions are #{actions.keys.join(',')}" unless actions.keys.member?(action) chain_cmds = [] ################################ ## 0. chain name ################################ [ 's', 'd' ].each do |bound| protocol_map.each { |k,v| actions[action].each do |act| chain_cmds << "iptables -#{act} #{bound}_#{vif_map[:uuid]}" chain_cmds << "iptables -#{act} #{bound}_#{vif_map[:uuid]}_#{k}" chain_cmds << "iptables -#{act} #{bound}_#{vif_map[:uuid]}_drop" chain_cmds << "iptables -#{act} #{bound}_#{vif_map[:uuid]}_#{k}_drop" end } end chain_cmds end |
#build_iptables_final_part(vif_map, action = :create) ⇒ Object
936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 |
# File 'lib/dcmgr/node_modules/service_netfilter.rb', line 936 def build_iptables_final_part(vif_map, action = :create) actions = { :create => 'A' , :delete => 'D' } raise ArgumentError, "#{action} is not a valid action. Valid actions are #{actions.keys.join(',')}" unless actions.keys.member?(action) final_cmds = [] # support IP protocol protocol_map = protocol_map(:iptables) ################################ ## 3. final part ################################ # Send dropped ip packets to their respective drop chains, based on their protocol [ 'd' ].each do |bound| protocol_map.each { |k,v| # Any packets that travel the protocol specific chains and don't get accepted are directed to drop chains # where logging can take place before the packets are dropped by the FORWARD chain policy final_cmds << "iptables -#{actions[action]} #{bound}_#{vif_map[:uuid]} -p #{k} -j #{bound}_#{vif_map[:uuid]}_#{k}_drop" } end # Allow outgoing traffic from the instance [ 's' ].each do |bound| protocol_map.each { |k,v| final_cmds << "iptables -#{actions[action]} #{bound}_#{vif_map[:uuid]}_#{k} -p #{k} -j ACCEPT" } end final_cmds end |
#build_iptables_group_part(vif_map, inst_map, action = :create) ⇒ Object
889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 |
# File 'lib/dcmgr/node_modules/service_netfilter.rb', line 889 def build_iptables_group_part(vif_map, inst_map, action = :create) group_cmds = [] ################################ ## 2. group part ################################ case action when :delete protocol_map(:iptables).each { |k,v| # Fluch all security group chains group_cmds << "iptables -A d_#{vif_map[:uuid]}_#{k} -F" } when :create ng_maps = rpc.request('hva-collector', 'get_security_groups_of_instance', inst_map[:uuid]) rules = ng_maps.map { |ng_map| ng_map[:rules].map { |rule| rule[:permission] } }.flatten # security group build_rule(rules).each do |rule| case rule[:ip_protocol] when 'tcp', 'udp' if rule[:ip_fport] == rule[:ip_tport] group_cmds << "iptables -A d_#{vif_map[:uuid]}_#{rule[:ip_protocol]} -p #{rule[:ip_protocol]} -s #{rule[:ip_source]} --dport #{rule[:ip_fport]} -j ACCEPT" else group_cmds << "iptables -A d_#{vif_map[:uuid]}_#{rule[:ip_protocol]} -p #{rule[:ip_protocol]} -s #{rule[:ip_source]} --dport #{rule[:ip_fport]}:#{rule[:ip_tport]} -j ACCEPT" end when 'icmp' # icmp # This extension can be used if `--protocol icmp' is specified. It provides the following option: # [!] --icmp-type {type[/code]|typename} # This allows specification of the ICMP type, which can be a numeric ICMP type, type/code pair, or one of the ICMP type names shown by the command # iptables -p icmp -h if rule[:icmp_type] == -1 && rule[:icmp_code] == -1 group_cmds << "iptables -A d_#{vif_map[:uuid]}_#{rule[:ip_protocol]} -p #{rule[:ip_protocol]} -s #{rule[:ip_source]} -j ACCEPT" else group_cmds << "iptables -A d_#{vif_map[:uuid]}_#{rule[:ip_protocol]} -p #{rule[:ip_protocol]} -s #{rule[:ip_source]} --icmp-type #{rule[:icmp_type]}/#{rule[:icmp_code]} -j ACCEPT" end end end else raise ArgumentError, "#{action} is not a valid action." end group_cmds end |
#build_rule(rules = []) ⇒ Object
968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 |
# File 'lib/dcmgr/node_modules/service_netfilter.rb', line 968 def build_rule(rules = []) rule_maps = [] rules.each do |rule| rule = rule.strip.gsub(/[\s\t]+/, '') from_group = false ipv4s = [] # ex. # "tcp:22,22,ip4:0.0.0.0" # "udp:53,53,ip4:0.0.0.0" # "icmp:-1,-1,ip4:0.0.0.0" # 1st phase # ip_tport : tcp,udp? 1 - 16bit, icmp: -1 # id_port has been separeted in first phase. from_pair, ip_tport, source_pair = rule.split(',') next if from_pair.nil? next if ip_tport.nil? next if source_pair.nil? # 2nd phase # ip_protocol : [ tcp | udp | icmp ] # ip_fport : tcp,udp? 1 - 16bit, icmp: -1 ip_protocol, ip_fport = from_pair.split(':') # protocol : [ ip4 | ip6 | security_group_uuid ] # ip_source : ip4? xxx.xxx.xxx.xxx./[0-32], ip6? (not yet supprted) protocol, ip_source = source_pair.split(':') begin s = StringScanner.new(protocol) until s.eos? case when s.scan(/ip6/) # TODO#FUTURE: support IPv6 address format next when s.scan(/ip4/) # IPAddress doesn't support prefix '0'. ip_addr, prefix = ip_source.split('/', 2) if prefix.to_i == 0 ip_source = ip_addr end when s.scan(/ng-\w+/) from_group = true inst_maps = rpc.request('hva-collector', 'get_instances_of_security_group', protocol) inst_maps.each { |inst_map| ipv4s << inst_map[:ips] } else raise "unexpected protocol '#{s.peep(20)}'" end end rescue Exception => e p e next end begin if from_group == false #p "from_group:(#{from_group}) ip_source -> #{ip_source}" ip = IPAddress(ip_source) ip_source = case ip.u32 when 0 "#{ip.address}/0" else "#{ip.address}/#{ip.prefix}" end else ipv4s = ipv4s.flatten.uniq end rescue Exception => e p e next end case ip_protocol when 'tcp', 'udp' ip_fport = ip_fport.to_i ip_tport = ip_tport.to_i # validate port range [ ip_fport, ip_tport ].each do |port| next unless port >= 1 && port <= 65535 end if ip_fport <= ip_tport if from_group == false rule_maps << { :ip_protocol => ip_protocol, :ip_fport => ip_fport, :ip_tport => ip_tport, :protocol => protocol, :ip_source => ip_source, } else ipv4s.each { |ip| rule_maps << { :ip_protocol => ip_protocol, :ip_fport => ip_fport, :ip_tport => ip_tport, :protocol => 'ip4', :ip_source => ip, } } end end when 'icmp' # via http://docs.amazonwebservices.com/AWSEC2/latest/CommandLineReference/ # # For the ICMP protocol, the ICMP type and code must be specified. # This must be specified in the format type:code where both are integers. # Type, code, or both can be specified as -1, which is a wildcard. icmp_type = ip_fport.to_i icmp_code = ip_tport.to_i # icmp_type case icmp_type when -1 when 0, 3, 5, 8, 11, 12, 13, 14, 15, 16, 17, 18 else next end # icmp_code case icmp_code when -1 when 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 # when icmp_type equals -1 icmp_code must equal -1. next if icmp_type == -1 else next end if from_group == false rule_maps << { :ip_protocol => ip_protocol, :icmp_type => ip_tport.to_i, # ip_tport.to_i, # -1 or 0, 3, 5, 8, 11, 12, 13, 14, 15, 16, 17, 18 :icmp_code => ip_fport.to_i, # ip_fport.to_i, # -1 or 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 :protocol => protocol, :ip_source => ip_source, } else ipv4s.each { |ip| rule_maps << { :ip_protocol => ip_protocol, :icmp_type => ip_tport.to_i, # ip_tport.to_i, # -1 or 0, 3, 5, 8, 11, 12, 13, 14, 15, 16, 17, 18 :icmp_code => ip_fport.to_i, # ip_fport.to_i, # -1 or 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 :protocol => 'ip4', :ip_source => ip, } } end end end rule_maps end |
#build_vif_map(inst_map = {}) ⇒ Object
428 429 430 431 432 433 434 |
# File 'lib/dcmgr/node_modules/service_netfilter.rb', line 428 def build_vif_map(inst_map = {}) vif_map = { :uuid => inst_map[:instance_nics].first[:uuid], :mac => clean_mac(inst_map[:instance_nics].first[:mac_addr]), :ipv4 => inst_map[:ips].first, } end |
#delete_netfilter_by_instance_id(inst_id) ⇒ Object
This method deletes all netfilter rules for one instance. It is called when terminating an instance. inst_id The canonical uuid of the instance whose netfilter rules are to be deleted.
362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 |
# File 'lib/dcmgr/node_modules/service_netfilter.rb', line 362 def delete_netfilter_by_instance_id(inst_id) raise ArgumentError, "Unknown Instance ID: #{inst_id}" if inst_id.nil? inst_map = rpc.request('hva-collector', 'get_instance', inst_id) raise ArgumentError, "Unknown Instance ID: #{inst_id}" if inst_map.nil? #Create vnic map vif_map = build_vif_map(inst_map) #Delete ebtables chains cmds = [] #Calling build_ebtables_basic_part with the :delete flag will delete all jumps to this instance's chains and then delete the chains themselves cmds << build_ebtables_basic_part(vif_map, inst_map, :delete) if @node.manifest.config.enable_ebtables #Delete nat chains if @node.manifest.config.enable_ebtables && @node.manifest.config.enable_iptables cmds << unlink_nat_chains(inst_map) cmds << stop_arp_reply(inst_map) cmds << build_nat_chains(inst_map, :delete) end #Delete iptables chains cmds << build_iptables_basic_part(vif_map, inst_map, :delete) if @node.manifest.config.enable_iptables do_exec(cmds) end |
#do_exec(cmds) ⇒ Object
454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 |
# File 'lib/dcmgr/node_modules/service_netfilter.rb', line 454 def do_exec(cmds) recmds = [] eos = "__EOS_#{Isono::Util.gen_id}___" recmds << "/bin/cat <<'#{eos}' | /bin/bash" cmds.flatten.uniq.each { |cmd| puts cmd if @node.manifest.config.verbose_netfilter == true recmds << cmd } recmds << "#{eos}" logger.debug("applying rule line(s): #{recmds.size - 2}") system(recmds.join("\n")) logger.debug("applied rule line(s): #{recmds.size - 2}") end |
#event ⇒ Object
1133 1134 1135 |
# File 'lib/dcmgr/node_modules/service_netfilter.rb', line 1133 def event @event ||= Isono::NodeModules::EventChannel.new(@node) end |
#init_bandwidth_limit(network_maps) ⇒ Object
554 555 556 |
# File 'lib/dcmgr/node_modules/service_netfilter.rb', line 554 def init_bandwidth_limit(network_maps) do_exec([clear_bandwidth_limits,limit_bandwidth(network_maps)]) end |
#init_ebtables(inst_maps = [], viftable_map = {}) ⇒ Object
470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 |
# File 'lib/dcmgr/node_modules/service_netfilter.rb', line 470 def init_ebtables(inst_maps = [], viftable_map = {}) init_cmds = [] basic_cmds = [] group_cmds = [] nat_cmds = [] final_cmds = [] init_cmds << "ebtables --init-table" #Clear the nat table. This table is only used in build_ebtables_nat_part init_cmds << "ebtables -t nat --init-table" inst_maps.each { |inst_map| vif_map = build_vif_map(inst_map) basic_cmds << build_ebtables_basic_part(vif_map, inst_map) group_cmds << build_ebtables_group_part(vif_map, inst_map, viftable_map) final_cmds << build_ebtables_final_part(vif_map) } viftable_map.each { |k,v| logger.debug("viftable: #{v} <=> #{k}") } do_exec([init_cmds, basic_cmds, group_cmds, final_cmds]) end |
#init_iptables(inst_maps = []) ⇒ Object
496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 |
# File 'lib/dcmgr/node_modules/service_netfilter.rb', line 496 def init_iptables(inst_maps = []) init_cmds = [] basic_cmds = [] group_cmds = [] nat_cmds = [] final_cmds = [] #Drop all packets that aren't explicitely allowed #init_cmds << "iptables -P FORWARD DROP" init_cmds << "iptables -P FORWARD ACCEPT" [ 'raw', 'nat', 'filter' ].each { |table| [ 'F', 'Z', 'X' ].each { |xcmd| init_cmds << "iptables -t #{table} -#{xcmd}" } } if @node.manifest.config.use_ipset ['F','X'].each { |xcmd| init_cmds << "ipset -#{xcmd}" } end # via http://backreference.org/2010/06/11/iptables-debugging/ # To debug ipv4 packets. # $ sudo tail -F /var/log/kern.log | grep TRACE: if @node.manifest.config.debug_iptables init_cmds << "iptables -t raw -A OUTPUT -p icmp -j TRACE" init_cmds << "iptables -t raw -A PREROUTING -p icmp -j TRACE" end inst_maps.each { |inst_map| vif_map = build_vif_map(inst_map) basic_cmds << build_iptables_basic_part(vif_map, inst_map) group_cmds << build_iptables_group_part(vif_map, inst_map) final_cmds << build_iptables_final_part(vif_map) } do_exec([init_cmds, basic_cmds, group_cmds, final_cmds]) end |
#init_netfilter ⇒ Object
293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 |
# File 'lib/dcmgr/node_modules/service_netfilter.rb', line 293 def init_netfilter begin inst_maps = rpc.request('hva-collector', 'get_alive_instances', node.node_id) viftable_map = {} inst_maps = inst_maps.map { |inst_map| viftable_map[ inst_map[:ips].first ] = inst_map[:instance_nics].first[:uuid] # Does the hva have instance? unless inst_map[:host_node][:node_id] == node.node_id logger.warn("no match for the instance: #{inst_map[:uuid]}") next end # Does host have vif? next unless valid_nic?(inst_map[:instance_nics].first[:uuid]) inst_maps }.flatten.uniq.compact init_iptables(inst_maps) if @node.manifest.config.enable_iptables init_ebtables(inst_maps, viftable_map) if @node.manifest.config.enable_ebtables init_static_nat(inst_maps) if @node.manifest.config.enable_iptables && @node.manifest.config.enable_ebtables init_bandwidth_limit(networks = rpc.request('hva-collector', 'get_networks')) if @node.manifest.config.enable_iptables sleep 1 logger.info("initialized netfilter") rescue Exception => e p e end end |
#init_static_nat(inst_maps = []) ⇒ Object
538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 |
# File 'lib/dcmgr/node_modules/service_netfilter.rb', line 538 def init_static_nat(inst_maps = []) chain_cmds = [] #ref_cmds = [] accept_cmds = [] nat_cmds = [] inst_maps.each { |inst_map| chain_cmds << build_nat_chains(inst_map) #ref_cmds = ref_nat_chains(inst_map) accept_cmds << nat_exceptions(inst_map) unless @node.manifest.config.use_ipset nat_cmds << nat_instance(inst_map) } do_exec([chain_cmds,accept_cmds,nat_cmds]) end |
#protocol_map(type) ⇒ Object
436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 |
# File 'lib/dcmgr/node_modules/service_netfilter.rb', line 436 def protocol_map(type) case type when :iptables { 'tcp' => 'tcp', 'udp' => 'udp', 'icmp' => 'icmp', } when :ebtables { 'ip4' => 'ip4', 'arp' => 'arp', #'ip6' => 'ip6', #'rarp' => '0x8035', } end end |
#refresh_netfilter_by_friend_instance_id(inst_id) ⇒ Object
from event_subscriber
390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 |
# File 'lib/dcmgr/node_modules/service_netfilter.rb', line 390 def refresh_netfilter_by_friend_instance_id(inst_id) raise "UnknownInstanceID" if inst_id.nil? begin ng_maps = rpc.request('hva-collector', 'get_security_groups_of_instance', inst_id) # get friend instance(s) friend_inst_maps = ng_maps.map { |ng_map| rpc.request('hva-collector', 'get_instances_of_security_group', ng_map[:id]) }.flatten.uniq guest_inst_maps = rpc.request('hva-collector', 'get_alive_instances', node.node_id) uuids = friend_inst_maps.map { |inst_map| inst_map[:uuid] } & guest_inst_maps.map { |inst_map| inst_map[:uuid] } logger.info("my guest instance(s)?: #{uuids.inspect}") if uuids.flatten.uniq.size > 0 init_netfilter else # group_instance: 1->0 inst_map = rpc.request('hva-collector', 'get_instance', inst_id) init_netfilter if inst_map[:host_node][:node_id] == node.node_id end rescue Exception => e p e end end |
#refresh_netfilter_by_joined_security_group_id(security_group_id) ⇒ Object
from event_subscriber
417 418 419 420 421 422 423 424 425 426 |
# File 'lib/dcmgr/node_modules/service_netfilter.rb', line 417 def refresh_netfilter_by_joined_security_group_id(security_group_id) raise "Unknown security group ID: #{security_group_id}" if security_group_id.nil? begin inst_maps = rpc.request('hva-collector', 'get_instances_of_security_group', security_group_id) init_netfilter if inst_maps.size > 0 rescue Exception => e p e end end |
#rpc ⇒ Object
1129 1130 1131 |
# File 'lib/dcmgr/node_modules/service_netfilter.rb', line 1129 def rpc @rpc ||= Isono::NodeModules::RpcChannel.new(@node) end |