Call _destroy_metadata_proxy from _destroy_router_namespaces

Refactor _spawn/destroy_metadata_proxy so that it can be called
with only the namespace and the router_id.

Change-Id: Id1c33b22c7c3bd35c54a7c9ad419831bfed8746b
Closes-Bug: #1252856
(cherry picked from commit 07d5970797)
Related-Bug: #1175695
This commit is contained in:
Carl Baldwin 2013-11-19 17:47:43 +00:00 committed by Jakub Libosvar
parent f52449e60b
commit 6cc649a8fc
3 changed files with 23 additions and 25 deletions

View File

@ -243,14 +243,18 @@ class L3NATAgent(firewall_l3_agent.FWaaSL3AgentRpcCallback, manager.Manager):
If only_router_id is passed, only destroy single namespace, to allow If only_router_id is passed, only destroy single namespace, to allow
for multiple l3 agents on the same host, without stepping on each for multiple l3 agents on the same host, without stepping on each
other's toes on init. This only makes sense if router_id is set. other's toes on init. This only makes sense if only_router_id is set.
""" """
root_ip = ip_lib.IPWrapper(self.root_helper) root_ip = ip_lib.IPWrapper(self.root_helper)
for ns in root_ip.get_namespaces(self.root_helper): for ns in root_ip.get_namespaces(self.root_helper):
if ns.startswith(NS_PREFIX): if ns.startswith(NS_PREFIX):
if only_router_id and not ns.endswith(only_router_id): router_id = ns[len(NS_PREFIX):]
if only_router_id and not only_router_id == router_id:
continue continue
if self.conf.enable_metadata_proxy:
self._destroy_metadata_proxy(router_id, ns)
try: try:
self._destroy_router_namespace(ns) self._destroy_router_namespace(ns)
except Exception: except Exception:
@ -304,7 +308,7 @@ class L3NATAgent(firewall_l3_agent.FWaaSL3AgentRpcCallback, manager.Manager):
ri.iptables_manager.apply() ri.iptables_manager.apply()
super(L3NATAgent, self).process_router_add(ri) super(L3NATAgent, self).process_router_add(ri)
if self.conf.enable_metadata_proxy: if self.conf.enable_metadata_proxy:
self._spawn_metadata_proxy(ri) self._spawn_metadata_proxy(ri.router_id, ri.ns_name())
def _router_removed(self, router_id): def _router_removed(self, router_id):
ri = self.router_info.get(router_id) ri = self.router_info.get(router_id)
@ -322,37 +326,37 @@ class L3NATAgent(firewall_l3_agent.FWaaSL3AgentRpcCallback, manager.Manager):
ri.iptables_manager.ipv4['nat'].remove_rule(c, r) ri.iptables_manager.ipv4['nat'].remove_rule(c, r)
ri.iptables_manager.apply() ri.iptables_manager.apply()
if self.conf.enable_metadata_proxy: if self.conf.enable_metadata_proxy:
self._destroy_metadata_proxy(ri) self._destroy_metadata_proxy(ri.router_id, ri.ns_name())
del self.router_info[router_id] del self.router_info[router_id]
self._destroy_router_namespace(ri.ns_name()) self._destroy_router_namespace(ri.ns_name())
def _spawn_metadata_proxy(self, router_info): def _spawn_metadata_proxy(self, router_id, ns_name):
def callback(pid_file): def callback(pid_file):
metadata_proxy_socket = cfg.CONF.metadata_proxy_socket metadata_proxy_socket = cfg.CONF.metadata_proxy_socket
proxy_cmd = ['neutron-ns-metadata-proxy', proxy_cmd = ['neutron-ns-metadata-proxy',
'--pid_file=%s' % pid_file, '--pid_file=%s' % pid_file,
'--metadata_proxy_socket=%s' % metadata_proxy_socket, '--metadata_proxy_socket=%s' % metadata_proxy_socket,
'--router_id=%s' % router_info.router_id, '--router_id=%s' % router_id,
'--state_path=%s' % self.conf.state_path, '--state_path=%s' % self.conf.state_path,
'--metadata_port=%s' % self.conf.metadata_port] '--metadata_port=%s' % self.conf.metadata_port]
proxy_cmd.extend(config.get_log_args( proxy_cmd.extend(config.get_log_args(
cfg.CONF, 'neutron-ns-metadata-proxy-%s.log' % cfg.CONF, 'neutron-ns-metadata-proxy-%s.log' %
router_info.router_id)) router_id))
return proxy_cmd return proxy_cmd
pm = external_process.ProcessManager( pm = external_process.ProcessManager(
self.conf, self.conf,
router_info.router_id, router_id,
self.root_helper, self.root_helper,
router_info.ns_name()) ns_name)
pm.enable(callback) pm.enable(callback)
def _destroy_metadata_proxy(self, router_info): def _destroy_metadata_proxy(self, router_id, ns_name):
pm = external_process.ProcessManager( pm = external_process.ProcessManager(
self.conf, self.conf,
router_info.router_id, router_id,
self.root_helper, self.root_helper,
router_info.ns_name()) ns_name)
pm.disable() pm.disable()
def _set_subnet_info(self, port): def _set_subnet_info(self, port):

