# Copyright (C) 2017-2018 Red Hat, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. """ Description: Library for gluster geo-replication operations """ from glusto.core import Glusto as g def create_shared_storage(mnode): """Create shared volume which is necessary for the setup of a geo-rep session Args: mnode(str): Node on which command is to be executed Returns: tuple: Tuple containing three elements (ret, out, err). The first element 'ret' is of type 'int' and is the return value of command execution. The second element 'out' is of type 'str' and is the stdout value of the command execution. The third element 'err' is of type 'str' and is the stderr value of the command execution. """ cmd = "gluster volume set all cluster.enable-shared-storage enable" return g.run(mnode, cmd) def georep_createpem(mnode): """ Creates a common pem pub file on all the nodes in the master and is used to implement the passwordless SSH connection Args: mnode (str): Node on which cmd is to be executed Returns: tuple: Tuple containing three elements (ret, out, err). The first element 'ret' is of type 'int' and is the return value of command execution. The second element 'out' is of type 'str' and is the stdout value of the command execution. The third element 'err' is of type 'str' and is the stderr value of the command execution. """ cmd = "gluster system:: execute gsec_create" return g.run(mnode, cmd) def georep_status(mnode, mastervol, slaveip, slavevol, user=None): """Shows the status of the geo-replication session Args: mnode (str): Node on which cmd is to be executed mastervol (str):The name of the master volume slaveip (str): SlaveIP slavevol(str): The name of the slave volume Kwargs: user (str): If not set, the default is a root-user If specified, non-root user participates in geo-rep session Returns: tuple: Tuple containing three elements (ret, out, err). The first element 'ret' is of type 'int' and is the return value of command execution. The second element 'out' is of type 'str' and is the stdout value of the command execution. The third element 'err' is of type 'str' and is the stderr value of the command execution. """ if user: cmd = ("gluster volume geo-replication %s %s@%s::%s status" % (mastervol, user, slaveip, slavevol)) else: cmd = ("gluster volume geo-replication %s %s::%s status" % (mastervol, slaveip, slavevol)) return g.run(mnode, cmd) def georep_create(mnode, mastervol, slaveip, slavevol, user=None, force=False): """Pushes the keys to all the slave nodes and creates a geo-rep session Args: mnode (str) : Node on which cmd is to be executed mastervol (str) : The name of the mastervol slaveip (str): SlaveIP slavevol (str) The name of the slave volume kwargs: force (bool): If this option is set to True, then create geo-rep session will be executed with the force option. If it is set to False, then the geo-rep session is created without the force option user (str): If not set, the default is a root-user If specified, non-root user participates in the geo-rep session Returns: tuple: Tuple containing three elements (ret, out, err). The first element 'ret' is of type 'int' and is the return value of command execution. The second element 'out' is of type 'str' and is the stdout value of the command execution. The third element 'err' is of type 'str' and is the stderr value of the command execution. """ if user: if force: cmd = "gluster volume geo-replication %s %s@%s::%s create push-pem \ force" % (mastervol, user, slaveip, slavevol) else: cmd = "gluster volume geo-replication %s %s@%s::%s create \ push-pem" % (mastervol, user, slaveip, slavevol) else: if force: cmd = "gluster volume geo-replication %s %s::%s create push-pem \ force" % (mastervol, slaveip, slavevol) else: cmd = "gluster volume geo-replication %s %s::%s create \ push-pem" % (mastervol, slaveip, slavevol) return g.run(mnode, cmd) def georep_start(mnode, mastervol, slaveip, slavevol, user=None, force=False): """Starts the Geo-replication session Args: mnode (str): Node on which cmd is to be executed mastervol (str):The name of the master volume slaveip (str): SlaveIP slavevol (str): The name of the slave volume kwargs: force (bool): If this option is set to True, then the geo-rep session will be started with the force option. If it is set to False, then the session will be started without the force option -- which is the default option user (str): If not set, the default is a root-user If specified, non-root user participates in the geo-rep session Returns: tuple: Tuple containing three elements (ret, out, err). The first element 'ret' is of type 'int' and is the return value of command execution. The second element 'out' is of type 'str' and is the stdout value of the command execution. The third element 'err' is of type 'str' and is the stderr value of the command execution. """ if user: if force: cmd = ("gluster volume geo-replication %s %s@%s::%s start force" % (mastervol, user, slaveip, slavevol)) else: cmd = ("gluster volume geo-replication %s %s@%s::%s start" % (mastervol, user, slaveip, slavevol)) else: if force: cmd = ("gluster volume geo-replication %s %s::%s start force" % (mastervol, slaveip, slavevol)) else: cmd = ("gluster volume geo-replication %s %s::%s start" % (mastervol, slaveip, slavevol)) return g.run(mnode, cmd) def georep_stop(mnode, mastervol, slaveip, slavevol, user=None, force=False): """Stops a geo-repication session Args: mnode (str): Node on which cmd is to be executed mastervol (str):The name of the master volume slaveip (str): SlaveIP slavevol (str): The name of the slave volume kwargs: force (bool): If this option is set to True, then the geo-rep session will be stopped with the force option. If it is set to False, then the session will be stopped without the force option --which is the default option user (str): If not set, the default is a root-user If specified, non-root user participates in the geo-rep session Returns: tuple: Tuple containing three elements (ret, out, err). The first element 'ret' is of type 'int' and is the return value of command execution. The second element 'out' is of type 'str' and is the stdout value of the command execution. The third element 'err' is of type 'str' and is the stderr value of the command execution. """ if user: if force: cmd = ("gluster volume geo-replication %s %s@%s::%s stop force" % (mastervol, user, slaveip, slavevol)) else: cmd = ("gluster volume geo-replication %s %s@%s::%s stop" % (mastervol, user, slaveip, slavevol)) else: if force: cmd = ("gluster volume geo-replication %s %s::%s stop force" % (mastervol, slaveip, slavevol)) else: cmd = ("gluster volume geo-replication %s %s::%s stop" % (mastervol, slaveip, slavevol)) return g.run(mnode, cmd) def georep_pause(mnode, mastervol, slaveip, slavevol, user=None): """Pauses the geo-replication session Args: mnode (str): Node on which cmd is to be executed mastervol (str):The name of the master volume slaveip (str): SlaveIP slavevol (str): The name of the slave volume Kwargs: user (str): If not set, the default is a root-user If specified, non-root user participates in geo-rep session Returns: tuple: Tuple containing three elements (ret, out, err). The first element 'ret' is of type 'int' and is the return value of command execution. The second element 'out' is of type 'str' and is the stdout value of the command execution. The third element 'err' is of type 'str' and is the stderr value of the command execution. """ if user: cmd = "gluster volume geo-replication %s %s@%s::%s \ pause" % (mastervol, user, slaveip, slavevol) else: cmd = "gluster volume geo-replication %s %s::%s \ pause" % (mastervol, slaveip, slavevol) return g.run(mnode, cmd) def georep_resume(mnode, mastervol, slaveip, slavevol, user=None): """Resumes the geo-replication session Args: mnode (str): Node on which cmd is to be executed mastervol (str):The name of the master volume slaveip (str): SlaveIP slavevol (str): The name of the slave volume Kwargs: user (str): If not set, the default is a root-user If specified, non-root user participates in geo-rep session Returns: tuple: Tuple containing three elements (ret, out, err). The first element 'ret' is of type 'int' and is the return value of command execution. The second element 'out' is of type 'str' and is the stdout value of the command execution. The third element 'err' is of type 'str' and is the stderr value of the command execution. """ if user: cmd = "gluster volume geo-replication %s %s@%s::%s \ resume" % (mastervol, user, slaveip, slavevol) else: cmd = "gluster volume geo-replication %s %s::%s \ resume" % (mastervol, slaveip, slavevol) return g.run(mnode, cmd) def georep_delete(mnode, mastervol, slaveip, slavevol, user=None): """Deletes the geo-replication session Args: mnode (str): Node on which cmd is to be executed mastervol (str):The name of the master volume slaveip (str): SlaveIP slavevol (str): The name of the slave volume Kwargs: user (str): If not set, the default is a root-user If specified, non-root user participates in geo-rep session Returns: tuple: Tuple containing three elements (ret, out, err). The first element 'ret' is of type 'int' and is the return value of command execution. The second element 'out' is of type 'str' and is the stdout value of the command execution. The third element 'err' is of type 'str' and is the stderr value of the command execution. """ if user: cmd = ("gluster volume geo-replication %s %s@%s::%s delete" % (mastervol, user, slaveip, slavevol)) else: cmd = ("gluster volume geo-replication %s %s::%s delete" % (mastervol, slaveip, slavevol)) return g.run(mnode, cmd)