Exemplo n.º 1
0
    def is_valid_vendor(self, host, credential, vendor):
        """Check if vendor is associated with this host and credential

        :param host: switch ip
        :param credential: credential to access switch
        :param vendor: the vendor of switch
        """
        vendor_dir = os.path.join(self.vendors_dir, vendor)
        if not os.path.exists(vendor_dir):
            logging.error('no such directory: %s', vendor_dir)
            return False

        sys_info, err = self.get_sys_info(host, credential)
        if not sys_info:
            logging.debug("[hdsdiscovery][hdmanager][is_valid_vendor]"
                          "failded to get sys information: %s", err)
            return False

        instance = utils.load_module(vendor, vendor_dir)
        if not instance:
            logging.debug("[hdsdiscovery][hdmanager][is_valid_vendor]"
                          "No such vendor found!")
            return False

        if instance.is_this_vendor(sys_info):
            logging.info("[hdsdiscovery][hdmanager][is_valid_vendor]"
                         "vendor %s is correct!", vendor)
            return True

        return False
Exemplo n.º 2
0
    def get_vendor(self, host, credential):
        """ Check and get vendor of the switch.

            :param str  host       : switch ip:
            :param dict credential : credential to access switch
        """
        # List all vendors in vendors directory -- a directory but hidden
        # under ../vendors
        all_vendors = [
            o for o in os.listdir(self.vendors_dir)
            if os.path.isdir(os.path.join(self.vendors_dir, o))
            and re.match(r'^[^\.]', o)
        ]

        logging.debug("[get_vendor]: %s ", all_vendors)
        for vname in all_vendors:
            vpath = os.path.join(self.vendors_dir, vname)
            instance = utils.load_module(vname, vpath)
            #TODO add more code to catch excpetion or unexpected state
            if not instance:
                logging.error('no instance %s load from %s', vname, vpath)
                continue

            if instance.is_this_vendor(host, credential):
                return vname

        return None
Exemplo n.º 3
0
    def get_vendor(self, host, credential):
        """ Check and get vendor of the switch.

        :param host: switch ip:
        :param credential: credential to access switch
        """
        # List all vendors in vendors directory -- a directory but hidden
        # under ../vendors
        all_vendors = sorted(o for o in os.listdir(self.vendors_dir)
                       if os.path.isdir(os.path.join(self.vendors_dir, o))
                       and re.match(r'^[^\.]', o))

        logging.debug("[get_vendor]: %s ", all_vendors)
        for vname in all_vendors:
            vpath = os.path.join(self.vendors_dir, vname)
            instance = utils.load_module(vname, vpath)
            #TODO add more code to catch excpetion or unexpected state
            if not instance:
                logging.error('no instance %s load from %s', vname, vpath)
                continue

            if instance.is_this_vendor(host, credential):
                return vname

        return None
Exemplo n.º 4
0
    def get_vendor(self, host, credential):
        """Check and get vendor of the switch.

        :param host: switch ip:
        :param credential: credential to access switch
        :return a tuple (vendor, switch_state, error)
        """

        # Returen appliance plugin once we see 127.0.0.1 ass switch ip
        if host == '127.0.0.1':
            return ("appliance", "Found", "")

        # TODO(grace): Why do we need to have valid IP?
        # a hostname should also work.
        if not utils.valid_ip_format(host):
            logging.error("host '%s' is not valid IP address!", host)
            return (None, ERROR, "Invalid IP address %s!" % host)

        if not utils.is_valid_snmp_v2_credential(credential):
            logging.debug("******The credential %s of host %s cannot "
                          "be used for either SNMP v2 or SSH*****",
                          credential, host)
            return (None, ERROR, "Invalid credential")

        sys_info, err = self.get_sys_info(host, credential)
        if not sys_info:
            return (None, UNREACHABLE, err)

        # List all vendors in vendors directory -- a directory but hidden
        # under ../vendors
        all_vendors = [o for o in os.listdir(self.vendors_dir)
                       if os.path.isdir(os.path.join(self.vendors_dir, o))
                       and re.match(r'^[^\.]', o)]

        logging.debug("[get_vendor][available vendors]: %s ", all_vendors)
        logging.debug("[get_vendor] System Information is [%s]", sys_info)

        # TODO(grace): should not conver to lower. The vendor impl can choose
        # to do case-insensitive match
        # sys_info = sys_info.lower()
        vendor = None
        for vname in all_vendors:
            vpath = os.path.join(self.vendors_dir, vname)
            instance = utils.load_module(vname, vpath)
            if not instance:
                logging.error('no instance %s load from %s', vname, vpath)
                continue

            if instance.is_this_vendor(sys_info):
                logging.info("[get_vendor]****Found vendor '%s'****", vname)
                vendor = vname
                break

        if not vendor:
            logging.debug("[get_vendor] No vendor found! <==================")
            return (None, NOTSUPPORTED, "Not supported switch vendor!")

        return (vendor, "Found", "")