View File

@ -88,10 +88,10 @@ class vArmourL3NATAgent(l3_agent.L3NATAgent,
del self.router_info[router_id] del self.router_info[router_id]
def _spawn_metadata_proxy(self, router_info): def _spawn_metadata_proxy(self, router_id, ns_name):
return return
def _destroy_metadata_proxy(self, router_info): def _destroy_metadata_proxy(self, router_id, ns_name):
return return
def _set_subnet_info(self, port): def _set_subnet_info(self, port):

View File

@ -668,12 +668,12 @@ class TestBasicRouterOperations(base.BaseTestCase):
agent, '_spawn_metadata_proxy') as spawn_proxy: agent, '_spawn_metadata_proxy') as spawn_proxy:
agent._router_added(router_id, router) agent._router_added(router_id, router)
if enableflag: if enableflag:
spawn_proxy.assert_called_with(mock.ANY) spawn_proxy.assert_called_with(mock.ANY, mock.ANY)
else: else:
self.assertFalse(spawn_proxy.call_count) self.assertFalse(spawn_proxy.call_count)
agent._router_removed(router_id) agent._router_removed(router_id)
if enableflag: if enableflag:
destroy_proxy.assert_called_with(mock.ANY) destroy_proxy.assert_called_with(mock.ANY, mock.ANY)
else: else:
self.assertFalse(destroy_proxy.call_count) self.assertFalse(destroy_proxy.call_count)
@ -783,19 +783,13 @@ class TestL3AgentEventHandler(base.BaseTestCase):
cfg.CONF.set_override('log_file', 'test.log') cfg.CONF.set_override('log_file', 'test.log')
cfg.CONF.set_override('debug', True) cfg.CONF.set_override('debug', True)
router_info = l3_agent.RouterInfo(
router_id, cfg.CONF.root_helper, cfg.CONF.use_namespaces, None
)
self.external_process_p.stop() self.external_process_p.stop()
ns = 'qrouter-' + router_id
try: try:
with mock.patch(ip_class_path) as ip_mock: with mock.patch(ip_class_path) as ip_mock:
self.agent._spawn_metadata_proxy(router_info) self.agent._spawn_metadata_proxy(router_id, ns)
ip_mock.assert_has_calls([ ip_mock.assert_has_calls([
mock.call( mock.call('sudo', ns),
'sudo',
'qrouter-' + router_id
),
mock.call().netns.execute([ mock.call().netns.execute([
'neutron-ns-metadata-proxy', 'neutron-ns-metadata-proxy',
mock.ANY, mock.ANY,