Skip to content

Commit

Permalink
Brick connector revised fix for NFS drivers
Browse files Browse the repository at this point in the history
This change fixes the error that comes
while getting brick connector and attaching volumes
in case of NFS drivers in cinder. The attribute for
mount point base was not passed to attach_volume method
as the connector initialization logic is common for all
types of protocols. It is fixed by populating
the required parameter in the RemoteFsConnector
by extracting it from connection properties. The infrastructure
for fixing this situation for remote fs drivers is implemented
in this fix. The drivers need to override the method
_get_mount_point_base in their implementation. NFS driver
implements it. GlusterFs implementation of the method to follow
in a separate patch. Hence marking it partial fix.

Change-Id: Id61a437fca1870529fa8b85f7fc2f73eae665294
Partial-Bug: #1238085
  • Loading branch information
singn committed Oct 23, 2013
1 parent 300ce61 commit 1cd3626
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 10 deletions.
17 changes: 16 additions & 1 deletion cinder/brick/initiator/connector.py
Expand Up @@ -797,6 +797,21 @@ def __init__(self, mount_type, root_helper, driver=None,
execute=putils.execute,
device_scan_attempts=DEVICE_SCAN_ATTEMPTS_DEFAULT,
*args, **kwargs):
kwargs = kwargs or {}
conn = kwargs.get('conn')
if conn:
mount_point_base = conn.get('mount_point_base')
if mount_type.lower() == 'nfs':
kwargs['nfs_mount_point_base'] =\
kwargs.get('nfs_mount_point_base') or\
mount_point_base
elif mount_type.lower() == 'glusterfs':
kwargs['glusterfs_mount_point_base'] =\
kwargs.get('glusterfs_mount_point_base') or\
mount_point_base
else:
LOG.warn(_("Connection details not present."
" RemoteFsClient may not initialize properly."))
self._remotefsclient = remotefs.RemoteFsClient(mount_type, root_helper,
execute=execute,
*args, **kwargs)
Expand All @@ -822,7 +837,7 @@ def connect_volume(self, connection_properties):
"""

mnt_flags = []
if 'options' in connection_properties:
if connection_properties.get('options'):
mnt_flags = connection_properties['options'].split()

nfs_share = connection_properties['export']
Expand Down
3 changes: 2 additions & 1 deletion cinder/tests/test_coraid.py
Expand Up @@ -787,7 +787,8 @@ def setUp(self):

utils.brick_get_connector('aoe',
device_scan_attempts=3,
use_multipath=False).\
use_multipath=False,
conn=mox.IgnoreArg()).\
AndReturn(aoe_initiator)

aoe_initiator\
Expand Down
6 changes: 4 additions & 2 deletions cinder/utils.py
Expand Up @@ -795,7 +795,8 @@ def brick_get_connector_properties():
def brick_get_connector(protocol, driver=None,
execute=processutils.execute,
use_multipath=False,
device_scan_attempts=3):
device_scan_attempts=3,
*args, **kwargs):
"""Wrapper to get a brick connector object.
This automatically populates the required protocol as well
as the root_helper needed to execute commands.
Expand All @@ -807,7 +808,8 @@ def brick_get_connector(protocol, driver=None,
execute=execute,
use_multipath=use_multipath,
device_scan_attempts=
device_scan_attempts)
device_scan_attempts,
*args, **kwargs)


def require_driver_initialized(func):
Expand Down
3 changes: 2 additions & 1 deletion cinder/volume/driver.py
Expand Up @@ -373,7 +373,8 @@ def _attach_volume(self, context, volume, properties, remote=False):
connector = utils.brick_get_connector(protocol,
use_multipath=use_multipath,
device_scan_attempts=
device_scan_attempts)
device_scan_attempts,
conn=conn)
device = connector.connect_volume(conn['data'])
host_device = device['path']

Expand Down
30 changes: 25 additions & 5 deletions cinder/volume/drivers/nfs.py
Expand Up @@ -92,9 +92,25 @@ def initialize_connection(self, volume, connector):
data['options'] = self.shares[volume['provider_location']]
return {
'driver_volume_type': self.driver_volume_type,
'data': data
'data': data,
'mount_point_base': self._get_mount_point_base()
}

def _get_mount_point_base(self):
"""Returns the mount point base for the remote fs.
This method facilitates returning mount point base
for the specific remote fs. Override this method
in the respective driver to return the entry to be
used while attach/detach using brick in cinder.
If not overridden then it returns None without
raising exception to continue working for cases
when not used with brick.
"""
LOG.debug(_("Driver specific implementation needs to return"
" mount_point_base."))
return None

def create_volume(self, volume):
"""Creates a volume.
Expand Down Expand Up @@ -373,15 +389,16 @@ def __init__(self, execute=putils.execute, *args, **kwargs):
super(NfsDriver, self).__init__(*args, **kwargs)
self.configuration.append_config_values(volume_opts)
root_helper = utils.get_root_helper()
base = getattr(self.configuration,
'nfs_mount_point_base',
CONF.nfs_mount_point_base)
# base bound to instance is used in RemoteFsConnector.
self.base = getattr(self.configuration,
'nfs_mount_point_base',
CONF.nfs_mount_point_base)
opts = getattr(self.configuration,
'nfs_mount_options',
CONF.nfs_mount_options)
self._remotefsclient = remotefs.RemoteFsClient(
'nfs', root_helper, execute=execute,
nfs_mount_point_base=base,
nfs_mount_point_base=self.base,
nfs_mount_options=opts)

def set_execute(self, execute):
Expand Down Expand Up @@ -533,3 +550,6 @@ def _get_capacity_info(self, nfs_share):
'*snapshot*', mount_point, run_as_root=True)
total_allocated = float(du.split()[0])
return total_size, total_available, total_allocated

def _get_mount_point_base(self):
return self.base

0 comments on commit 1cd3626

Please sign in to comment.