Merge "Remove rootwrap execution (2)"

This commit is contained in:
Zuul 2021-02-11 20:25:24 +00:00 committed by Gerrit Code Review
commit 73e1175602
10 changed files with 37 additions and 18 deletions

View File

@ -120,6 +120,8 @@ class NeutronDebugAgent(object):
if not command:
return "sudo ip netns exec %s" % self._get_namespace(port)
namespace = ip.ensure_namespace(namespace)
# NOTE(ralonsoh): this is going to be called from inside the
# "neutron-debug" shell command; privsep is not configured.
return namespace.netns.execute(shlex.split(command))
def ensure_probe(self, network_id):

View File

@ -111,8 +111,9 @@ def assert_ping(src_namespace, dst_ip, timeout=1, count=3):
ipversion = netaddr.IPAddress(dst_ip).version
ping_command = 'ping' if ipversion == 4 else 'ping6'
ns_ip_wrapper = ip_lib.IPWrapper(src_namespace)
ns_ip_wrapper.netns.execute([ping_command, '-W', timeout, '-c', count,
dst_ip])
ns_ip_wrapper.netns.execute(
[ping_command, '-W', timeout, '-c', count, dst_ip],
privsep_exec=True)
def assert_async_ping(src_namespace, dst_ip, timeout=1, count=1, interval=1):
@ -124,8 +125,9 @@ def assert_async_ping(src_namespace, dst_ip, timeout=1, count=1, interval=1):
# cannot be used and it needs to be done using the following workaround.
for _index in range(count):
start_time = time.time()
ns_ip_wrapper.netns.execute([ping_command, '-W', timeout, '-c', '1',
dst_ip])
ns_ip_wrapper.netns.execute(
[ping_command, '-W', timeout, '-c', '1', dst_ip],
privsep_exec=True)
end_time = time.time()
diff = end_time - start_time
if 0 < diff < interval:
@ -167,7 +169,7 @@ def assert_arping(src_namespace, dst_ip, source=None, timeout=1, count=1):
if source:
arping_cmd.extend(['-s', source])
arping_cmd.append(dst_ip)
ns_ip_wrapper.netns.execute(arping_cmd)
ns_ip_wrapper.netns.execute(arping_cmd, privsep_exec=True)
def assert_no_arping(src_namespace, dst_ip, source=None, timeout=1, count=1):
@ -223,7 +225,8 @@ def get_free_namespace_port(protocol, namespace=None, start=1024, end=None):
raise ValueError("Unsupported protocol %s" % protocol)
ip_wrapper = ip_lib.IPWrapper(namespace=namespace)
output = ip_wrapper.netns.execute(['ss', param], run_as_root=True)
output = ip_wrapper.netns.execute(['ss', param], run_as_root=True,
privsep_exec=True)
used_ports = _get_source_ports_from_ss_output(output)
return get_unused_port(used_ports, start, end)

View File

@ -199,8 +199,9 @@ class L3AgentTestFramework(base.BaseSudoTestCase):
self.addCleanup(netcat.stop_processes)
def assert_num_of_conntrack_rules(n):
out = router_ns.netns.execute(["conntrack", "-L",
"--orig-src", client_address])
out = router_ns.netns.execute(
["conntrack", "-L", "--orig-src", client_address],
privsep_exec=True)
self.assertEqual(
n, len([line for line in out.strip().split('\n') if line]))
@ -274,8 +275,9 @@ class L3AgentTestFramework(base.BaseSudoTestCase):
ip_wrapper = ip_lib.IPWrapper(namespace=ns_name)
def _ipv6_accept_ra_state():
ra_state = ip_wrapper.netns.execute(['sysctl', '-b',
'net.ipv6.conf.%s.accept_ra' % device_name])
ra_state = ip_wrapper.netns.execute(
['sysctl', '-b', 'net.ipv6.conf.%s.accept_ra' % device_name],
privsep_exec=True)
return (
enabled == (int(ra_state) != constants.ACCEPT_RA_DISABLED))

View File

