usb_storage.py 10.6 KB
Newer Older
1 2 3 4 5
import logging, re, uuid
from autotest.client.shared import error


@error.context_aware
6
def run_usb_storage(test, params, env):
7
    """
8
    Test usb storage devices in the guest.
9 10 11 12 13 14 15 16 17

    1) Create a image file by qemu-img
    2) Boot up a guest add this image as a usb device
    3) Check usb device information via monitor
    4) Check usb information by executing guest command
    5) Check usb serial option (optional)
    6) Check usb removable option (optional)
    7) Check usb min_io_size/opt_io_size option (optional)

18
    @param test: QEMU test object
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
    @param params: Dictionary with the test parameters
    @param env: Dictionary with test environment.
    """
    @error.context_aware
    def _verify_string(regex_str, string, expect_result, search_opt=0):
        """
        Verify USB storage device in monitor

        @param regex_str: Regex for checking command output
        @param string: The string which will be checked
        @param expect_result: The expected string
        @param search_opt: Search option for re module.
        """
        def _compare_str(act, exp, ignore_case):
            str_func = lambda x: x
            if ignore_case:
                str_func = lambda x: x.lower()
            if str_func(act) != str_func(exp):
                return ("Expected: '%s', Actual: '%s'" %
                        (str_func(exp), str_func(act)))
            return ""

        ignore_case = False
        if search_opt & re.I == re.I:
            ignore_case = True

        error.context("Finding matched sub-string with regex pattern %s" %
                      regex_str)
        m = re.findall(regex_str, string, search_opt)
        if not m:
            logging.debug(string)
            raise error.TestError("Could not find matched sub-string")

        error.context("Verify matched string is same as expected")
        actual_result = m[0]
        fail_log = []
        if isinstance(actual_result, tuple):
            for i, v in enumerate(expect_result):
                ret =  _compare_str(actual_result[i], v, ignore_case)
                if ret:
                    fail_log.append(ret)
        else:
            ret =  _compare_str(actual_result, expect_result[0], ignore_case)
            if ret:
                fail_log.append(ret)

        if fail_log:
            logging.debug(string)
            raise error.TestFail("Could not find expected string:\n %s" %
                                 ("\n".join(fail_log)))


    @error.context_aware
    def _do_io_test_guest(session):
        blksizes = [ "4K", "16K", "64K", "256K" ]

        output = session.cmd("fdisk -l")
        if params.get("fdisk_string") not in output:
            for line in output.splitlines():
                logging.debug(line)
            raise error.TestFail("Could not detect the usb device on"
                                 "fdisk output")

        error.context("Formatting USB disk")
        devname = session.cmd("ls /dev/disk/by-path/* | grep usb").strip()
        session.cmd("yes | mkfs %s" % devname,
                    timeout=int(params.get("format_timeout")))

        error.context("Mounting USB disk")
        session.cmd("mount %s /mnt" % devname)

        error.context("Creating comparison file")
        c_file = '/tmp/usbfile'
        session.cmd("dd if=/dev/urandom of=%s bs=1M count=1" % c_file)

        error.context("Copying %s to USB disk" % c_file)
        for s in blksizes:
            u_file = "/mnt/usbfile-%s" % s
            session.cmd("dd if=%s of=%s bs=%s" %
                        (c_file, u_file, s))

        error.context("Unmounting USB disk before file comparison")
        session.cmd("umount %s" % devname)

        error.context("Mounting USB disk for file comparison")
        session.cmd("mount %s /mnt" % devname)

        error.context("Determining md5sum for file on root fs and in USB disk")
        md5_root = session.cmd("md5sum %s" % c_file).strip()
        md5_root = md5_root.split()[0]
        for s in blksizes:
            u_file = "/mnt/usbfile-%s" % s
            md5_usb = session.cmd("md5sum %s" % u_file).strip()
            md5_usb = md5_usb.split()[0]

            if md5_root != md5_usb:
                raise error.TestError("MD5 mismatch between file on root fs "
                                      "and on USB disk [%s]" % u_file)

        error.context("Unmounting USB disk after file comparison")
        session.cmd("umount %s" % devname)

        error.context("Checking if there are I/O error messages in dmesg")
        output = session.get_command_output("dmesg -c")
        io_error_msg = []
        for line in output.splitlines():
            if "Buffer I/O error" in line:
                io_error_msg.append(line)
            if re.search("reset \w+ speed USB device", line):
                io_error_msg.append(line)

        if io_error_msg:
            e_msg = "IO error found on guest's dmesg when formatting USB device"
            logging.error(e_msg)
            for line in io_error_msg:
                logging.error(line)
            raise error.TestFail(e_msg)


    @error.context_aware
    def _restart_vm(options):
        if vm.is_alive():
            vm.destroy()

        new_params = params.copy()
        for option, value in options.iteritems():
            new_params[option] = value
        error.context("Restarting VM")
        vm.create(params=new_params)
        vm.verify_alive()


    def _login():
        return vm.wait_for_login(timeout=int(params.get("login_timeout", 360)))


    @error.context_aware
    def _check_serial_option(serial, regex_str, expect_str):
        error.context("Set serial option to '%s'" % serial, logging.info)
        _restart_vm({"drive_serial_stg": serial})

        error.context("Check serial option in monitor", logging.info)
        output = str(vm.monitor.info("qtree"))
        _verify_string(regex_str, output, [expect_str], re.S)

        error.context("Check serial option in guest", logging.info)
        session = _login()
        output = session.cmd("lsusb -v")
        if not ("EMPTY_STRING" in serial or "NO_EQUAL_STRING" in serial):
            # Verify in guest when serial is set to empty/null is meaningless.
            _verify_string(serial, output, [serial])
        _do_io_test_guest(session)

        session.close()


    @error.context_aware
    def _check_removable_option(removable, expect_str):
        error.context("Set removable option to '%s'" % removable, logging.info)
        _restart_vm({"removable_stg": removable})

        error.context("Check removable option in monitor", logging.info)
        output = str(vm.monitor.info("qtree"))
        regex_str = 'usb-storage.*?removable = (.*?)\n'
        _verify_string(regex_str, output, [removable], re.S)

        error.context("Check removable option in guest", logging.info)
        session = _login()
        output = session.cmd("ls -l /dev/disk/by-path/* | grep usb").strip()
        devname = re.findall("sd\w", output)
        if devname:
            d = devname[0]
        else:
            d = "sda"
        cmd = "dmesg | grep %s" % d
        output = session.cmd(cmd)
        _verify_string(expect_str, output, [expect_str], re.I)
        _do_io_test_guest(session)

        session.close()


    @error.context_aware
    def _check_io_size_option(min_io_size="512", opt_io_size="0"):
        error.context("Set min_io_size to %s, opt_io_size to %s" %
                      (min_io_size, opt_io_size), logging.info)
        opt = {}
        opt["min_io_size_stg"] = min_io_size
        opt["opt_io_size_stg"] = opt_io_size

        _restart_vm(opt)

        error.context("Check min/opt io_size option in monitor", logging.info)
        output = str(vm.monitor.info("qtree"))
        regex_str = "usb-storage.*?min_io_size = (\d+).*?opt_io_size = (\d+)"
        _verify_string(regex_str, output, [min_io_size, opt_io_size], re.S)

        error.context("Check min/opt io_size option in guest", logging.info)
        session = _login()
        output = session.cmd("ls -l /dev/disk/by-path/* | grep usb").strip()
        devname = re.findall("sd\w", output)
        if devname:
            d = devname[0]
        else:
            d = 'sda'
        cmd = ("cat /sys/block/%s/queue/{minimum,optimal}_io_size" % d)

        output = session.cmd(cmd)
        # Note: If set min_io_size = 0, guest min_io_size would be set to
        # 512 by default.
        if min_io_size != "0":
            expected_min_size = min_io_size
        else:
            expected_min_size = "512"
        _verify_string("(\d+)\n(\d+)", output, [expected_min_size, opt_io_size])
        _do_io_test_guest(session)

        session.close()


    vm = env.get_vm(params["main_vm"])
    vm.verify_alive()

    error.context("Check usb device information in monitor", logging.info)
    output = str(vm.monitor.info("usb"))
    if "Product QEMU USB MSD" not in output:
        logging.debug(output)
        raise error.TestFail("Could not find mass storage device")

    error.context("Check usb device information in guest", logging.info)
    session = _login()
    output = session.cmd("lsusb -v")
    # No bus specified, default using "usb.0" for "usb-storage"
    for i in ["Mass Storage", "SCSI", "QEMU USB HARDDRIVE"]:
        _verify_string(i, output, [i])
    _do_io_test_guest(session)
    session.close()

    if params.get("check_serial_option") == "yes":
        error.context("Check usb serial option", logging.info)
        serial = str(uuid.uuid4())
        regex_str = 'usb-storage.*?serial = "(.*?)"\n'
        _check_serial_option(serial, regex_str, serial)

        logging.info("Check this option with some illegal string")
        logging.info("Set usb serial to a empty string")
        # An empty string, ""
        serial = "EMPTY_STRING"
        regex_str = 'usb-storage.*?serial = (.*?)\n'
        _check_serial_option(serial, regex_str, '""')

        logging.info("Leave usb serial option blank")
        serial = "NO_EQUAL_STRING"
        regex_str = 'usb-storage.*?serial = (.*?)\n'
        _check_serial_option(serial, regex_str, '"on"')

    if params.get("check_removable_option") == "yes":
        error.context("Check usb removable option", logging.info)
        removable = "on"
        expect_str = "Attached SCSI removable disk"
        _check_removable_option(removable, expect_str)

        removable = "off"
        expect_str = "Attached SCSI disk"
        _check_removable_option(removable, expect_str)

    if params.get("check_io_size_option") == "yes":
        error.context("Check usb min/opt io_size option", logging.info)
        _check_io_size_option("0", "0")
        # Guest can't recognize correct value which we set now,
        # So comment these test temporary.
        #_check_io_size_option("1024", "1024")
        #_check_io_size_option("4096", "4096")