Exemplo n.º 5
0
    def test_load_module(self):
        """get load_module function."""
        # Successfully load HUAWEI module
        huawei_vendor_path = "/".join((os.path.dirname(
            os.path.dirname(os.path.dirname(os.path.realpath(__file__)))),
                                       "hdsdiscovery/vendors/huawei"))

        # No module found
        self.assertIsNone(utils.load_module("xxx", huawei_vendor_path))
Exemplo n.º 6
0
    def test_load_module(self):
        """get load_module function."""
        # Successfully load HUAWEI module
        huawei_vendor_path = "/".join(
            (
                os.path.dirname(os.path.dirname(os.path.dirname(os.path.realpath(__file__)))),
                "hdsdiscovery/vendors/huawei",
            )
        )

        # No module found
        self.assertIsNone(utils.load_module("xxx", huawei_vendor_path))
Exemplo n.º 7
0
    def is_valid_vendor(self, host, credential, vendor):
        """ Check if vendor is associated with this host and credential

            :param str  host       : switch ip
            :param dict credential : credential to access switch
            :param str  vendor     : the vendor of switch
        """
        vendor_dir = os.path.join(self.vendors_dir, vendor)
        if not os.path.exists(vendor_dir):
            logging.error('no such directory: %s', vendor_dir)
            return False

        vendor_instance = utils.load_module(vendor, vendor_dir)
        #TODO add more code to catch excpetion or unexpected state
        if not vendor_instance:
            # Cannot found the vendor in the directory!
            logging.error('no vendor instance %s load from %s', vendor,
                          vendor_dir)
            return False

        return vendor_instance.is_this_vendor(host, credential)
Exemplo n.º 8
0
    def is_valid_vendor(self, host, credential, vendor):
        """ Check if vendor is associated with this host and credential

        :param host: switch ip
        :param credential: credential to access switch
        :param vendor: the vendor of switch
        """
        vendor_dir = os.path.join(self.vendors_dir, vendor)
        if not os.path.exists(vendor_dir):
            logging.error('no such directory: %s', vendor_dir)
            return False

        vendor_instance = utils.load_module(vendor, vendor_dir)
        #TODO add more code to catch excpetion or unexpected state
        if not vendor_instance:
            # Cannot found the vendor in the directory!
            logging.error('no vendor instance %s load from %s',
                          vendor, vendor_dir)
            return False

        return vendor_instance.is_this_vendor(host, credential)
Exemplo n.º 9
0
    def learn(self, host, credential, vendor, req_obj, oper="SCAN", **kwargs):
        """Insert/update record of switch_info. Get expected results from
           switch according to sepcific operation.

        :param req_obj: the object of a machine
        :param host: switch IP address
        :param credientials: credientials to access switch
        :param oper: operations of the plugin (SCAN, GETONE, SET)
        :param kwargs(optional): key-value pairs
        """
        plugin_dir = self.vendor_plugins_dir.replace('?', vendor)
        if not os.path.exists(plugin_dir):
            logging.error('No such directory: %s', plugin_dir)
            return None

        plugin = utils.load_module(req_obj, plugin_dir, host, credential)
        if not plugin:
            # No plugin found!
            #TODO add more code to catch excpetion or unexpected state
            logging.error('no plugin %s to load from %s', req_obj, plugin_dir)
            return None

        return plugin.process_data(oper)
Exemplo n.º 10
0
    def learn(self, host, credential, vendor, req_obj, oper="SCAN", **kwargs):
        """Insert/update record of switch_info. Get expected results from
           switch according to sepcific operation.

        :param req_obj: the object of a machine
        :param host: switch IP address
        :param credientials: credientials to access switch
        :param oper: operations of the plugin (SCAN, GETONE, SET)
        :param kwargs(optional): key-value pairs
        """
        plugin_dir = self.vendor_plugins_dir.replace('?', vendor)
        if not os.path.exists(plugin_dir):
            logging.error('No such directory: %s', plugin_dir)
            return None

        plugin = utils.load_module(req_obj, plugin_dir, host, credential)
        if not plugin:
            # No plugin found!
            #TODO add more code to catch excpetion or unexpected state
            logging.error('no plugin %s to load from %s', req_obj, plugin_dir)
            return None

        return plugin.process_data(oper)
Exemplo n.º 11
0
 def test_LoadModule(self):
     self.assertIsNone(utils.load_module('xxx', 'fake/path/to/module'))