1#!/bin/sh 2 3. $(atf_get_srcdir)/conf.sh 4 5atf_test_case online_resize cleanup 6online_resize_head() 7{ 8 atf_set "descr" "online resize of geli providers" 9 atf_set "require.user" "root" 10} 11online_resize_body() 12{ 13 geli_test_setup 14 15 ( 16 echo "m 512 none 10485248 1 1 20971008 1 1 31456768 1 1" 17 echo "m 4096 none 10481664 1 1 20967424 1 1 31453184 1 1" 18 echo "m 512 HMAC/SHA256 5242368 1 1 10485248 1 1 15728128 1 1" 19 echo "m 4096 HMAC/SHA256 9318400 1 1 18640896 1 1 27959296 1 1" 20 echo "p 512 none 11258999068425728 [0-9] 20971520 22517998136851968 [0-9] 41943040 33776997205278208 [0-9] 62914560" 21 echo "p 4096 none 11258999068422144 [0-9] 2621440 22517998136848384 [0-9] 5242880 33776997205274624 [0-9] 7864320" 22 echo "p 512 HMAC/SHA256 5629499534212608 [0-9] 20971520 11258999068425728 [0-9] 41943040 16888498602638848 [0-9] 62914560" 23 echo "p 4096 HMAC/SHA256 10007999171932160 [0-9] 20971520 20015998343868416 [0-9] 41943040 30023997515800576 [0-9] 62914560" 24 ) | while read prefix sector auth esize10 ka10 kt10 esize20 ka20 kt20 esize30 ka30 kt30; do 25 if [ "${auth}" = "none" ]; then 26 aalgo="" 27 eflags="0x200" 28 dflags="0x0" 29 else 30 aalgo="-a ${auth}" 31 eflags="0x210" 32 dflags="0x10" 33 fi 34 35 if [ "${prefix}" = "m" ]; then 36 psize10="10485760" 37 psize20="20971520" 38 psize30="31457280" 39 else 40 psize10="11258999068426240" 41 psize20="22517998136852480" 42 psize30="33776997205278720" 43 fi 44 45 attach_md md -t malloc -s40${prefix} 46 47 # Initialise 48 atf_check -s exit:0 -o ignore gpart create -s GPT ${md} 49 atf_check -s exit:0 -o ignore gpart add -t freebsd-ufs -s 10${prefix} ${md} 50 51 echo secret >tmp.key 52 53 atf_check geli init ${aalgo} -s ${sector} -Bnone -PKtmp.key ${md}p1 54 # Autoresize is set by default. 55 atf_check -s exit:0 -o match:"flags: ${eflags}$" geli dump ${md}p1 56 57 atf_check geli configure -R ${md}p1 58 atf_check -s exit:0 -o match:"flags: ${dflags}$" geli dump ${md}p1 59 atf_check geli configure -r ${md}p1 60 atf_check -s exit:0 -o match:"flags: ${eflags}$" geli dump ${md}p1 61 62 atf_check geli init -R ${aalgo} -s ${sector} -Bnone -PKtmp.key ${md}p1 63 atf_check -s exit:0 -o match:"flags: ${dflags}$" geli dump ${md}p1 64 65 atf_check geli configure -r ${md}p1 66 atf_check -s exit:0 -o match:"flags: ${eflags}$" geli dump ${md}p1 67 atf_check geli configure -R ${md}p1 68 atf_check -s exit:0 -o match:"flags: ${dflags}$" geli dump ${md}p1 69 70 atf_check geli init ${aalgo} -s ${sector} -Bnone -PKtmp.key ${md}p1 71 atf_check geli attach -pk tmp.key ${md}p1 72 atf_check -s exit:0 -o match:'^Flags: .*AUTORESIZE' geli list ${md}p1.eli 73 atf_check geli configure -R ${md}p1 74 atf_check -s exit:0 -o match:"flags: ${dflags}$" geli dump ${md}p1 75 atf_check -o not-match:'^Flags: .*AUTORESIZE' geli list ${md}p1.eli 76 atf_check geli configure -r ${md}p1 77 atf_check -s exit:0 -o match:"flags: ${eflags}$" geli dump ${md}p1 78 atf_check -s exit:0 -o match:'^Flags: .*AUTORESIZE' geli list ${md}p1.eli 79 80 atf_check geli configure -R ${md}p1 81 atf_check -s exit:0 -o match:"provsize: ${psize10}$" geli dump ${md}p1 82 atf_check -s exit:0 -o match:resized gpart resize -i 1 -s 20${prefix} ${md} 83 # Autoresize turned off - we lose metadata. 84 atf_check -s exit:1 -o empty -e ignore geli dump ${md}p1 85 atf_check geli detach ${md}p1.eli 86 # When we recover previous size, the metadata should be there. 87 atf_check -s exit:0 -o match:resized gpart resize -i 1 -s 10${prefix} ${md} 88 atf_check -s exit:0 -o match:"flags: ${dflags}$" geli dump ${md}p1 89 90 atf_check geli configure -r ${md}p1 91 atf_check geli attach -pk tmp.key ${md}p1 92 atf_check -s exit:0 -o match:"^[[:space:]]${esize10}[[:space:]]+# mediasize in bytes" diskinfo -v ${md}p1.eli 93 atf_check -s exit:0 -o match:"^KeysAllocated: ${ka10}$" geli list ${md}p1.eli 94 atf_check -s exit:0 -o match:"^KeysTotal: ${kt10}$" geli list ${md}p1.eli 95 96 atf_check -s exit:0 -o match:resized gpart resize -i 1 -s 20${prefix} ${md} 97 atf_check -s exit:0 -o match:"provsize: ${psize20}$" geli dump ${md}p1 98 atf_check -s exit:0 -o match:"^[[:space:]]${esize20}[[:space:]]+# mediasize in bytes" diskinfo -v ${md}p1.eli 99 atf_check -s exit:0 -o match:"^KeysAllocated: ${ka20}$" geli list ${md}p1.eli 100 atf_check -s exit:0 -o match:"^KeysTotal: ${kt20}$" geli list ${md}p1.eli 101 atf_check -s exit:0 -o match:"flags: ${eflags}$" geli dump ${md}p1 102 atf_check -s exit:0 -o match:'^Flags: .*AUTORESIZE' geli list ${md}p1.eli 103 if [ "${prefix}" = "m" ]; then 104 atf_check -s exit:1 -o empty -e match:"^${esize20} bytes transferred " dd if=/dev/random of=/dev/${md}p1.eli bs=1m 105 atf_check -s exit:0 -o empty -e match:"^${esize20} bytes transferred " dd if=/dev/${md}p1.eli of=/dev/null bs=1m 106 fi 107 108 atf_check -s exit:0 -o match:resized gpart resize -i 1 -s 30${prefix} ${md} 109 atf_check -s exit:0 -o match:"provsize: ${psize30}$" geli dump ${md}p1 110 atf_check -s exit:0 -o match:"^[[:space:]]${esize30}[[:space:]]+# mediasize in bytes" diskinfo -v ${md}p1.eli 111 atf_check -s exit:0 -o match:"^KeysAllocated: ${ka30}$" geli list ${md}p1.eli 112 atf_check -s exit:0 -o match:"^KeysTotal: ${kt30}$" geli list ${md}p1.eli 113 atf_check -s exit:0 -o match:"flags: ${eflags}$" geli dump ${md}p1 114 atf_check -s exit:0 -o match:'^Flags: .*AUTORESIZE' geli list ${md}p1.eli 115 if [ "${prefix}" = "m" ]; then 116 atf_check -s exit:1 -o empty -e match:"^${esize30} bytes transferred " dd if=/dev/random of=/dev/${md}p1.eli bs=1m 117 atf_check -s exit:0 -o empty -e match:"^${esize30} bytes transferred " dd if=/dev/${md}p1.eli of=/dev/null bs=1m 118 fi 119 120 atf_check geli detach ${md}p1.eli 121 122 # Make sure that the old metadata is removed. 123 atf_check -s exit:0 -o match:resized gpart resize -i 1 -s 20${prefix} ${md} 124 atf_check -s exit:1 -o empty -e ignore geli dump ${md}p1 125 atf_check -s exit:0 -o match:resized gpart resize -i 1 -s 10${prefix} ${md} 126 atf_check -s exit:1 -o empty -e ignore geli dump ${md}p1 127 128 # Test geli with onetime keys. 129 if [ "${auth}" = "none" ]; then 130 osize10="${psize10}" 131 osize20="${psize20}" 132 osize30="${psize30}" 133 else 134 osize10="${esize10}" 135 osize20="${esize20}" 136 osize30="${esize30}" 137 if [ "${sector}" -eq 512 ]; then 138 osize10=$((osize10+sector)) 139 osize20=$((osize20+sector)) 140 osize30=$((osize30+sector)) 141 fi 142 fi 143 atf_check geli onetime ${aalgo} -s ${sector} ${md}p1 144 atf_check -s exit:0 -o match:"^[[:space:]]${osize10}[[:space:]]+# mediasize in bytes" diskinfo -v ${md}p1.eli 145 atf_check -s exit:0 -o match:'^Flags: .*AUTORESIZE' geli list ${md}p1.eli 146 atf_check -s exit:0 -o match:resized gpart resize -i 1 -s 20${prefix} ${md} 147 atf_check -s exit:0 -o match:"^[[:space:]]${osize20}[[:space:]]+# mediasize in bytes" diskinfo -v ${md}p1.eli 148 atf_check -s exit:0 -o match:resized gpart resize -i 1 -s 30${prefix} ${md} 149 atf_check -s exit:0 -o match:"^[[:space:]]${osize30}[[:space:]]+# mediasize in bytes" diskinfo -v ${md}p1.eli 150 atf_check geli detach ${md}p1.eli 151 152 atf_check -s exit:0 -o match:resized gpart resize -i 1 -s 10${prefix} ${md} 153 atf_check geli onetime -R ${aalgo} -s ${sector} ${md}p1 154 atf_check -s exit:0 -o match:"^[[:space:]]${osize10}[[:space:]]+# mediasize in bytes" diskinfo -v ${md}p1.eli 155 atf_check -o not-match:'^Flags: .*AUTORESIZE' geli list ${md}p1.eli 156 atf_check -s exit:0 -o match:resized gpart resize -i 1 -s 20${prefix} ${md} 157 atf_check -s exit:0 -o match:"^[[:space:]]${osize10}[[:space:]]+# mediasize in bytes" diskinfo -v ${md}p1.eli 158 atf_check -s exit:0 -o match:resized gpart resize -i 1 -s 30${prefix} ${md} 159 atf_check -s exit:0 -o match:"^[[:space:]]${osize10}[[:space:]]+# mediasize in bytes" diskinfo -v ${md}p1.eli 160 atf_check geli detach ${md}p1.eli 161 162 atf_check -s exit:0 -o match:resized gpart resize -i 1 -s 10${prefix} ${md} 163 atf_check geli onetime ${aalgo} -s ${sector} ${md}p1 164 atf_check -s exit:0 -o match:"^[[:space:]]${osize10}[[:space:]]+# mediasize in bytes" diskinfo -v ${md}p1.eli 165 atf_check -s exit:0 -o match:'^Flags: .*AUTORESIZE' geli list ${md}p1.eli 166 atf_check geli configure -R ${md}p1 167 atf_check -o not-match:'^Flags: .*AUTORESIZE' geli list ${md}p1.eli 168 atf_check -s exit:0 -o match:resized gpart resize -i 1 -s 20${prefix} ${md} 169 atf_check -s exit:0 -o match:"^[[:space:]]${osize10}[[:space:]]+# mediasize in bytes" diskinfo -v ${md}p1.eli 170 atf_check geli configure -r ${md}p1 171 atf_check -s exit:0 -o match:'^Flags: .*AUTORESIZE' geli list ${md}p1.eli 172 atf_check -s exit:0 -o match:resized gpart resize -i 1 -s 30${prefix} ${md} 173 atf_check -s exit:0 -o match:"^[[:space:]]${osize30}[[:space:]]+# mediasize in bytes" diskinfo -v ${md}p1.eli 174 done 175} 176online_resize_cleanup() 177{ 178 if [ -f "$TEST_MDS_FILE" ]; then 179 while read md; do 180 atf_check -s ignore -e ignore -o ignore geli detach ${md}p1.eli 181 atf_check -s ignore -e ignore -o ignore gpart delete -i 1 ${md} 182 atf_check -s ignore -e ignore -o ignore gpart destroy ${md} 183 done < $TEST_MDS_FILE 184 fi 185 geli_test_cleanup 186} 187 188atf_init_test_cases() 189{ 190 atf_add_test_case online_resize 191} 192