Imported Upstream version 2.6.1
[platform/upstream/cryptsetup.git] / tests / generators / generate-luks2-correct-full-json0.img.sh
1 #!/bin/bash
2
3 . lib.sh
4
5 #
6 # *** Description ***
7 #
8 # generate header with correct json of maximal size in primary slot.
9 # Secondary header is broken on purpose.
10 #
11
12 # $1 full target dir
13 # $2 full source luks2 image
14
15 PATTERN="\"config\":{"
16 KEY="\"config_key\":\""
17
18 function generate()
19 {
20         read -r json_str < $TMPDIR/json0
21         json_len=${#json_str}
22         pindex=$(strindex $json_str $PATTERN)
23         test $pindex -gt 0 || exit 2
24
25         offset=${#PATTERN}
26         offset=$((offset+pindex))
27         key_len=${#KEY}
28         remain=$((LUKS2_JSON_SIZE*512-json_len-key_len-2)) # -2: closing '"' and terminating '\0'
29         if [ ${json_str:offset:1} = "}" ]; then
30                 format_str="%s%s%s"
31         else
32                 format_str="%s%s,%s"
33                 remain=$((remain-1)) # also count with separating ','
34         fi
35         test $remain -gt 0 || exit 2
36
37         fill=$(repeat_str "X" $remain)"\""
38
39         printf $format_str $KEY $fill ${json_str:$offset} | _dd of=$TMPDIR/json0 bs=1 seek=$offset conv=notrunc
40
41         lib_mangle_json_hdr0_kill_hdr1
42 }
43
44 function check()
45 {
46         lib_hdr1_killed || exit 2
47         lib_hdr0_checksum || exit 2
48
49         read_luks2_json0 $TGT_IMG $TMPDIR/json_res0
50         #json_str_res0=$(< $TMPDIR/json_res0)
51         read -r json_str_res0 < $TMPDIR/json_res0
52         test ${#json_str_res0} -eq $((LUKS2_JSON_SIZE*512-1)) || exit 2
53 }
54
55 lib_prepare $@
56 generate
57 check
58 lib_cleanup