@ -320,7 +320,7 @@ class L3AgentTestCase(framework.L3AgentTestFramework):
# Verify that the ping replys with fip
ns_ip_wrapper = ip_lib.IPWrapper(src_machine.namespace)
result = ns_ip_wrapper.netns.execute(
['ping', '-W', 5, '-c', 1, dst_fip])
['ping', '-W', 5, '-c', 1, dst_fip], privsep_exec=True)
self._assert_ping_reply_from_expected_address(result, dst_fip)
def _setup_address_scope(self, internal_address_scope1,

View File

@ -92,7 +92,8 @@ class KeepalivedManagerTestCase(base.BaseSudoTestCase,
# Exit the process, and see that when it comes back
# It's indeed a different process
self.ip_wrapper.netns.execute(['kill', exit_code, pid])
self.ip_wrapper.netns.execute(['kill', exit_code, pid],
privsep_exec=True)
common_utils.wait_until_true(
lambda: process.active and pid != process.pid,
timeout=5,

View File

@ -178,7 +178,8 @@ class DHCPAgentOVSTestFramework(base.BaseSudoTestCase):
def assert_accept_ra_disabled(self, namespace):
actual = ip_lib.IPWrapper(namespace=namespace).netns.execute(
['sysctl', '-b', 'net.ipv6.conf.default.accept_ra'])
['sysctl', '-b', 'net.ipv6.conf.default.accept_ra'],
privsep_exec=True)
self.assertEqual('0', actual)
def assert_dhcp_device(self, namespace, dhcp_iface_name, dhcp_enabled):

View File

@ -175,8 +175,9 @@ class ARPSpoofTestCase(OVSAgentTestBase):
self.dst_p.addr.add('%s/24' % self.dst_addr)
ns_ip_wrapper = ip_lib.IPWrapper(self.src_namespace)
try:
ns_ip_wrapper.netns.execute(['arping', '-I', self.src_p.name,
'-c1', self.dst_addr])
ns_ip_wrapper.netns.execute(
['arping', '-I', self.src_p.name, '-c1', self.dst_addr],
privsep_exec=True)
tools.fail("arping should have failed. The arp request should "
"have been blocked.")
except RuntimeError:

View File

@ -13,6 +13,7 @@
# License for the specific language governing permissions and limitations
# under the License.
import os
from unittest import mock
import fixtures
@ -40,10 +41,15 @@ class LinuxbridgeCleanupTest(base.BaseSudoTestCase):
# NOTE(slaweq): use of oslo.privsep inside neutron-linuxbridge-cleanup
# script requires rootwrap helper to be configured in this script's
# config
privsep_helper = os.path.join(
os.getenv('VIRTUAL_ENV'), 'bin', 'privsep-helper')
config.update({
'AGENT': {
'root_helper': tests_base.get_rootwrap_cmd(),
'root_helper_daemon': tests_base.get_rootwrap_daemon_cmd()
},
'privsep': {
'helper_command': ' '.join(['sudo', '-E', privsep_helper]),
}
})
@ -57,7 +63,7 @@ class LinuxbridgeCleanupTest(base.BaseSudoTestCase):
cmd = 'neutron-linuxbridge-cleanup', '--config-file', conf.filename
ip_wrapper = ip_lib.IPWrapper(br_fixture.namespace)
ip_wrapper.netns.execute(cmd)
ip_wrapper.netns.execute(cmd, privsep_exec=True)
self.assertEqual(bridge_exists, ip_lib.device_exists(
br_fixture.bridge.name, br_fixture.namespace))

View File

@ -144,8 +144,8 @@ class NetnsCleanupTest(base.BaseSudoTestCase):
# Otherwise, it won't find the necessary packages such as
# oslo_config
ip.netns.execute(command,
addl_env={'PATH':
os.environ.get('PATH')})
addl_env={'PATH': os.environ.get('PATH')},
privsep_exec=True)
return proc_count
@staticmethod

View File

@ -638,6 +638,9 @@ class ListNamespacePids(functional_base.BaseSudoTestCase):
@staticmethod
def _run_sleep(namespace, timeout):
ip_wrapper = ip_lib.IPWrapper(namespace=namespace)
# NOTE(ralonsoh): this is a "long" (more than one second) lived
# process. It should not be executed in a privsep context to avoid
# a possible privsep thread starvation.
ip_wrapper.netns.execute(['sleep', timeout], check_exit_code=False)
def _check_pids(self, num_pids, namespace=None):