1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 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 132 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 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 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 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 322 323 324 325 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 358 359 360 361 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 388 389 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 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 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 495 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 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 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 588 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 659 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 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 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
|
# Copyright 2011 VMware, Inc.
# All Rights Reserved.
#
# 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.
import collections
import math
import netaddr
import re
from oslo_config import cfg
from oslo_log import log as logging
from neutron.agent.common import ovs_lib
from neutron.agent import firewall
from neutron.common import constants
LOG = logging.getLogger(__name__)
# OpenFlow Table IDs
OF_ZERO_TABLE = 0
OF_SELECT_TABLE = 1
OF_EGRESS_TABLE = 11
OF_INGRESS_TABLE = 21
OF_INGRESS_EXT_TABLE = 23
# Openflow ZERO table priorities
OF_T0_ARP_INT_PRIO = 100
OF_T0_ARP_EXT_PRIO = 90
OF_T0_SELECT_TABLE_IN_PRIO = 50
OF_T0_SELECT_TABLE_EXT_PRIO = 40
# Openflow SELECT table priorities
OF_T0_EGRESS_PRIO = 100
OF_T0_INGRESS_PRIO = 100
OF_DROP_TRAFFIC_PRIO = 50
# Openflow EGRESS table priorities
OF_EGRESS_SERVICES_PRIO = 50
OF_EGRESS_ANTISPOOF_PRIO = 40
OF_EGRESS_PORT_RULE_PRIO = 30
OF_EGRESS_ALLOW_EGRESS_RULE_PRIO = 20
# Openflow INGRESS table priorities
OF_INGRESS_SERVICES_PRIO = 50
OF_INGRESS_ANTISPOOF_PRIO = 40
OF_INGRESS_PORT_RULE_PRIO = 30
OF_INGRESS_OUTBOUND_PRIO = 10
# Openflow INGRESS_EXT table priorities
OF_INGRESS_EXT_BLOCK_INT_MAC_PRIO = 100
OF_INGRESS_EXT_ALLOW_EXT_TRAFFIC_PRIO = 50
# Openflow LEARN ACTIONS priorities
OF_LEARNED_HIGH_PRIO = 100
OF_LEARNED_LOW_PRIO = 90
INGRESS_DIRECTION = 'ingress'
EGRESS_DIRECTION = 'egress'
ICMPv6 = 'ipv6,nw_proto=58'
LEARN_IDLE_TIMEOUT = 30 # 30 seconds.
LEARN_HARD_TIMEOUT = 1800 # 30 minutes.
DIRECTION_IP_PREFIX = {'ingress': 'source_ip_prefix',
'egress': 'dest_ip_prefix'}
ETH_PROTOCOL_TABLE = {constants.IPv4: "0x0800",
constants.IPv6: "0x86dd"}
IP_PROTOCOL_TABLE = {constants.PROTO_NAME_TCP: constants.PROTO_NUM_TCP,
constants.PROTO_NAME_ICMP: constants.PROTO_NUM_ICMP,
constants.PROTO_NAME_ICMP_V6: constants.PROTO_NUM_ICMP_V6,
constants.PROTO_NAME_UDP: constants.PROTO_NUM_UDP}
class OVSFirewallDriver(firewall.FirewallDriver):
"""Driver which enforces security groups through
Open vSwitch flows.
"""
def __init__(self):
self._filtered_ports = {}
self._filtered_ports_vinfo = {}
self._int_br = ovs_lib.OVSBridge(cfg.CONF.OVS.integration_bridge)
self._int_br_not_deferred = self._int_br
self._deferred = False
# List of security group rules for ports residing on this host
self.sg_rules = {}
# List of security group member ips for ports residing on this
# host
self.sg_members = collections.defaultdict(
lambda: collections.defaultdict(list))
self.pre_sg_members = None
# Known ports managed.
self.known_in_port_for_device = {}
@property
def ports(self):
return self._filtered_ports
def _vif_port_info(self, port_name):
"""Returns additional vif port info: internal vlan tag,
interfaces, segmentation id, net id, network type, physical
network.
"""
port_info = {'name': port_name}
port_info['tag'] = self._int_br_not_deferred.db_get_val('Port',
port_name, 'tag')
port_info['interfaces'] = \
self._int_br_not_deferred.db_get_val('Port',
port_name, 'interfaces')
# Default fields (also other fields could be present):
# net_uuid="e00e6a6a-c88a-4724-80a7-6368a94241d9"
# network_type=vlan
# physical_network=default
# segmentation_id="1402"
port_info.update(self._int_br_not_deferred.db_get_val('Port',
port_name, 'other_config'))
return port_info
def update_security_group_rules(self, sg_id, sg_rules):
LOG.debug("Update rules of security group (%s)", sg_id)
self.sg_rules[sg_id] = sg_rules
def update_security_group_members(self, sg_id, sg_members):
LOG.debug("Update members of security group (%s)", sg_id)
self.sg_members[sg_id] = collections.defaultdict(list, sg_members)
def security_group_updated(self, action_type, sec_group_ids,
device_ids=[]):
pass
def _expand_sg_rule_with_remote_ips(self, rule, port):
"""Expand a remote group rule to rule per remote group IP."""
remote_group_id = rule.get('remote_group_id')
if remote_group_id:
ethertype = rule['ethertype']
port_ips = port.get('fixed_ips', [])
for ip in self.sg_members[remote_group_id][ethertype]:
if ip not in port_ips:
ip_rule = rule.copy()
direction_ip_prefix = (
DIRECTION_IP_PREFIX[rule['direction']])
ip_prefix = str(netaddr.IPNetwork(ip).cidr)
ip_rule[direction_ip_prefix] = ip_prefix
yield ip_rule
else:
yield rule
def apply_port_filter(self, port):
pass
def _add_flow(self, *args, **kwargs):
self._int_br.add_flow(*args, **kwargs)
def _add_base_flows(self, port, vif_port, segmentation_id):
"""Set base flows for every port."""
self._add_zero_table(port, vif_port, segmentation_id)
self._add_port_block_traffic_default(port)
self._add_port_egress(port, vif_port)
self._add_port_egress_antispoof(port, vif_port)
self._add_port_egress_services(port, vif_port)
self._add_port_ingress_allow_outbound_traffic(port)
self._add_port_ingress_services(port, vif_port)
def _add_zero_table(self, port, vif_port, segmentation_id):
"""Set arp flows. The rest of the traffic is sent to
SELECT_TABLE.
"""
# ARP traffic to be delivered to an internal port.
for fixed_ip in port['fixed_ips']:
self._add_flow(priority=OF_T0_ARP_INT_PRIO,
table=OF_ZERO_TABLE,
proto='arp',
dl_vlan=segmentation_id,
nw_dst=fixed_ip,
actions='strip_vlan,output:%s'
% vif_port.ofport)
# In port ARP messages to be delivered out from br-int.
self._add_flow(
priority=OF_T0_ARP_EXT_PRIO,
table=OF_ZERO_TABLE,
proto='arp',
actions='normal')
# Incoming internal traffic.
self._add_flow(priority=OF_T0_SELECT_TABLE_IN_PRIO,
table=OF_ZERO_TABLE,
dl_src=port['mac_address'],
actions="mod_vlan_vid:%s,"
"load:0->NXM_NX_REG0[0..11],"
"resubmit(,%s)"
% (port['zone_id'], OF_SELECT_TABLE))
# Incoming external traffic.
self._add_flow(priority=OF_T0_SELECT_TABLE_EXT_PRIO,
table=OF_ZERO_TABLE,
dl_vlan=segmentation_id,
actions="mod_vlan_vid:%s,"
"load:1->NXM_NX_REG0[0..11],"
"resubmit(,%s)"
% (port['zone_id'], OF_SELECT_TABLE))
def _add_port_egress(self, port, vif_port):
"""Set egress basic rules.
Allow DHCP traffic to request an IP address, send all
traffic matching mac/ip to egress table and allow arp.
"""
# Allow DHCP requests from invalid address
self._add_flow(priority=OF_T0_EGRESS_PRIO,
table=OF_SELECT_TABLE,
in_port=vif_port.ofport,
proto='ip',
dl_vlan=port['zone_id'],
dl_src=port['mac_address'],
nw_src='0.0.0.0',
actions="resubmit(,%s)"
% (OF_EGRESS_TABLE))
for fixed_ip in port['fixed_ips']:
# Jump to egress table per port+ip pair on know mac
self._add_flow(priority=OF_T0_EGRESS_PRIO,
table=OF_SELECT_TABLE,
in_port=vif_port.ofport,
proto='ip',
dl_vlan=port['zone_id'],
dl_src=port['mac_address'],
nw_src=fixed_ip,
actions='resubmit(,%s)' %
(OF_EGRESS_TABLE))
# External traffic to ingress processing table
self._add_flow(
priority=OF_T0_INGRESS_PRIO,
table=OF_SELECT_TABLE,
dl_vlan=port['zone_id'],
dl_dst=port['mac_address'],
actions='resubmit(,%d)'
% (OF_INGRESS_TABLE))
def _add_port_egress_antispoof(self, port, vif_port):
"""Set antispoof rules.
Antispoof rules take precedence to any rules set by
the tenant in the security group.
"""
# No DHCPv4 server out from port.
self._add_flow(priority=OF_EGRESS_ANTISPOOF_PRIO,
table=OF_EGRESS_TABLE,
in_port=vif_port.ofport,
proto='udp',
dl_vlan=port['zone_id'],
udp_src=67,
udp_dst=68,
actions='drop')
# No DHCPv6 server out from port.
self._add_flow(priority=OF_EGRESS_ANTISPOOF_PRIO,
table=OF_EGRESS_TABLE,
in_port=vif_port.ofport,
proto='udp',
dl_vlan=port['zone_id'],
udp_src=547,
udp_dst=546,
actions='drop')
def _add_port_egress_services(self, port, vif_port):
"""Add service rules.
Allows traffic to DHCPv4/v6 servers; allows icmp traffic.
"""
# DHCP & DHCPv6.
for udp_src, udp_dst in [(68, 67), (546, 547)]:
self._add_flow(
table=OF_EGRESS_TABLE,
priority=OF_EGRESS_SERVICES_PRIO,
dl_vlan=port['zone_id'],
dl_src=port['mac_address'],
in_port=vif_port.ofport,
proto='udp',
udp_src=udp_src,
udp_dst=udp_dst,
actions='resubmit(,%s)' % OF_INGRESS_TABLE)
# Allow ICMP router solicitation/etc.
for type in [9, 10]:
self._add_flow(
table=OF_EGRESS_TABLE,
priority=OF_EGRESS_SERVICES_PRIO,
dl_vlan=port['zone_id'],
dl_src=port['mac_address'],
icmp_type=type,
proto='icmp',
actions='resubmit(,%s)' % OF_INGRESS_TABLE)
# Allow ICMPv6 router solicitation/etc.
for icmpv6_type in constants.ICMPV6_ALLOWED_TYPES:
self._add_flow(
table=OF_EGRESS_TABLE,
priority=OF_EGRESS_SERVICES_PRIO,
dl_vlan=port['zone_id'],
dl_src=port['mac_address'],
in_port=vif_port.ofport,
proto=ICMPv6,
icmp_type=icmpv6_type,
actions='resubmit(,%s)' % OF_INGRESS_TABLE)
def _add_port_ingress_allow_outbound_traffic(self, port):
"""Allow ingress outbound traffic.
By default, all ingress traffic not matching any internal port
in the bridge is sent to the external ports.
"""
# If the traffic do not match any mac address inside the bridge,
# send the traffic to the INGRESS_EXT table.
self._add_flow(
table=OF_INGRESS_TABLE,
priority=OF_INGRESS_OUTBOUND_PRIO,
dl_vlan=port['zone_id'],
actions='resubmit(,%s)' % OF_INGRESS_EXT_TABLE)
# Block all traffic in this table if it's for an internal
# port (mac address).
self._add_flow(
table=OF_INGRESS_EXT_TABLE,
priority=OF_INGRESS_EXT_BLOCK_INT_MAC_PRIO,
dl_vlan=port['zone_id'],
dl_dst=port['mac_address'],
actions='drop')
# Use normal action to send the traffic outside the integration
# bridge.
self._add_flow(
table=OF_INGRESS_EXT_TABLE,
priority=OF_INGRESS_EXT_ALLOW_EXT_TRAFFIC_PRIO,
dl_vlan=port['zone_id'],
actions='strip_vlan,normal')
def _add_port_ingress_services(self, port, vif_port):
"""Add service rules.dl_vlan=port['zone_id'],
Allows traffic to DHCPv4/v6 servers; allows icmp traffic.
"""
# DHCP & DHCPv6.
for udp_src, udp_dst in [(67, 68), (547, 546)]:
self._add_flow(
table=OF_INGRESS_TABLE,
priority=OF_INGRESS_SERVICES_PRIO,
proto='udp',
dl_vlan=port['zone_id'],
dl_dst=port['mac_address'],
udp_src=udp_src,
udp_dst=udp_dst,
actions=self._get_ingress_actions(vif_port))
# ICMP RA messages.
for type in [9, 10]:
self._add_flow(
table=OF_INGRESS_TABLE,
priority=OF_INGRESS_SERVICES_PRIO,
proto='icmp',
dl_vlan=port['zone_id'],
dl_dst=port['mac_address'],
icmp_type=type,
actions=self._get_ingress_actions(vif_port))
# ICMP6 RA messages.
for icmpv6_type in constants.ICMPV6_ALLOWED_TYPES:
self._add_flow(
table=OF_INGRESS_TABLE,
priority=OF_INGRESS_SERVICES_PRIO,
proto=ICMPv6,
dl_vlan=port['zone_id'],
dl_dst=port['mac_address'],
icmp_type=icmpv6_type,
actions=self._get_ingress_actions(vif_port))
def _add_port_block_traffic_default(self, port):
"""Block rest of the traffic.
Drop all traffic not generated by or to a VM.
"""
self._add_flow(
priority=OF_DROP_TRAFFIC_PRIO,
table=OF_SELECT_TABLE,
proto='ip',
dl_vlan=port['zone_id'],
actions='drop')
def _get_ingress_actions(self, vif_port):
return 'strip_vlan,output:%(oport)s' % \
{'oport': vif_port.ofport}
def _remove_flows(self, port, vif_port):
self._int_br.delete_flows(dl_src=port["mac_address"])
self._int_br.delete_flows(dl_dst=port["mac_address"])
if vif_port:
self._int_br.delete_flows(in_port=vif_port.ofport)
else:
self._int_br.delete_flows(
in_port=self.known_in_port_for_device.pop(port['device']))
def _get_learn_action_rule(self, direction, priority,
port_range_min, port_range_max,
eth_type, ip_proto, vif_port):
# Ethernet type.
eth_type_num = ETH_PROTOCOL_TABLE.get(eth_type)
# IP type.
ip_proto_num = IP_PROTOCOL_TABLE.get(ip_proto)
port_dst_str = ""
port_src_str = ""
if ip_proto in [constants.PROTO_NAME_TCP,
constants.PROTO_NAME_UDP]:
# Known L4 protocols with configurable ports.
ip_proto_str = "ip_proto=%d," % ip_proto_num
port_dst_str = \
"NXM_OF_%(ip_proto)s_DST[]=NXM_OF_%(ip_proto)s_SRC[]," \
% {'ip_proto': ip_proto.upper()}
port_src_str = \
"NXM_OF_%(ip_proto)s_SRC[]=NXM_OF_%(ip_proto)s_DST[]," \
% {'ip_proto': ip_proto.upper()}
elif ip_proto_num:
# Rest of known L4 protocols without configurable ports.
ip_proto_str = "ip_proto=%d," % ip_proto_num
else:
# No L4 protocol configured.
ip_proto_str = ""
# Setup ICMPv4/v6 type and code.
icmp_type = ""
icmp_code = ""
if ip_proto == constants.PROTO_NAME_ICMP:
if port_range_min == 8:
icmp_type = "icmp_type=%s," % 0
elif port_range_min == 13:
icmp_type = "icmp_type=%s," % 14
elif port_range_min == 15:
icmp_type = "icmp_type=%s," % 16
elif port_range_min == 17:
icmp_type = "icmp_type=%s," % 18
elif port_range_min:
icmp_type = "icmp_type=%s," % port_range_min
if port_range_max:
icmp_code = "icmp_code=%s," % port_range_max
elif ip_proto == constants.PROTO_NAME_ICMP_V6:
if port_range_min:
icmp_type = "icmpv6_type=%s," % port_range_min
if port_range_max:
icmp_code = "icmpv6_code=%s," % port_range_max
# Source and destination IPs.
if eth_type == constants.IPv4:
ip_dst = "NXM_OF_IP_DST[]=NXM_OF_IP_SRC[],"
ip_src = "NXM_OF_IP_SRC[]=NXM_OF_IP_DST[],"
else:
ip_dst = "NXM_NX_IPV6_DST[]=NXM_NX_IPV6_SRC[],"
ip_src = "NXM_NX_IPV6_SRC[]=NXM_NX_IPV6_DST[],"
# Learn action store table:
if direction == INGRESS_DIRECTION:
learn_action_table = OF_EGRESS_TABLE
elif direction == EGRESS_DIRECTION:
learn_action_table = OF_INGRESS_TABLE
learn_actions = "learn(table=%(table)s," \
"priority=%(priority)s," \
"idle_timeout=%(idle_timeout)s," \
"hard_timeout=%(hard_timeout)s," \
"eth_type=%(eth_type)s," \
"%(ip_proto)s" \
"NXM_OF_ETH_SRC[]=NXM_OF_ETH_DST[]," \
"NXM_OF_ETH_DST[]=NXM_OF_ETH_SRC[]," \
"%(ip_src)s" \
"%(ip_dst)s" \
"%(port_dst)s" \
"%(port_src)s" \
"%(icmp_type)s" \
"%(icmp_code)s" \
"NXM_OF_VLAN_TCI[0..11]," \
"load:NXM_NX_REG0[0..11]->NXM_OF_VLAN_TCI[0..11]," \
"output:NXM_OF_IN_PORT[])" % \
{'table': learn_action_table,
'priority': priority,
'idle_timeout': LEARN_IDLE_TIMEOUT,
'hard_timeout': LEARN_HARD_TIMEOUT,
'eth_type': eth_type_num,
'ip_proto': ip_proto_str,
'ip_src': ip_src,
'ip_dst': ip_dst,
'port_dst': port_dst_str,
'port_src': port_src_str,
'icmp_type': icmp_type,
'icmp_code': icmp_code}
if direction == EGRESS_DIRECTION:
return "%(learn_actions)s," \
"resubmit(,%(table)s)" % \
{'learn_actions': learn_actions,
'table': OF_INGRESS_TABLE}
elif direction == INGRESS_DIRECTION:
return "%(learn_actions)s," \
"strip_vlan,output:%(ofport)s" % \
{'learn_actions': learn_actions,
'ofport': vif_port.ofport}
def _select_sg_rules_for_port(self, port):
"""Select rules from the security groups the port is member of."""
port_sg_ids = port.get('security_groups', [])
port_rules = []
for sg_id in port_sg_ids:
for rule in self.sg_rules.get(sg_id, []):
port_rules.extend(
self._expand_sg_rule_with_remote_ips(rule, port))
return port_rules
def _write_flows_per_port_match(self, flow, port_match):
if port_match == "" or isinstance(flow[port_match], int):
self._int_br.add_flow(**flow)
elif isinstance(flow[port_match], list):
for portm in flow[port_match]:
hp_flow = dict.copy(flow)
hp_flow[port_match] = portm
self._int_br.add_flow(**hp_flow)
def _write_flows_per_ip(self, flow, rule, port, port_match):
"""Write the needed flows per each IP in the port."""
vif_port = self._int_br_not_deferred.get_vif_port_by_id(
port['device'])
for fixed_ip in port['fixed_ips']:
# Check if the rule and the IP address have the same version.
if rule['ethertype'] != \
self._ip_version_from_address(fixed_ip):
continue
if rule['direction'] == EGRESS_DIRECTION:
flow['nw_src'] = fixed_ip
elif rule['direction'] == INGRESS_DIRECTION:
flow['nw_dst'] = fixed_ip
# Write learn actions.
# Default protocol: "ip". Create high priority rules
# for TCP and UDP protocols.
if flow['proto'] == 'ip':
for proto in [constants.PROTO_NAME_TCP,
constants.PROTO_NAME_UDP]:
hp_flow = dict.copy(flow)
hp_flow['proto'] = proto
hp_flow['actions'] = self._get_learn_action_rule(
rule['direction'],
OF_LEARNED_HIGH_PRIO,
"",
"",
rule['ethertype'],
proto,
vif_port)
LOG.debug("OFW rule %s flow %s", rule, hp_flow)
self._write_flows_per_port_match(hp_flow, port_match)
# Write normal "learn action" for every flow.
flow['actions'] = self._get_learn_action_rule(
rule['direction'],
OF_LEARNED_LOW_PRIO,
rule.get('port_range_min'),
rule.get('port_range_max'),
rule['ethertype'],
rule.get('protocol'),
vif_port)
LOG.debug("OFW rule %s flow %s", rule, flow)
self._write_flows_per_port_match(flow, port_match)
def _add_rules_flows(self, port):
rules = self._select_sg_rules_for_port(port)
for rule in rules:
ethertype = rule['ethertype']
direction = rule['direction']
protocol = rule.get('protocol')
port_range_min = rule.get('port_range_min')
port_range_max = rule.get('port_range_max')
source_ip_prefix = rule.get('source_ip_prefix')
dest_ip_prefix = rule.get('dest_ip_prefix')
flow = {}
# Direcction.
if direction == EGRESS_DIRECTION:
flow['priority'] = OF_EGRESS_PORT_RULE_PRIO
flow['table'] = OF_EGRESS_TABLE
flow["dl_src"] = port["mac_address"]
elif direction == INGRESS_DIRECTION:
flow['priority'] = OF_INGRESS_PORT_RULE_PRIO
flow['table'] = OF_INGRESS_TABLE
flow["dl_dst"] = port["mac_address"]
# Protocol.
if protocol:
if protocol == constants.PROTO_NAME_ICMP and \
ethertype == constants.IPv6:
flow["proto"] = ICMPv6
else:
flow["proto"] = protocol
else:
# Default protocol: 'ip'
flow['proto'] = 'ip'
# Port range.
port_match = ""
if (port_range_min and port_range_max and
protocol in [constants.PROTO_NAME_TCP,
constants.PROTO_NAME_UDP]):
port_match = "%s_dst" % protocol
if port_range_max > port_range_min:
flow[port_match] = self._port_rule_masking(
port_range_min,
port_range_max)
else:
flow[port_match] = int(port_range_min)
# Destination and source address.
if dest_ip_prefix and dest_ip_prefix != "0.0.0.0/0":
flow["nw_dst"] = dest_ip_prefix
if source_ip_prefix and source_ip_prefix != "0.0.0.0/0":
flow["nw_src"] = source_ip_prefix
# Write flow.
self._write_flows_per_ip(flow, rule, port, port_match)
def _apply_flows(self):
self._int_br.apply_flows()
def prepare_port_filter(self, port):
LOG.debug("OFW Preparing device (%s) filter: %s", port['device'],
port)
vif_port = self._int_br_not_deferred.get_vif_port_by_id(
port['device'])
self._filtered_ports[port['device']] = port
self._filtered_ports_vinfo[port['device']] = \
self._vif_port_info(vif_port.port_name)
segmentation_id = \
self._filtered_ports_vinfo[port['device']]['segmentation_id']
self._remove_flows(port, vif_port)
self._add_base_flows(port, vif_port, segmentation_id)
self.known_in_port_for_device[port['device']] = vif_port.ofport
def update_port_filter(self, port):
LOG.debug("OFW Updating device (%s) filter: %s", port['device'],
port)
if port['device'] not in self._filtered_ports:
LOG.info(_('Attempted to update port filter which is not '
'filtered %s'), port['device'])
return
old_port = self._filtered_ports[port['device']]
vif_port = self._int_br_not_deferred.get_vif_port_by_id(
port['device'])
self._filtered_ports[port['device']] = port
self._filtered_ports_vinfo[port['device']] = \
self._vif_port_info(vif_port.port_name)
segmentation_id = \
self._filtered_ports_vinfo[port['device']]['segmentation_id']
self._remove_flows(old_port, vif_port)
self._add_base_flows(port, vif_port, segmentation_id)
self.known_in_port_for_device[port['device']] = vif_port.ofport
def remove_port_filter(self, port):
LOG.debug("OFW Removing device (%s) filter: %s", port['device'],
port)
if not self._filtered_ports.get(port['device']):
LOG.info(_('Attempted to remove port filter which is not '
'filtered %r'), port)
return
vif_port = self._int_br_not_deferred.get_vif_port_by_id(
port['device'])
self._remove_flows(port, vif_port)
self._filtered_ports.pop(port['device'])
self._filtered_ports_vinfo.pop(port['device'])
def filter_defer_apply_on(self):
LOG.debug("OFW defer_apply_on")
if not self._deferred:
self._int_br = ovs_lib.DeferredOVSBridge(
self._int_br_not_deferred, full_ordered=True)
self._deferred = True
def filter_defer_apply_off(self):
LOG.debug("OFW defer_apply_off")
if self._deferred:
for table in [OF_ZERO_TABLE,
OF_SELECT_TABLE,
OF_EGRESS_TABLE,
OF_INGRESS_TABLE,
OF_INGRESS_EXT_TABLE]:
self._int_br_not_deferred.dump_flows_for_table(table)
for port in self.ports.values():
self._add_rules_flows(port)
self._apply_flows()
self._deferred = False
@staticmethod
def _ip_version_from_address(ip_string):
ipv4_pattern = \
"^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}" \
"(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$"
ipv6_pattern = "^(?:[0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}$"
ipv6_pattern_hexcompressed = \
"^((?:[0-9A-Fa-f]{1,4}(?::[0-9A-Fa-f]" \
"{1,4})*)?)::((?:[0-9A-Fa-f]{1,4}(?::[0-9A-Fa-f]{1,4})*)?)$"
ipv6_pattern_hex4dec = \
"^((?:[0-9A-Fa-f]{1,4}:){6,6})(25[0-5]|2[0-4]" \
"\d|[0-1]?\d?\d)(\.(25[0-5]|2[0-4]\d|[0-1]?\d?\d)){3}\z"
ipv6_pattern_hex4deccompressed = \
"^((?:[0-9A-Fa-f]{1,4}(?::[0-9A-Fa-f]" \
"{1,4})*)?) ::((?:[0-9A-Fa-f]{1,4}:)*)(25[0-5]|2[0-4]" \
"\d|[0-1]?\d?\d)(\.(25[0-5]|2[0-4]\d|[0-1]?\d?\d)){3}$"
if re.search(ipv4_pattern, ip_string):
return constants.IPv4
if re.search(ipv6_pattern, ip_string) or \
re.search(ipv6_pattern_hexcompressed, ip_string) or \
re.search(ipv6_pattern_hex4dec, ip_string) or \
re.search(ipv6_pattern_hex4deccompressed, ip_string):
return constants.IPv6
raise ValueError(_('Illegal IP string address'))
@staticmethod
def _port_rule_masking(port_min, port_max):
# Unsigned 16 bit MAX.
MAX_UINT16 = 0xffff
def create_mask(lsb_mask):
return (MAX_UINT16 << int(math.floor(math.log(lsb_mask, 2)))) \
& MAX_UINT16
def reduce_mask(mask, step=1):
mask <<= step
return mask & MAX_UINT16
def increase_mask(mask, step=1):
for index in range(0, step):
mask >>= 1
mask |= 0x8000
return mask
def hex_format(number):
return format(number, '#06x')
# Check port_max >= port_min.
if port_max < port_min:
raise ValueError(_("'port_max' is smaller than 'port_min'"))
# Rules to be added to OVS.
rules = []
# Loop from the lower part. Increment port_min.
bit_right = 1
mask = MAX_UINT16
t_port_min = port_min
while True:
# Obtain last significative bit.
bit_min = port_min & bit_right
# Take care of first bit.
if bit_right == 1:
if bit_min > 0:
rules.append("%s" % (hex_format(t_port_min)))
else:
mask = create_mask(2)
rules.append("%s/%s" % (hex_format(t_port_min & mask),
hex_format(mask)))
elif bit_min == 0:
mask = create_mask(bit_right)
t_port_min += bit_right
# If the temporal variable we are using exceeds the
# port_max value, exit the loop.
if t_port_min > port_max:
break
rules.append("%s/%s" % (hex_format(t_port_min & mask),
hex_format(mask)))
# If the temporal variable we are using exceeds the
# port_max value, exit the loop.
if t_port_min > port_max:
break
bit_right <<= 1
# Loop from the higher part.
bit_position = int(round(math.log(port_max, 2)))
bit_left = 1 << bit_position
mask = MAX_UINT16
mask = reduce_mask(mask, bit_position)
# Find the most significative bit of port_max, higher
# than the most significative bit of port_min.
while mask < MAX_UINT16:
bit_max = port_max & bit_left
bit_min = port_min & bit_left
if bit_max > bit_min:
# Difference found.
break
# Rotate bit_left to the right and increase mask.
bit_left >>= 1
mask = increase_mask(mask)
while bit_left > 1:
# Obtain next most significative bit.
bit_left >>= 1
bit_max = port_max & bit_left
if bit_left == 1:
if bit_max == 0:
rules.append("%s" % (hex_format(port_max)))
else:
mask = create_mask(2)
rules.append("%s/%s" % (hex_format(port_max & mask),
hex_format(mask)))
elif bit_max > 0:
t_port_max = port_max - bit_max
mask = create_mask(bit_left)
rules.append("%s/%s" % (hex_format(t_port_max),
hex_format(mask)))
return rules
|