Merge branch 'upstream' into tizen
[platform/upstream/cryptsetup.git] / tests / generators / generate-luks2-non-null-bytes-beyond-json0.img.sh
1 #!/bin/bash
2
3 . lib.sh
4
5 #
6 # *** Description ***
7 #
8 # generate primary header with json area containing illegal bytes
9 # beyond well-formed json format.
10 #
11 # secondary header is corrupted on purpose as well
12 #
13
14 # $1 full target dir
15 # $2 full source luks2 image
16
17 QUOTE="[Homer J. Simpson]: Keep looking shocked and move slowly towards the cake."
18 SPACE=20
19
20 function generate()
21 {
22         read -r json_str < $TMPDIR/json0
23         json_len_orig=${#json_str}
24         json_len=$((json_len_orig+${#QUOTE}+SPACE))
25         test ${#json_str} -lt $((LUKS2_JSON_SIZE*512)) || exit 2
26
27         printf '%s' "$QUOTE" | _dd of=$TMPDIR/json0 seek=$((json_len_orig+SPACE)) bs=1 conv=notrunc
28
29         lib_mangle_json_hdr0_kill_hdr1
30 }
31
32 function check()
33 {
34         lib_hdr1_killed || exit 2
35         lib_hdr0_checksum || exit 2
36
37         read_luks2_json0 $TGT_IMG $TMPDIR/json_res0
38
39         _dd if=$TMPDIR/json_res0 of=$TMPDIR/quote skip=$((json_len_orig+SPACE)) count=${#QUOTE} bs=1
40         json_str_res0=$(head -c ${#QUOTE} $TMPDIR/quote)
41         test "$json_str_res0" = "$QUOTE" || exit 2
42 }
43
44 lib_prepare $@
45 generate
46 check
47 lib_cleanup