
This reverts commit caae7b6a6f5e8944dbe359b6472be2507bbf5e12. Reason for revert: Many users still need L3 firewalls and Inspur team wants to maintain this project. Neutron drivers team discussed the topic of the maintenance of neutron-fwaas, and agreed to include neutron-fwaas again to Neutron stadium[1]. Some updates have been made: Remove use "autonested_transaction" method, see more [2] Replace "neutron_lib.callbacks.registry.notify" with "registry.publish" Replace rootwrap execution with privsep context execution. Ensure db Models and migration scripts are sync, set table firewall_group_port_associations_v2's two columns nullable=False [1] https://meetings.opendev.org/meetings/neutron_drivers/2022/neutron_drivers.2022-01-28-14.00.log.html#l-14 [2] https://review.opendev.org/c/openstack/neutron-lib/+/761728 Change-Id: I14f551c199d9badcf25b9e65c954c012326d27cd
87 lines
2.7 KiB
Python
87 lines
2.7 KiB
Python
# Copyright (c) 2017 Fujitsu Limited
|
|
# 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.
|
|
#
|
|
# Some parts are based on python-conntrack:
|
|
# Copyright (c) 2009-2011,2015 Andrew Grigorev <andrew@ei-grad.ru>
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
# in the Software without restriction, including without limitation the rights
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
# furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in
|
|
# all copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
# THE SOFTWARE.
|
|
#
|
|
|
|
import socket
|
|
|
|
|
|
CONNTRACK = 0
|
|
|
|
NFCT_O_PLAIN = 0
|
|
|
|
NFCT_OF_TIME_BIT = 1
|
|
NFCT_OF_TIME = 1 << NFCT_OF_TIME_BIT
|
|
|
|
NFCT_Q_DESTROY = 2
|
|
NFCT_Q_FLUSH = 4
|
|
NFCT_Q_DUMP = 5
|
|
NFCT_T_DESTROY_BIT = 2
|
|
NFCT_T_DESTROY = 1 << NFCT_T_DESTROY_BIT
|
|
|
|
ATTR_IPV4_SRC = 0
|
|
ATTR_IPV4_DST = 1
|
|
ATTR_IPV6_SRC = 4
|
|
ATTR_IPV6_DST = 5
|
|
ATTR_PORT_SRC = 8
|
|
ATTR_PORT_DST = 9
|
|
ATTR_ICMP_TYPE = 12
|
|
ATTR_ICMP_CODE = 13
|
|
ATTR_ICMP_ID = 14
|
|
ATTR_L3PROTO = 15
|
|
ATTR_L4PROTO = 17
|
|
|
|
NFCT_T_NEW_BIT = 0
|
|
NFCT_T_NEW = 1 << NFCT_T_NEW_BIT
|
|
NFCT_T_UPDATE_BIT = 1
|
|
NFCT_T_UPDATE = 1 << NFCT_T_UPDATE_BIT
|
|
NFCT_T_DESTROY_BIT = 2
|
|
NFCT_T_DESTROY = 1 << NFCT_T_DESTROY_BIT
|
|
|
|
NFCT_T_ALL = NFCT_T_NEW | NFCT_T_UPDATE | NFCT_T_DESTROY
|
|
|
|
NFCT_CB_CONTINUE = 1
|
|
NFCT_CB_FAILURE = -1
|
|
|
|
NFNL_SUBSYS_CTNETLINK = 0
|
|
|
|
BUFFER = 1024
|
|
# IPv6 address memory buffer
|
|
ADDR_BUFFER_6 = 16
|
|
ADDR_BUFFER_4 = 4
|
|
|
|
IPVERSION_SOCKET = {4: socket.AF_INET, 6: socket.AF_INET6}
|
|
IPVERSION_BUFFER = {4: ADDR_BUFFER_4, 6: ADDR_BUFFER_6}
|