f95350bac287b75049f59328737227bbe22a4436
[oweals/u-boot.git] / test / fs / fs-test.sh
1 #!/bin/bash
2 #
3 # (C) Copyright 2014 Suriyan Ramasami
4 #
5 #  SPDX-License-Identifier:     GPL-2.0+
6 #
7
8 # Invoke this test script from U-Boot base directory as ./test/fs/fs-test.sh
9 # It currently tests the fs/sb and native commands for ext4 and fat partitions
10 # Expected results are as follows:
11 # EXT4 tests:
12 # fs-test.sb.ext4.out: Summary: PASS: 17 FAIL: 2
13 # fs-test.ext4.out: Summary: PASS: 10 FAIL: 9
14 # fs-test.fs.ext4.out: Summary: PASS: 10 FAIL: 9
15 # FAT tests:
16 # fs-test.sb.fat.out: Summary: PASS: 17 FAIL: 2
17 # fs-test.fat.out: Summary: PASS: 19 FAIL: 0
18 # fs-test.fs.fat.out: Summary: PASS: 19 FAIL: 0
19 # Total Summary: TOTAL PASS: 92 TOTAL FAIL: 22
20
21 # pre-requisite binaries list.
22 PREREQ_BINS="md5sum mkfs mount umount dd fallocate mkdir"
23
24 # All generated output files from this test will be in $OUT_DIR
25 # Hence everything is sandboxed.
26 OUT_DIR="sandbox/test/fs"
27
28 # Location of generated sandbox u-boot
29 UBOOT="./sandbox/u-boot"
30
31 # Our mount directory will be in the sandbox
32 MOUNT_DIR="${OUT_DIR}/mnt"
33
34 # The file system image we create will have the $IMG prefix.
35 IMG="${OUT_DIR}/3GB"
36
37 # $SMALL_FILE is the name of the 1MB file in the file system image
38 SMALL_FILE="1MB.file"
39
40 # $BIG_FILE is the name of the 2.5GB file in the file system image
41 BIG_FILE="2.5GB.file"
42
43 # $MD5_FILE will have the expected md5s when we do the test
44 # They shall have a suffix which represents their file system (ext4/fat)
45 MD5_FILE="${OUT_DIR}/md5s.list"
46
47 # $OUT shall be the prefix of the test output. Their suffix will be .out
48 OUT="${OUT_DIR}/fs-test"
49
50 # Full Path of the 1 MB file that shall be created in the fs image.
51 MB1="${MOUNT_DIR}/${SMALL_FILE}"
52 GB2p5="${MOUNT_DIR}/${BIG_FILE}"
53
54 # ************************
55 # * Functions start here *
56 # ************************
57
58 # Check if the prereq binaries exist, or exit
59 function check_prereq() {
60         for prereq in $PREREQ_BINS; do
61                 if [ ! -x "`which $prereq`" ]; then
62                         echo "Missing $prereq binary. Exiting!"
63                         exit
64                 fi
65         done
66
67         # We use /dev/urandom to create files. Check if it exists.
68         if [ ! -c /dev/urandom ]; then
69                 echo "Missing character special /dev/urandom. Exiting!"
70                 exit
71         fi
72 }
73
74 # If 1st param is "clean", then clean out the generated files and exit
75 function check_clean() {
76         if [ "$1" = "clean" ]; then
77                 rm -rf "$OUT_DIR"
78                 echo "Cleaned up generated files. Exiting"
79                 exit
80         fi
81 }
82
83 # Generate sandbox U-Boot - gleaned from /test/dm/test-dm.sh
84 function compile_sandbox() {
85         unset CROSS_COMPILE
86         NUM_CPUS=$(cat /proc/cpuinfo |grep -c processor)
87         make O=sandbox sandbox_config
88         make O=sandbox -s -j${NUM_CPUS}
89
90         # Check if U-Boot exists
91         if [ ! -x "$UBOOT" ]; then
92                 echo "$UBOOT does not exist or is not executable"
93                 echo "Build error?"
94                 echo "Please run this script as ./test/fs/`basename $0`"
95                 exit
96         fi
97 }
98
99 # Clean out all generated files other than the file system images
100 # We save time by not deleting and recreating the file system images
101 function prepare_env() {
102         rm -f ${MD5_FILE}.* ${OUT}.*
103         mkdir -p ${OUT_DIR}
104 }
105
106 # 1st parameter is the name of the image file to be created
107 # 2nd parameter is the filesystem - fat ext4 etc
108 # -F cant be used with fat as it means something else.
109 function create_image() {
110         # Create image if not already present - saves time, while debugging
111         if [ "$2" = "ext4" ]; then
112                 MKFS_OPTION="-F"
113         else
114                 MKFS_OPTION=""
115         fi
116         if [ ! -f "$1" ]; then
117                 fallocate -l 3G "$1" &> /dev/null
118                 if [ $? -ne 0 ]; then
119                         echo fallocate failed - using dd instead
120                         dd if=/dev/zero of=$1 bs=1024 count=$((3 * 1024 * 1024))
121                         if [ $? -ne 0 ]; then
122                                 echo Could not create empty disk image
123                                 exit $?
124                         fi
125                 fi
126                 mkfs -t "$2" $MKFS_OPTION "$1" &> /dev/null
127                 if [ $? -ne 0 -a "$2" = "fat" ]; then
128                         # If we fail and we did fat, try vfat.
129                         mkfs -t vfat $MKFS_OPTION "$1" &> /dev/null
130                 fi
131                 if [ $? -ne 0 ]; then
132                         echo Could not create filesystem
133                         exit $?
134                 fi
135         fi
136 }
137
138 # 1st parameter is image file
139 # 2nd parameter is file system type - fat/ext4
140 # 3rd parameter is name of small file
141 # 4th parameter is name of big file
142 # 5th parameter is fs/nonfs/sb - to dictate generic fs commands or
143 # otherwise or sb hostfs
144 # 6th parameter is the directory path for the files. Its "" for generic
145 # fs and ext4/fat and full patch for sb hostfs
146 # UBOOT is set in env
147 function test_image() {
148         addr="0x01000008"
149         length="0x00100000"
150
151         case "$2" in
152                 fat)
153                 FPATH=""
154                 PREFIX="fat"
155                 WRITE="write"
156                 ;;
157
158                 ext4)
159                 # ext4 needs absolute path
160                 FPATH="/"
161                 PREFIX="ext4"
162                 WRITE="write"
163                 ;;
164
165                 *)
166                 echo "Unhandled filesystem $2. Exiting!"
167                 exit
168                 ;;
169         esac
170
171         case "$5" in
172                 fs)
173                 PREFIX=""
174                 WRITE="save"
175                 SUFFIX=" 0:0"
176                 ;;
177
178                 nonfs)
179                 SUFFIX=" 0:0"
180                 ;;
181
182                 sb)
183                 PREFIX="sb "
184                 WRITE="save"
185                 SUFFIX="fs -"
186                 ;;
187
188                 *)
189                 echo "Unhandled mode $5. Exiting!"
190                 exit
191                 ;;
192
193         esac
194
195         # sb always uses full path to mointpoint, irrespective of filesystem
196         if [ "$5" = "sb" ]; then
197                 FPATH=${6}/
198         fi
199
200         FILE_WRITE=${3}.w
201         FILE_SMALL=$3
202         FILE_BIG=$4
203
204         # In u-boot commands, <interface> stands for host or hostfs
205         # hostfs maps to the host fs.
206         # host maps to the "sb bind" that we do
207
208         $UBOOT << EOF
209 sb=$5
210 setenv bind 'if test "\$sb" != sb; then sb bind 0 "$1"; fi'
211 run bind
212 # Test Case 1 - ls
213 ${PREFIX}ls host${SUFFIX} $6
214 #
215 # We want ${PREFIX}size host 0:0 $3 for host commands and
216 # sb size hostfs - $3 for hostfs commands.
217 # 1MB is 0x0010 0000
218 # Test Case 2 - size of small file
219 ${PREFIX}size host${SUFFIX} ${FPATH}$FILE_SMALL
220 printenv filesize
221 setenv filesize
222
223 # 2.5GB (1024*1024*2500) is 0x9C40 0000
224 # Test Case 3 - size of big file
225 ${PREFIX}size host${SUFFIX} ${FPATH}$FILE_BIG
226 printenv filesize
227 setenv filesize
228
229 # Notes about load operation
230 # If I use 0x01000000 I get DMA misaligned error message
231 # Last two parameters are size and offset.
232
233 # Test Case 4a - Read full 1MB of small file
234 ${PREFIX}load host${SUFFIX} $addr ${FPATH}$FILE_SMALL
235 printenv filesize
236 # Test Case 4b - Read full 1MB of small file
237 md5sum $addr \$filesize
238 setenv filesize
239
240 # Test Case 5a - First 1MB of big file
241 ${PREFIX}load host${SUFFIX} $addr ${FPATH}$FILE_BIG $length 0x0
242 printenv filesize
243 # Test Case 5b - First 1MB of big file
244 md5sum $addr \$filesize
245 setenv filesize
246
247 # fails for ext as no offset support
248 # Test Case 6a - Last 1MB of big file
249 ${PREFIX}load host${SUFFIX} $addr ${FPATH}$FILE_BIG $length 0x9C300000
250 printenv filesize
251 # Test Case 6b - Last 1MB of big file
252 md5sum $addr \$filesize
253 setenv filesize
254
255 # fails for ext as no offset support
256 # Test Case 7a - One from the last 1MB chunk of 2GB
257 ${PREFIX}load host${SUFFIX} $addr ${FPATH}$FILE_BIG $length 0x7FF00000
258 printenv filesize
259 # Test Case 7b - One from the last 1MB chunk of 2GB
260 md5sum $addr \$filesize
261 setenv filesize
262
263 # fails for ext as no offset support
264 # Test Case 8a - One from the start 1MB chunk from 2GB
265 ${PREFIX}load host${SUFFIX} $addr ${FPATH}$FILE_BIG $length 0x80000000
266 printenv filesize
267 # Test Case 8b - One from the start 1MB chunk from 2GB
268 md5sum $addr \$filesize
269 setenv filesize
270
271 # fails for ext as no offset support
272 # Test Case 9a - One 1MB chunk crossing the 2GB boundary
273 ${PREFIX}load host${SUFFIX} $addr ${FPATH}$FILE_BIG $length 0x7FF80000
274 printenv filesize
275 # Test Case 9b - One 1MB chunk crossing the 2GB boundary
276 md5sum $addr \$filesize
277 setenv filesize
278
279 # Generic failure case
280 # Test Case 10 - 2MB chunk from the last 1MB of big file
281 ${PREFIX}load host${SUFFIX} $addr ${FPATH}$FILE_BIG 0x00200000 0x9C300000
282 printenv filesize
283 #
284
285 # Read 1MB from small file
286 ${PREFIX}load host${SUFFIX} $addr ${FPATH}$FILE_SMALL
287 # Write it back to test the writes
288 # Test Case 11a - Check that the write succeeded
289 ${PREFIX}${WRITE} host${SUFFIX} $addr ${FPATH}$FILE_WRITE \$filesize
290 mw.b $addr 00 100
291 ${PREFIX}load host${SUFFIX} $addr ${FPATH}$FILE_WRITE
292 # Test Case 11b - Check md5 of written to is same as the one read from
293 md5sum $addr \$filesize
294 setenv filesize
295 #
296 reset
297
298 EOF
299 }
300
301 # 1st argument is the name of the image file.
302 # 2nd argument is the file where we generate the md5s of the files
303 # generated with the appropriate start and length that we use to test.
304 # It creates the necessary files in the image to test.
305 # $GB2p5 is the path of the big file (2.5 GB)
306 # $MB1 is the path of the small file (1 MB)
307 # $MOUNT_DIR is the path we can use to mount the image file.
308 function create_files() {
309         # Mount the image so we can populate it.
310         mkdir -p "$MOUNT_DIR"
311         sudo mount -o loop,rw "$1" "$MOUNT_DIR"
312
313         # Create big file in this image.
314         # Note that we work only on the start 1MB, couple MBs in the 2GB range
315         # and the last 1 MB of the huge 2.5GB file.
316         # So, just put random values only in those areas.
317         if [ ! -f "${GB2p5}" ]; then
318                 sudo dd if=/dev/urandom of="${GB2p5}" bs=1M count=1 \
319                         &> /dev/null
320                 sudo dd if=/dev/urandom of="${GB2p5}" bs=1M count=2 seek=2047 \
321                         &> /dev/null
322                 sudo dd if=/dev/urandom of="${GB2p5}" bs=1M count=1 seek=2499 \
323                         &> /dev/null
324         fi
325
326         # Create a small file in this image.
327         if [ ! -f "${MB1}" ]; then
328                 sudo dd if=/dev/urandom of="${MB1}" bs=1M count=1 \
329                         &> /dev/null
330         fi
331
332         # Delete the small file which possibly is written as part of a
333         # previous test.
334         sudo rm -f "${MB1}.w"
335
336         # Generate the md5sums of reads that we will test against small file
337         dd if="${MB1}" bs=1M skip=0 count=1 2> /dev/null | md5sum > "$2"
338
339         # Generate the md5sums of reads that we will test against big file
340         # One from beginning of file.
341         dd if="${GB2p5}" bs=1M skip=0 count=1 \
342                 2> /dev/null | md5sum >> "$2"
343
344         # One from end of file.
345         dd if="${GB2p5}" bs=1M skip=2499 count=1 \
346                 2> /dev/null | md5sum >> "$2"
347
348         # One from the last 1MB chunk of 2GB
349         dd if="${GB2p5}" bs=1M skip=2047 count=1 \
350                 2> /dev/null | md5sum >> "$2"
351
352         # One from the start 1MB chunk from 2GB
353         dd if="${GB2p5}" bs=1M skip=2048 count=1 \
354                 2> /dev/null | md5sum >> "$2"
355
356         # One 1MB chunk crossing the 2GB boundary
357         dd if="${GB2p5}" bs=512K skip=4095 count=2 \
358                 2> /dev/null | md5sum >> "$2"
359
360         sync
361         sudo umount "$MOUNT_DIR"
362         rmdir "$MOUNT_DIR"
363 }
364
365 # 1st parameter is the text to print
366 # if $? is 0 its a pass, else a fail
367 # As a side effect it shall update env variable PASS and FAIL
368 function pass_fail() {
369         if [ $? -eq 0 ]; then
370                 echo pass - "$1"
371                 PASS=$((PASS + 1))
372         else
373                 echo FAIL - "$1"
374                 FAIL=$((FAIL + 1))
375         fi
376 }
377
378 # 1st parameter is the string which leads to an md5 generation
379 # 2nd parameter is the file we grep, for that string
380 # 3rd parameter is the name of the file which has md5s in it
381 # 4th parameter is the line # in the md5 file that we match it against
382 # This function checks if the md5 of the file in the sandbox matches
383 # that calculated while generating the file
384 # 5th parameter is the string to print with the result
385 check_md5() {
386         # md5sum in u-boot has output of form:
387         # md5 for 01000008 ... 01100007 ==> <md5>
388         # the 7th field is the actual md5
389         md5_src=`grep -A3 "$1" "$2" | grep "md5 for" | tr -d '\r'`
390         md5_src=($md5_src)
391         md5_src=${md5_src[6]}
392
393         # The md5 list, each line is of the form:
394         # - <md5>
395         # the 2nd field is the actual md5
396         md5_dst=`sed -n $4p $3`
397         md5_dst=($md5_dst)
398         md5_dst=${md5_dst[0]}
399
400         # For a pass they should match.
401         [ "$md5_src" = "$md5_dst" ]
402         pass_fail "$5"
403 }
404
405 # 1st parameter is the name of the output file to check
406 # 2nd parameter is the name of the file containing the md5 expected
407 # 3rd parameter is the name of the small file
408 # 4th parameter is the name of the big file
409 # 5th paramter is the name of the written file
410 # This function checks the output file for correct results.
411 function check_results() {
412         echo "** Start $1"
413
414         PASS=0
415         FAIL=0
416
417         # Check if the ls is showing correct results for 2.5 gb file
418         grep -A6 "Test Case 1 " "$1" | egrep -iq "2621440000 *$4"
419         pass_fail "TC1: ls of $4"
420
421         # Check if the ls is showing correct results for 1 mb file
422         grep -A6 "Test Case 1 " "$1" | egrep -iq "1048576 *$3"
423         pass_fail "TC1: ls of $3"
424
425         # Check size command on 1MB.file
426         egrep -A3 "Test Case 2 " "$1" | grep -q "filesize=100000"
427         pass_fail "TC2: size of $3"
428
429         # Check size command on 2.5GB.file
430         egrep -A3 "Test Case 3 " "$1" | grep -q "filesize=9c400000"
431         pass_fail "TC3: size of $4"
432
433         # Check read full mb of 1MB.file
434         grep -A6 "Test Case 4a " "$1" | grep -q "filesize=100000"
435         pass_fail "TC4: load of $3 size"
436         check_md5 "Test Case 4b " "$1" "$2" 1 "TC4: load from $3"
437
438         # Check first mb of 2.5GB.file
439         grep -A6 "Test Case 5a " "$1" | grep -q "filesize=100000"
440         pass_fail "TC5: load of 1st MB from $4 size"
441         check_md5 "Test Case 5b " "$1" "$2" 2 "TC5: load of 1st MB from $4"
442
443         # Check last mb of 2.5GB.file
444         grep -A6 "Test Case 6a " "$1" | grep -q "filesize=100000"
445         pass_fail "TC6: load of last MB from $4 size"
446         check_md5 "Test Case 6b " "$1" "$2" 3 "TC6: load of last MB from $4"
447
448         # Check last 1mb chunk of 2gb from 2.5GB file
449         grep -A6 "Test Case 7a " "$1" | grep -q "filesize=100000"
450         pass_fail "TC7: load of last 1mb chunk of 2GB from $4 size"
451         check_md5 "Test Case 7b " "$1" "$2" 4 \
452                 "TC7: load of last 1mb chunk of 2GB from $4"
453
454         # Check first 1mb chunk after 2gb from 2.5GB file
455         grep -A6 "Test Case 8a " "$1" | grep -q "filesize=100000"
456         pass_fail "TC8: load 1st MB chunk after 2GB from $4 size"
457         check_md5 "Test Case 8b " "$1" "$2" 5 \
458                 "TC8: load 1st MB chunk after 2GB from $4"
459
460         # Check 1mb chunk crossing the 2gb boundary from 2.5GB file
461         grep -A6 "Test Case 9a " "$1" | grep -q "filesize=100000"
462         pass_fail "TC9: load 1MB chunk crossing 2GB boundary from $4 size"
463         check_md5 "Test Case 9b " "$1" "$2" 6 \
464                 "TC9: load 1MB chunk crossing 2GB boundary from $4"
465
466         # Check 2mb chunk from the last 1MB of 2.5GB file loads 1MB
467         grep -A6 "Test Case 10 " "$1" | grep -q "filesize=100000"
468         pass_fail "TC10: load 2MB from the last 1MB of $4 loads 1MB"
469
470         # Check 1mb chunk write
471         grep -A3 "Test Case 11a " "$1" | \
472                 egrep -q '1048576 bytes written|update journal'
473         pass_fail "TC11: 1MB write to $5 - write succeeded"
474         check_md5 "Test Case 11b " "$1" "$2" 1 \
475                 "TC11: 1MB write to $5 - content verified"
476         echo "** End $1"
477 }
478
479 # Takes in one parameter which is "fs" or "nonfs", which then dictates
480 # if a fs test (size/load/save) or a nonfs test (fatread/extread) needs to
481 # be performed.
482 function test_fs_nonfs() {
483         echo "Creating files in $fs image if not already present."
484         create_files $IMAGE $MD5_FILE_FS
485
486         OUT_FILE="${OUT}.$1.${fs}.out"
487         test_image $IMAGE $fs $SMALL_FILE $BIG_FILE $1 "" \
488                 > ${OUT_FILE} 2>&1
489         check_results $OUT_FILE $MD5_FILE_FS $SMALL_FILE $BIG_FILE \
490                 $WRITE_FILE
491         TOTAL_FAIL=$((TOTAL_FAIL + FAIL))
492         TOTAL_PASS=$((TOTAL_PASS + PASS))
493         echo "Summary: PASS: $PASS FAIL: $FAIL"
494         echo "--------------------------------------------"
495 }
496
497 # ********************
498 # * End of functions *
499 # ********************
500
501 check_clean "$1"
502 check_prereq
503 compile_sandbox
504 prepare_env
505
506 # Track TOTAL_FAIL and TOTAL_PASS
507 TOTAL_FAIL=0
508 TOTAL_PASS=0
509
510 # In each loop, for a given file system image, we test both the
511 # fs command, like load/size/write, the file system specific command
512 # like: ext4load/ext4size/ext4write and the sb load/ls/save commands.
513 for fs in ext4 fat; do
514
515         echo "Creating $fs image if not already present."
516         IMAGE=${IMG}.${fs}.img
517         MD5_FILE_FS="${MD5_FILE}.${fs}"
518         create_image $IMAGE $fs
519
520         # sb commands test
521         echo "Creating files in $fs image if not already present."
522         create_files $IMAGE $MD5_FILE_FS
523
524         # Lets mount the image and test sb hostfs commands
525         mkdir -p "$MOUNT_DIR"
526         if [ "$fs" = "fat" ]; then
527                 uid="uid=`id -u`"
528         else
529                 uid=""
530         fi
531         sudo mount -o loop,rw,$uid "$IMAGE" "$MOUNT_DIR"
532         sudo chmod 777 "$MOUNT_DIR"
533
534         OUT_FILE="${OUT}.sb.${fs}.out"
535         test_image $IMAGE $fs $SMALL_FILE $BIG_FILE sb `pwd`/$MOUNT_DIR \
536                 > ${OUT_FILE} 2>&1
537         sudo umount "$MOUNT_DIR"
538         rmdir "$MOUNT_DIR"
539
540         check_results $OUT_FILE $MD5_FILE_FS $SMALL_FILE $BIG_FILE \
541                 $WRITE_FILE
542         TOTAL_FAIL=$((TOTAL_FAIL + FAIL))
543         TOTAL_PASS=$((TOTAL_PASS + PASS))
544         echo "Summary: PASS: $PASS FAIL: $FAIL"
545         echo "--------------------------------------------"
546
547         test_fs_nonfs nonfs
548         test_fs_nonfs fs
549 done
550
551 echo "Total Summary: TOTAL PASS: $TOTAL_PASS TOTAL FAIL: $TOTAL_FAIL"
552 echo "--------------------------------------------"
553 if [ $TOTAL_FAIL -eq 0 ]; then
554         echo "PASSED"
555         exit 0
556 else
557         echo "FAILED"
558         exit 1
559 fi