Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for network namespaces #160

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ Some functions of ryu require extra packages:
- NETCONF requires paramiko
- BGP speaker (SSH console) requires paramiko
- Zebra protocol service (database) requires SQLAlchemy
- Network namespaces for BGP sockets requires netns

If you want to use these functions, please install the requirements::

Expand Down
5 changes: 2 additions & 3 deletions ryu/services/protocols/bgp/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,7 @@ def get_localname(self, sock):
addr, port = sock.getsockname()[:2]
return self._canonicalize_ip(addr), str(port)

# XXX JvB not used
def _create_listen_socket(self, family, loc_addr):
s = socket.socket(family)
s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
Expand All @@ -365,7 +366,7 @@ def _listen_tcp(self, loc_addr, conn_handle):
For each connection `server_factory` starts a new protocol.
"""
info = socket.getaddrinfo(loc_addr[0], loc_addr[1], socket.AF_UNSPEC,
socket.SOCK_STREAM, 0, socket.AI_PASSIVE)
socket.SOCK_STREAM, 0, socket.AI_PASSIVE)
listen_sockets = {}
for res in info:
af, socktype, proto, _, sa = res
Expand All @@ -375,13 +376,11 @@ def _listen_tcp(self, loc_addr, conn_handle):
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
if af == socket.AF_INET6:
sock.setsockopt(socket.IPPROTO_IPV6, socket.IPV6_V6ONLY, 1)

sock.bind(sa)
sock.listen(50)
listen_sockets[sa] = sock
except socket.error as e:
LOG.error('Error creating socket: %s', e)

if sock:
sock.close()

Expand Down
6 changes: 6 additions & 0 deletions ryu/services/protocols/bgp/bgpspeaker.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@
from ryu.services.protocols.bgp.rtconf.common import LABEL_RANGE
from ryu.services.protocols.bgp.rtconf.common import ALLOW_LOCAL_AS_IN_COUNT
from ryu.services.protocols.bgp.rtconf.common import LOCAL_PREF
from ryu.services.protocols.bgp.rtconf.common import NET_NS
from ryu.services.protocols.bgp.rtconf.common import DEFAULT_LOCAL_PREF
from ryu.services.protocols.bgp.rtconf import neighbors
from ryu.services.protocols.bgp.rtconf import vrfs
Expand Down Expand Up @@ -290,6 +291,9 @@ class BGPSpeaker(object):
It must be the string representation of an IPv4 address.
If omitted, "router_id" is used for this field.

``net_ns`` specifies a custom network namespace to use. If omitted, the
current process namespace is used.

``local_pref`` specifies the default local preference. It must be an
integer.
"""
Expand All @@ -308,6 +312,7 @@ def __init__(self, as_number, router_id,
label_range=DEFAULT_LABEL_RANGE,
allow_local_as_in_count=0,
cluster_id=None,
net_ns=None, # JvB added
local_pref=DEFAULT_LOCAL_PREF):
super(BGPSpeaker, self).__init__()

Expand All @@ -322,6 +327,7 @@ def __init__(self, as_number, router_id,
ALLOW_LOCAL_AS_IN_COUNT: allow_local_as_in_count,
CLUSTER_ID: cluster_id,
LOCAL_PREF: local_pref,
NET_NS: net_ns,
}
self._core_start(settings)
self._init_signal_listeners()
Expand Down
14 changes: 11 additions & 3 deletions ryu/services/protocols/bgp/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,9 +231,17 @@ def _run(self, *args, **kwargs):
self.listen_sockets = {}
if self._common_config.bgp_server_port != 0:
for host in self._common_config.bgp_server_hosts:
server_thread, sockets = self._listen_tcp(
(host, self._common_config.bgp_server_port),
self.start_protocol)
if self._common_conf.net_ns is not None:
import netns
with netns.NetNS(nsname=self._common_conf.net_ns):
server_thread, sockets = self._listen_tcp(
(host, self._common_config.bgp_server_port),
self.start_protocol)
else:
server_thread, sockets = self._listen_tcp(
(host, self._common_config.bgp_server_port),
self.start_protocol)

self.listen_sockets.update(sockets)
server_thread.wait()
processor_thread.wait()
Expand Down
22 changes: 17 additions & 5 deletions ryu/services/protocols/bgp/peer.py
Original file line number Diff line number Diff line change
Expand Up @@ -1293,11 +1293,23 @@ def _connect_loop(self, client_factory):
tcp_conn_timeout = self._common_conf.tcp_conn_timeout
try:
password = self._neigh_conf.password
self._connect_tcp(peer_address,
client_factory,
time_out=tcp_conn_timeout,
bind_address=bind_addr,
password=password)

if self._common_conf.net_ns is not None:
import netns
LOG.debug('Connecting to neighbor using netns %s',
self._common_conf.net_ns)
with netns.NetNS(nsname=self._common_conf.net_ns):
self._connect_tcp(peer_address,
client_factory,
time_out=tcp_conn_timeout,
bind_address=bind_addr,
password=password)
else:
self._connect_tcp(peer_address,
client_factory,
time_out=tcp_conn_timeout,
bind_address=bind_addr,
password=password)
except socket.error:
self.state.bgp_state = const.BGP_FSM_ACTIVE
if LOG.isEnabledFor(logging.DEBUG):
Expand Down
10 changes: 9 additions & 1 deletion ryu/services/protocols/bgp/rtconf/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
LABEL_RANGE_MAX = 'max'
LABEL_RANGE_MIN = 'min'
LOCAL_PREF = 'local_pref'
NET_NS = 'net_ns'

# Similar to Cisco command 'allowas-in'. Allows the local ASN in the path.
# Facilitates auto rd, auto rt import/export
Expand Down Expand Up @@ -264,7 +265,7 @@ class CommonConf(BaseConf):
MAX_PATH_EXT_RTFILTER_ALL,
ALLOW_LOCAL_AS_IN_COUNT,
CLUSTER_ID,
LOCAL_PREF])
LOCAL_PREF, NET_NS])

def __init__(self, **kwargs):
super(CommonConf, self).__init__(**kwargs)
Expand Down Expand Up @@ -294,6 +295,9 @@ def _init_opt_settings(self, **kwargs):
CLUSTER_ID, kwargs[ROUTER_ID], **kwargs)
self._settings[LOCAL_PREF] = compute_optional_conf(
LOCAL_PREF, DEFAULT_LOCAL_PREF, **kwargs)
self._settings[NET_NS] = compute_optional_conf(
NET_NS, None, **kwargs)


# =========================================================================
# Required attributes
Expand Down Expand Up @@ -354,6 +358,10 @@ def max_path_ext_rtfilter_all(self):
def local_pref(self):
return self._settings[LOCAL_PREF]

@property
def net_ns(self):
return self._settings[NET_NS]

@classmethod
def get_opt_settings(self):
self_confs = super(CommonConf, self).get_opt_settings()
Expand Down
1 change: 1 addition & 0 deletions tools/optional-requires
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ ncclient # OF-Config
cryptography!=1.5.2 # Required by paramiko
paramiko # NETCONF, BGP speaker (SSH console)
SQLAlchemy>=1.0.10,<1.1.0 # Zebra protocol service
netns # Support for network namespaces, optionally used for BGP TCP sockets