1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 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
|
#!/bin/bash
TS_TOPDIR="${0%/*}/../.."
TS_DESC="umount"
. "$TS_TOPDIR"/functions.sh
ts_init "$*"
ts_skip_nonroot
ts_check_test_command "$TS_CMD_FDISK"
ts_check_test_command "$TS_CMD_EJECT"
ts_check_test_command "$TS_CMD_KILL"
ts_check_test_command "$TS_CMD_MOUNT"
ts_check_prog "mkfs.ext2"
# scsi_debug could not eject for kernel >=3.19 and <4.4
if x=$(echo "3.19" && uname -r && echo "4.4") \
&& test "$x" = "$(echo "$x" | sort --version-sort)"
then
ts_skip "3.19 <= $(uname -sr) < 4.4"
fi
#
# Note that eject --force is required because scsi_debug is
# not removable device.
#
# set global variable TS_DEVICE
function init_device {
ts_scsi_debug_init dev_size_mb=100
}
function init_partitions {
local dev=$1
ts_log "Create partitions"
$TS_CMD_FDISK --noauto-pt $dev >> /dev/null 2>&1 <<EOF
o
n
p
1
+50M
n
p
2
p
w
EOF
udevadm settle
mkfs.ext2 -q ${dev}1
mkfs.ext2 -q ${dev}2
udevadm settle
}
function deinit_device {
ts_scsi_debug_rmmod
}
if [ "$TS_USE_SYSTEM_COMMANDS" != "yes" ]; then
# As the eject binary execl()s an uninstrumented /bin/umount binary, we need
# to explicitly $LD_PRELOAD the ASan's runtime DSO, otherwise ASan will complain.
# Since all three utilities used by this test (eject, fdisk, mount) are just
# libtool wrappers, let's check the kill binary instead, which should have
# the needed DSO information.
ASAN_RT_PATH="$(ts_get_asan_rt_path "$TS_CMD_KILL")"
[ -n "$ASAN_RT_PATH" ] && export LD_PRELOAD="$ASAN_RT_PATH:$LD_PRELOAD"
fi
ts_init_subtest "by-disk"
init_device
$TS_CMD_EJECT --force $TS_DEVICE && ts_log "Success"
deinit_device
ts_finalize_subtest
ts_init_subtest "by-disk-mounted"
init_device
mkfs.ext2 -q -F $TS_DEVICE
udevadm settle
mkdir -p $TS_MOUNTPOINT
$TS_CMD_MOUNT $TS_DEVICE $TS_MOUNTPOINT &> /dev/null
udevadm settle
$TS_CMD_EJECT --force $TS_DEVICE && ts_log "Success"
deinit_device
ts_finalize_subtest
ts_init_subtest "by-disk-mounted-partition"
init_device
init_partitions $TS_DEVICE
mkdir -p ${TS_MOUNTPOINT}1
mkdir -p ${TS_MOUNTPOINT}2
$TS_CMD_MOUNT ${TS_DEVICE}1 ${TS_MOUNTPOINT}1 &> /dev/null
$TS_CMD_MOUNT ${TS_DEVICE}2 ${TS_MOUNTPOINT}2 &> /dev/null
udevadm settle
$TS_CMD_EJECT --force $TS_DEVICE && ts_log "Success"
deinit_device
ts_finalize_subtest
ts_init_subtest "by-partition"
init_device
init_partitions $TS_DEVICE
$TS_CMD_EJECT --force ${TS_DEVICE}1 && ts_log "Success"
deinit_device
ts_finalize_subtest
ts_init_subtest "by-partition-mounted"
init_device
init_partitions $TS_DEVICE
mkdir -p ${TS_MOUNTPOINT}1
mkdir -p ${TS_MOUNTPOINT}2
$TS_CMD_MOUNT ${TS_DEVICE}1 ${TS_MOUNTPOINT}1 &> /dev/null
$TS_CMD_MOUNT ${TS_DEVICE}2 ${TS_MOUNTPOINT}2 &> /dev/null
udevadm settle
$TS_CMD_EJECT --force ${TS_DEVICE}1 && ts_log "Success"
deinit_device
ts_finalize_subtest
ts_finalize
|