2 # SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
4 # Script to add K3 specific x509 cetificate to a binary.
9 TEMP_X509=x509-temp.cert
18 gen_degen_template() {
19 cat << 'EOF' > degen-template.txt
25 modulus=INTEGER:0xDEGEN_MODULUS
32 coeff=INTEGER:0xDEGEN_COEFF
36 # Generate x509 Template
38 cat << 'EOF' > x509-template.txt
40 distinguished_name = req_distinguished_name
41 x509_extensions = v3_ca
43 dirstring_type = nobmp
45 [ req_distinguished_name ]
49 O = Texas Instruments Incorporated
55 basicConstraints = CA:true
56 1.3.6.1.4.1.294.1.1 = ASN1:SEQUENCE:boot_seq
57 1.3.6.1.4.1.294.1.2 = ASN1:SEQUENCE:image_integrity
58 1.3.6.1.4.1.294.1.3 = ASN1:SEQUENCE:swrv
59 # 1.3.6.1.4.1.294.1.4 = ASN1:SEQUENCE:encryption
60 1.3.6.1.4.1.294.1.8 = ASN1:SEQUENCE:debug
63 certType = INTEGER:TEST_CERT_TYPE
64 bootCore = INTEGER:TEST_BOOT_CORE
65 bootCoreOpts = INTEGER:TEST_BOOT_CORE_OPTS
66 destAddr = FORMAT:HEX,OCT:TEST_BOOT_ADDR
67 imageSize = INTEGER:TEST_IMAGE_LENGTH
70 shaType = OID:2.16.840.1.101.3.4.2.3
71 shaValue = FORMAT:HEX,OCT:TEST_IMAGE_SHA_VAL
74 swrv = INTEGER:TEST_SWRV
77 # initalVector = FORMAT:HEX,OCT:TEST_IMAGE_ENC_IV
78 # randomString = FORMAT:HEX,OCT:TEST_IMAGE_ENC_RS
79 # iterationCnt = INTEGER:TEST_IMAGE_KEY_DERIVE_INDEX
80 # salt = FORMAT:HEX,OCT:TEST_IMAGE_KEY_DERIVE_SALT
83 debugUID = FORMAT:HEX,OCT:0000000000000000000000000000000000000000000000000000000000000000
84 debugType = INTEGER:TEST_DEBUG_TYPE
86 coreDbgSecEn = INTEGER:0
91 sed '/ /s/://g' key.txt | \
92 awk '!/ / {printf("\n%s\n", $0)}; / / {printf("%s", $0)}' | \
94 awk "/$1:/{getline; print}"
98 # Generate a 4096 bit RSA Key
99 openssl genrsa -out key.pem 1024 >>/dev/null 2>&1
100 openssl rsa -in key.pem -text -out key.txt >>/dev/null 2>&1
101 DEGEN_MODULUS=$( parse_key 'modulus' )
102 DEGEN_P=$( parse_key 'prime1' )
103 DEGEN_Q=$( parse_key 'prime2' )
104 DEGEN_COEFF=$( parse_key 'coefficient' )
107 sed -e "s/DEGEN_MODULUS/$DEGEN_MODULUS/"\
108 -e "s/DEGEN_P/$DEGEN_P/" \
109 -e "s/DEGEN_Q/$DEGEN_Q/" \
110 -e "s/DEGEN_COEFF/$DEGEN_COEFF/" \
111 degen-template.txt > degenerateKey.txt
113 openssl asn1parse -genconf degenerateKey.txt -out degenerateKey.der >>/dev/null 2>&1
114 openssl rsa -in degenerateKey.der -inform DER -outform PEM -out $RAND_KEY >>/dev/null 2>&1
116 rm key.pem key.txt degen-template.txt degenerateKey.txt degenerateKey.der
119 declare -A options_help
125 for option in "${!options_help[@]}"
127 arg=`echo ${options_help[$option]}|cut -d ':' -f1`
128 if [ -n "$arg" ]; then
131 echo -n "[-$option$arg] "
135 for option in "${!options_help[@]}"
137 arg=`echo ${options_help[$option]}|cut -d ':' -f1`
138 txt=`echo ${options_help[$option]}|cut -d ':' -f2`
140 if [ -n "$arg" ]; then
144 echo -e " -$option$arg:$tb$txt"
147 echo "Examples of usage:-"
148 echo "# Example of signing the SYSFW binary with rsa degenerate key"
149 echo " $0 -c 0 -b ti-sci-firmware-am6x.bin -o sysfw.bin -l 0x40000"
150 echo "# Example of signing the SPL binary with rsa degenerate key"
151 echo " $0 -c 16 -b spl/u-boot-spl.bin -o tiboot3.bin -l 0x41c00000"
154 options_help[b]="bin_file:Bin file that needs to be signed"
155 options_help[k]="key_file:file with key inside it. If not provided script generates a rsa degenerate key."
156 options_help[o]="output_file:Name of the final output file. default to $OUTPUT"
157 options_help[c]="core_id:target core id on which the image would be running. Default to $BOOTCORE"
158 options_help[l]="loadaddr: Target load address of the binary in hex. Default to $LOADADDR"
159 options_help[d]="debug_type: Debug type, set to 4 to enable early JTAG. Default to $DEBUG_TYPE"
160 options_help[r]="SWRV: Software Rev for X509 certificate"
162 while getopts "b:k:o:c:l:d:h:r:" opt
191 usage "Invalid Option '-$OPTARG'"
195 usage "Option '-$OPTARG' Needs an argument."
201 if [ "$#" -eq 0 ]; then
202 usage "Arguments missing"
206 if [ -z "$BIN" ]; then
207 usage "Bin file missing in arguments"
211 # Generate rsa degenerate key if user doesn't provide a key
212 if [ -z "$KEY" ]; then
216 if [ $BOOTCORE == 0 ]; then # BOOTCORE M3, loaded by ROM
218 elif [ $BOOTCORE == 16 ]; then # BOOTCORE R5, loaded by ROM
220 else # Non BOOTCORE, loaded by SYSFW
221 BOOTCORE_OPTS_VER=$(printf "%01x" 1)
222 # Add input args option for SET and CLR flags.
223 BOOTCORE_OPTS_SETFLAG=$(printf "%08x" 0)
224 BOOTCORE_OPTS_CLRFLAG=$(printf "%08x" 0x100) # Clear FLAG_ARMV8_AARCH32
225 BOOTCORE_OPTS="0x$BOOTCORE_OPTS_VER$BOOTCORE_OPTS_SETFLAG$BOOTCORE_OPTS_CLRFLAG"
226 # Set the cert type to zero.
227 # We are not using public/private key store now
228 CERTTYPE=$(printf "0x%08x" 0)
231 SHA_VAL=`openssl dgst -sha512 -hex $BIN | sed -e "s/^.*= //g"`
232 BIN_SIZE=`cat $BIN | wc -c`
233 ADDR=`printf "%08x" $LOADADDR`
236 #echo "Certificate being generated :"
237 #echo " LOADADDR = 0x$ADDR"
238 #echo " IMAGE_SIZE = $BIN_SIZE"
239 #echo " CERT_TYPE = $CERTTYPE"
240 #echo " DEBUG_TYPE = $DEBUG_TYPE"
241 #echo " SWRV = $SWRV"
242 sed -e "s/TEST_IMAGE_LENGTH/$BIN_SIZE/" \
243 -e "s/TEST_IMAGE_SHA_VAL/$SHA_VAL/" \
244 -e "s/TEST_CERT_TYPE/$CERTTYPE/" \
245 -e "s/TEST_BOOT_CORE_OPTS/$BOOTCORE_OPTS/" \
246 -e "s/TEST_BOOT_CORE/$BOOTCORE/" \
247 -e "s/TEST_BOOT_ADDR/$ADDR/" \
248 -e "s/TEST_DEBUG_TYPE/$DEBUG_TYPE/" \
249 -e "s/TEST_SWRV/$SWRV/" \
250 x509-template.txt > $TEMP_X509
251 openssl req -new -x509 -key $KEY -nodes -outform DER -out $CERT -config $TEMP_X509 -sha512
256 cat $CERT $BIN > $OUTPUT
258 # Remove all intermediate files
259 rm $TEMP_X509 $CERT x509-template.txt
260 if [ "$KEY" == "$RAND_KEY" ]; then