blob: 1695bf4cd84f4462baec09f0ef9e085c0631d74a [file] [log] [blame]
Simon Glass3e569a62013-06-13 15:10:00 -07001U-Boot FIT Signature Verification
2=================================
3
4Introduction
5------------
6FIT supports hashing of images so that these hashes can be checked on
7loading. This protects against corruption of the image. However it does not
8prevent the substitution of one image for another.
9
10The signature feature allows the hash to be signed with a private key such
11that it can be verified using a public key later. Provided that the private
12key is kept secret and the public key is stored in a non-volatile place,
13any image can be verified in this way.
14
15See verified-boot.txt for more general information on verified boot.
16
17
18Concepts
19--------
20Some familiarity with public key cryptography is assumed in this section.
21
22The procedure for signing is as follows:
23
24 - hash an image in the FIT
25 - sign the hash with a private key to produce a signature
26 - store the resulting signature in the FIT
27
28The procedure for verification is:
29
30 - read the FIT
31 - obtain the public key
32 - extract the signature from the FIT
33 - hash the image from the FIT
34 - verify (with the public key) that the extracted signature matches the
35 hash
36
37The signing is generally performed by mkimage, as part of making a firmware
38image for the device. The verification is normally done in U-Boot on the
39device.
40
41
42Algorithms
43----------
44In principle any suitable algorithm can be used to sign and verify a hash.
45At present only one class of algorithms is supported: SHA1 hashing with RSA.
46This works by hashing the image to produce a 20-byte hash.
47
48While it is acceptable to bring in large cryptographic libraries such as
49openssl on the host side (e.g. mkimage), it is not desirable for U-Boot.
50For the run-time verification side, it is important to keep code and data
51size as small as possible.
52
53For this reason the RSA image verification uses pre-processed public keys
54which can be used with a very small amount of code - just some extraction
55of data from the FDT and exponentiation mod n. Code size impact is a little
56under 5KB on Tegra Seaboard, for example.
57
58It is relatively straightforward to add new algorithms if required. If
59another RSA variant is needed, then it can be added to the table in
60image-sig.c. If another algorithm is needed (such as DSA) then it can be
61placed alongside rsa.c, and its functions added to the table in image-sig.c
62also.
63
64
Andreas Dannenberg4c1d5c22016-03-23 18:24:10 -050065Creating an RSA key pair and certificate
66----------------------------------------
67To create a new public/private key pair, size 2048 bits:
Simon Glass3e569a62013-06-13 15:10:00 -070068
Michael van der Westhuizene0f2f152014-07-02 10:17:26 +020069$ openssl genpkey -algorithm RSA -out keys/dev.key \
70 -pkeyopt rsa_keygen_bits:2048 -pkeyopt rsa_keygen_pubexp:65537
Simon Glass3e569a62013-06-13 15:10:00 -070071
Andreas Dannenberg4c1d5c22016-03-23 18:24:10 -050072To create a certificate for this containing the public key:
Simon Glass3e569a62013-06-13 15:10:00 -070073
74$ openssl req -batch -new -x509 -key keys/dev.key -out keys/dev.crt
75
76If you like you can look at the public key also:
77
78$ openssl rsa -in keys/dev.key -pubout
79
80
81Device Tree Bindings
82--------------------
83The following properties are required in the FIT's signature node(s) to
Masahiro Yamadae43f74a2017-08-22 15:19:20 +090084allow the signer to operate. These should be added to the .its file.
Simon Glass3e569a62013-06-13 15:10:00 -070085Signature nodes sit at the same level as hash nodes and are called
Andre Przywara83840402017-12-04 02:05:07 +000086signature-1, signature-2, etc.
Simon Glass3e569a62013-06-13 15:10:00 -070087
Masahiro Yamada6af55202017-10-19 19:37:59 +090088- algo: Algorithm name (e.g. "sha1,rsa2048")
Simon Glass3e569a62013-06-13 15:10:00 -070089
90- key-name-hint: Name of key to use for signing. The keys will normally be in
91a single directory (parameter -k to mkimage). For a given key <name>, its
92private key is stored in <name>.key and the certificate is stored in
93<name>.crt.
94
95When the image is signed, the following properties are added (mandatory):
96
97- value: The signature data (e.g. 256 bytes for 2048-bit RSA)
98
99When the image is signed, the following properties are optional:
100
101- timestamp: Time when image was signed (standard Unix time_t format)
102
103- signer-name: Name of the signer (e.g. "mkimage")
104
105- signer-version: Version string of the signer (e.g. "2013.01")
106
107- comment: Additional information about the signer or image
108
Philippe Reynese83cf2f2018-11-14 13:51:02 +0100109- padding: The padding algorithm, it may be pkcs-1.5 or pss,
110 if no value is provided we assume pkcs-1.5
111
Simon Glass4d098522013-06-13 15:10:09 -0700112For config bindings (see Signed Configurations below), the following
113additional properties are optional:
Simon Glass3e569a62013-06-13 15:10:00 -0700114
Simon Glass4d098522013-06-13 15:10:09 -0700115- sign-images: A list of images to sign, each being a property of the conf
116node that contains then. The default is "kernel,fdt" which means that these
117two images will be looked up in the config and signed if present.
118
119For config bindings, these properties are added by the signer:
120
121- hashed-nodes: A list of nodes which were hashed by the signer. Each is
122 a string - the full path to node. A typical value might be:
123
Andre Przywara83840402017-12-04 02:05:07 +0000124 hashed-nodes = "/", "/configurations/conf-1", "/images/kernel",
125 "/images/kernel/hash-1", "/images/fdt-1",
126 "/images/fdt-1/hash-1";
Simon Glass4d098522013-06-13 15:10:09 -0700127
128- hashed-strings: The start and size of the string region of the FIT that
129 was hashed
130
131Example: See sign-images.its for an example image tree source file and
132sign-configs.its for config signing.
Simon Glass3e569a62013-06-13 15:10:00 -0700133
134
135Public Key Storage
136------------------
137In order to verify an image that has been signed with a public key we need to
138have a trusted public key. This cannot be stored in the signed image, since
139it would be easy to alter. For this implementation we choose to store the
140public key in U-Boot's control FDT (using CONFIG_OF_CONTROL).
141
142Public keys should be stored as sub-nodes in a /signature node. Required
143properties are:
144
Masahiro Yamada6af55202017-10-19 19:37:59 +0900145- algo: Algorithm name (e.g. "sha1,rsa2048")
Simon Glass3e569a62013-06-13 15:10:00 -0700146
147Optional properties are:
148
149- key-name-hint: Name of key used for signing. This is only a hint since it
150is possible for the name to be changed. Verification can proceed by checking
151all available signing keys until one matches.
152
153- required: If present this indicates that the key must be verified for the
154image / configuration to be considered valid. Only required keys are
155normally verified by the FIT image booting algorithm. Valid values are
Masahiro Yamadae43f74a2017-08-22 15:19:20 +0900156"image" to force verification of all images, and "conf" to force verification
Simon Glass3e569a62013-06-13 15:10:00 -0700157of the selected configuration (which then relies on hashes in the images to
158verify those).
159
160Each signing algorithm has its own additional properties.
161
162For RSA the following are mandatory:
163
164- rsa,num-bits: Number of key bits (e.g. 2048)
165- rsa,modulus: Modulus (N) as a big-endian multi-word integer
Michael van der Westhuizene0f2f152014-07-02 10:17:26 +0200166- rsa,exponent: Public exponent (E) as a 64 bit unsigned integer
Simon Glass3e569a62013-06-13 15:10:00 -0700167- rsa,r-squared: (2^num-bits)^2 as a big-endian multi-word integer
168- rsa,n0-inverse: -1 / modulus[0] mod 2^32
169
170
Simon Glass4d098522013-06-13 15:10:09 -0700171Signed Configurations
172---------------------
173While signing images is useful, it does not provide complete protection
174against several types of attack. For example, it it possible to create a
175FIT with the same signed images, but with the configuration changed such
176that a different one is selected (mix and match attack). It is also possible
177to substitute a signed image from an older FIT version into a newer FIT
178(roll-back attack).
179
180As an example, consider this FIT:
181
182/ {
183 images {
Andre Przywara83840402017-12-04 02:05:07 +0000184 kernel-1 {
Simon Glass4d098522013-06-13 15:10:09 -0700185 data = <data for kernel1>
Andre Przywara83840402017-12-04 02:05:07 +0000186 signature-1 {
Simon Glass4d098522013-06-13 15:10:09 -0700187 algo = "sha1,rsa2048";
188 value = <...kernel signature 1...>
189 };
190 };
Andre Przywara83840402017-12-04 02:05:07 +0000191 kernel-2 {
Simon Glass4d098522013-06-13 15:10:09 -0700192 data = <data for kernel2>
Andre Przywara83840402017-12-04 02:05:07 +0000193 signature-1 {
Simon Glass4d098522013-06-13 15:10:09 -0700194 algo = "sha1,rsa2048";
195 value = <...kernel signature 2...>
196 };
197 };
Andre Przywara83840402017-12-04 02:05:07 +0000198 fdt-1 {
Simon Glass4d098522013-06-13 15:10:09 -0700199 data = <data for fdt1>;
Andre Przywara83840402017-12-04 02:05:07 +0000200 signature-1 {
Simon Glass4d098522013-06-13 15:10:09 -0700201 algo = "sha1,rsa2048";
202 vaue = <...fdt signature 1...>
203 };
204 };
Andre Przywara83840402017-12-04 02:05:07 +0000205 fdt-2 {
Simon Glass4d098522013-06-13 15:10:09 -0700206 data = <data for fdt2>;
Andre Przywara83840402017-12-04 02:05:07 +0000207 signature-1 {
Simon Glass4d098522013-06-13 15:10:09 -0700208 algo = "sha1,rsa2048";
209 vaue = <...fdt signature 2...>
210 };
211 };
212 };
213 configurations {
Andre Przywara83840402017-12-04 02:05:07 +0000214 default = "conf-1";
215 conf-1 {
216 kernel = "kernel-1";
217 fdt = "fdt-1";
Simon Glass4d098522013-06-13 15:10:09 -0700218 };
Mickaël Tansorier15958c72019-07-17 17:57:16 +0200219 conf-2 {
Andre Przywara83840402017-12-04 02:05:07 +0000220 kernel = "kernel-2";
221 fdt = "fdt-2";
Simon Glass4d098522013-06-13 15:10:09 -0700222 };
223 };
224};
225
226Since both kernels are signed it is easy for an attacker to add a new
227configuration 3 with kernel 1 and fdt 2:
228
229 configurations {
Andre Przywara83840402017-12-04 02:05:07 +0000230 default = "conf-1";
231 conf-1 {
232 kernel = "kernel-1";
233 fdt = "fdt-1";
Simon Glass4d098522013-06-13 15:10:09 -0700234 };
Mickaël Tansorier15958c72019-07-17 17:57:16 +0200235 conf-2 {
Andre Przywara83840402017-12-04 02:05:07 +0000236 kernel = "kernel-2";
237 fdt = "fdt-2";
Simon Glass4d098522013-06-13 15:10:09 -0700238 };
Andre Przywara83840402017-12-04 02:05:07 +0000239 conf-3 {
240 kernel = "kernel-1";
241 fdt = "fdt-2";
Simon Glass4d098522013-06-13 15:10:09 -0700242 };
243 };
244
245With signed images, nothing protects against this. Whether it gains an
246advantage for the attacker is debatable, but it is not secure.
247
Masahiro Yamadae43f74a2017-08-22 15:19:20 +0900248To solve this problem, we support signed configurations. In this case it
Simon Glass4d098522013-06-13 15:10:09 -0700249is the configurations that are signed, not the image. Each image has its
250own hash, and we include the hash in the configuration signature.
251
252So the above example is adjusted to look like this:
253
254/ {
255 images {
Andre Przywara83840402017-12-04 02:05:07 +0000256 kernel-1 {
Simon Glass4d098522013-06-13 15:10:09 -0700257 data = <data for kernel1>
Andre Przywara83840402017-12-04 02:05:07 +0000258 hash-1 {
Simon Glass4d098522013-06-13 15:10:09 -0700259 algo = "sha1";
260 value = <...kernel hash 1...>
261 };
262 };
Andre Przywara83840402017-12-04 02:05:07 +0000263 kernel-2 {
Simon Glass4d098522013-06-13 15:10:09 -0700264 data = <data for kernel2>
Andre Przywara83840402017-12-04 02:05:07 +0000265 hash-1 {
Simon Glass4d098522013-06-13 15:10:09 -0700266 algo = "sha1";
267 value = <...kernel hash 2...>
268 };
269 };
Andre Przywara83840402017-12-04 02:05:07 +0000270 fdt-1 {
Simon Glass4d098522013-06-13 15:10:09 -0700271 data = <data for fdt1>;
Andre Przywara83840402017-12-04 02:05:07 +0000272 hash-1 {
Simon Glass4d098522013-06-13 15:10:09 -0700273 algo = "sha1";
274 value = <...fdt hash 1...>
275 };
276 };
Andre Przywara83840402017-12-04 02:05:07 +0000277 fdt-2 {
Simon Glass4d098522013-06-13 15:10:09 -0700278 data = <data for fdt2>;
Andre Przywara83840402017-12-04 02:05:07 +0000279 hash-1 {
Simon Glass4d098522013-06-13 15:10:09 -0700280 algo = "sha1";
281 value = <...fdt hash 2...>
282 };
283 };
284 };
285 configurations {
Andre Przywara83840402017-12-04 02:05:07 +0000286 default = "conf-1";
287 conf-1 {
288 kernel = "kernel-1";
289 fdt = "fdt-1";
290 signature-1 {
Simon Glass4d098522013-06-13 15:10:09 -0700291 algo = "sha1,rsa2048";
292 value = <...conf 1 signature...>;
293 };
294 };
Andre Przywara83840402017-12-04 02:05:07 +0000295 conf-2 {
296 kernel = "kernel-2";
297 fdt = "fdt-2";
298 signature-1 {
Simon Glass4d098522013-06-13 15:10:09 -0700299 algo = "sha1,rsa2048";
300 value = <...conf 1 signature...>;
301 };
302 };
303 };
304};
305
306
307You can see that we have added hashes for all images (since they are no
308longer signed), and a signature to each configuration. In the above example,
Andre Przywara83840402017-12-04 02:05:07 +0000309mkimage will sign configurations/conf-1, the kernel and fdt that are
310pointed to by the configuration (/images/kernel-1, /images/kernel-1/hash-1,
311/images/fdt-1, /images/fdt-1/hash-1) and the root structure of the image
Simon Glass4d098522013-06-13 15:10:09 -0700312(so that it isn't possible to add or remove root nodes). The signature is
Andre Przywara83840402017-12-04 02:05:07 +0000313written into /configurations/conf-1/signature-1/value. It can easily be
Simon Glass4d098522013-06-13 15:10:09 -0700314verified later even if the FIT has been signed with other keys in the
315meantime.
316
317
Simon Glass3e569a62013-06-13 15:10:00 -0700318Verification
319------------
320FITs are verified when loaded. After the configuration is selected a list
321of required images is produced. If there are 'required' public keys, then
322each image must be verified against those keys. This means that every image
323that might be used by the target needs to be signed with 'required' keys.
324
325This happens automatically as part of a bootm command when FITs are used.
326
327
328Enabling FIT Verification
329-------------------------
330In addition to the options to enable FIT itself, the following CONFIGs must
331be enabled:
332
Masahiro Yamadae43f74a2017-08-22 15:19:20 +0900333CONFIG_FIT_SIGNATURE - enable signing and verification in FITs
Simon Glass3e569a62013-06-13 15:10:00 -0700334CONFIG_RSA - enable RSA algorithm for signing
335
Heiko Schocher21d29f72014-05-28 11:33:33 +0200336WARNING: When relying on signed FIT images with required signature check
337the legacy image format is default disabled by not defining
Tom Rinic76c93a2019-05-23 07:14:07 -0400338CONFIG_LEGACY_IMAGE_FORMAT
Simon Glass3e569a62013-06-13 15:10:00 -0700339
340Testing
341-------
Masahiro Yamadae43f74a2017-08-22 15:19:20 +0900342An easy way to test signing and verification is to use the test script
Simon Glass3e569a62013-06-13 15:10:00 -0700343provided in test/vboot/vboot_test.sh. This uses sandbox (a special version
344of U-Boot which runs under Linux) to show the operation of a 'bootm'
345command loading and verifying images.
346
347A sample run is show below:
348
349$ make O=sandbox sandbox_config
350$ make O=sandbox
351$ O=sandbox ./test/vboot/vboot_test.sh
352Simple Verified Boot Test
353=========================
354
355Please see doc/uImage.FIT/verified-boot.txt for more information
356
Heiko Schocher646257d2014-03-03 12:19:26 +0100357/home/hs/ids/u-boot/sandbox/tools/mkimage -D -I dts -O dtb -p 2000
Simon Glass3e569a62013-06-13 15:10:00 -0700358Build keys
Heiko Schocher646257d2014-03-03 12:19:26 +0100359do sha1 test
Simon Glass3e569a62013-06-13 15:10:00 -0700360Build FIT with signed images
361Test Verified Boot Run: unsigned signatures:: OK
362Sign images
363Test Verified Boot Run: signed images: OK
364Build FIT with signed configuration
365Test Verified Boot Run: unsigned config: OK
366Sign images
367Test Verified Boot Run: signed config: OK
Heiko Schocher29a23f92014-03-03 12:19:30 +0100368check signed config on the host
Simon Glassce1400f2014-06-12 07:24:53 -0600369Signature check OK
Heiko Schocher29a23f92014-03-03 12:19:30 +0100370OK
371Test Verified Boot Run: signed config: OK
Heiko Schocher646257d2014-03-03 12:19:26 +0100372Test Verified Boot Run: signed config with bad hash: OK
373do sha256 test
374Build FIT with signed images
375Test Verified Boot Run: unsigned signatures:: OK
376Sign images
377Test Verified Boot Run: signed images: OK
378Build FIT with signed configuration
379Test Verified Boot Run: unsigned config: OK
380Sign images
381Test Verified Boot Run: signed config: OK
Heiko Schocher29a23f92014-03-03 12:19:30 +0100382check signed config on the host
Simon Glassce1400f2014-06-12 07:24:53 -0600383Signature check OK
Heiko Schocher29a23f92014-03-03 12:19:30 +0100384OK
385Test Verified Boot Run: signed config: OK
Heiko Schocher646257d2014-03-03 12:19:26 +0100386Test Verified Boot Run: signed config with bad hash: OK
Simon Glass3e569a62013-06-13 15:10:00 -0700387
388Test passed
389
Simon Glassce1400f2014-06-12 07:24:53 -0600390
Vesa Jääskeläinen5b123e02019-06-16 20:53:38 +0300391Hardware Signing with PKCS#11 or with HSM
392-----------------------------------------
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600393
394Securely managing private signing keys can challenging, especially when the
395keys are stored on the file system of a computer that is connected to the
396Internet. If an attacker is able to steal the key, they can sign malicious FIT
397images which will appear genuine to your devices.
398
399An alternative solution is to keep your signing key securely stored on hardware
400device like a smartcard, USB token or Hardware Security Module (HSM) and have
401them perform the signing. PKCS#11 is standard for interfacing with these crypto
402device.
403
404Requirements:
Vesa Jääskeläinen5b123e02019-06-16 20:53:38 +0300405Smartcard/USB token/HSM which can work with some openssl engine
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600406openssl
Vesa Jääskeläinen5b123e02019-06-16 20:53:38 +0300407
408For pkcs11 engine usage:
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600409libp11 (provides pkcs11 engine)
410p11-kit (recommended to simplify setup)
411opensc (for smartcards and smartcard like USB devices)
412gnutls (recommended for key generation, p11tool)
413
Vesa Jääskeläinen5b123e02019-06-16 20:53:38 +0300414For generic HSMs respective openssl engine must be installed and locateable by
415openssl. This may require setting up LD_LIBRARY_PATH if engine is not installed
416to openssl's default search paths.
417
418PKCS11 engine support forms "key id" based on "keydir" and with
419"key-name-hint". "key-name-hint" is used as "object" name and "keydir" if
420defined is used to define (prefix for) which PKCS11 source is being used for
421lookup up for the key.
422
423PKCS11 engine key ids:
424 "pkcs11:<keydir>;object=<key-name-hint>;type=<public|private>"
425or
426 "pkcs11:object=<key-name-hint>;type=<public|private>",
427
428Generic HSM engine support forms "key id" based on "keydir" and with
429"key-name-hint". If "keydir" is specified for mkimage it is used as a prefix in
430"key id" and is appended with "key-name-hint".
431
432Generic engine key ids:
433 "<keydir><key-name-hint>"
434or
435 "<key-name-hint>"
436
437As mkimage does not at this time support prompting for passwords HSM may need
438key preloading wrapper to be used when invoking mkimage.
439
440The following examples use the Nitrokey Pro using pkcs11 engine. Instructions
441for other devices may vary.
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600442
443Notes on pkcs11 engine setup:
444
445Make sure p11-kit, opensc are installed and that p11-kit is setup to use opensc.
446/usr/share/p11-kit/modules/opensc.module should be present on your system.
447
448
449Generating Keys On the Nitrokey:
450
451$ gpg --card-edit
452
453Reader ...........: Nitrokey Nitrokey Pro (xxxxxxxx0000000000000000) 00 00
454Application ID ...: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
455Version ..........: 2.1
456Manufacturer .....: ZeitControl
457Serial number ....: xxxxxxxx
458Name of cardholder: [not set]
459Language prefs ...: de
460Sex ..............: unspecified
461URL of public key : [not set]
462Login data .......: [not set]
463Signature PIN ....: forced
464Key attributes ...: rsa2048 rsa2048 rsa2048
465Max. PIN lengths .: 32 32 32
466PIN retry counter : 3 0 3
467Signature counter : 0
468Signature key ....: [none]
469Encryption key....: [none]
470Authentication key: [none]
471General key info..: [none]
472
473gpg/card> generate
474Make off-card backup of encryption key? (Y/n) n
475
476Please note that the factory settings of the PINs are
477 PIN = '123456' Admin PIN = '12345678'
478You should change them using the command --change-pin
479
480What keysize do you want for the Signature key? (2048) 4096
481The card will now be re-configured to generate a key of 4096 bits
482Note: There is no guarantee that the card supports the requested size.
483 If the key generation does not succeed, please check the
484 documentation of your card to see what sizes are allowed.
485What keysize do you want for the Encryption key? (2048) 4096
486The card will now be re-configured to generate a key of 4096 bits
487What keysize do you want for the Authentication key? (2048) 4096
488The card will now be re-configured to generate a key of 4096 bits
489Please specify how long the key should be valid.
490 0 = key does not expire
491 <n> = key expires in n days
492 <n>w = key expires in n weeks
493 <n>m = key expires in n months
494 <n>y = key expires in n years
495Key is valid for? (0)
496Key does not expire at all
497Is this correct? (y/N) y
498
499GnuPG needs to construct a user ID to identify your key.
500
501Real name: John Doe
502Email address: john.doe@email.com
503Comment:
504You selected this USER-ID:
505 "John Doe <john.doe@email.com>"
506
507Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? o
508
509
510Using p11tool to get the token URL:
511
512Depending on system configuration, gpg-agent may need to be killed first.
513
514$ p11tool --provider /usr/lib/opensc-pkcs11.so --list-tokens
515Token 0:
516URL: pkcs11:model=PKCS%2315%20emulated;manufacturer=ZeitControl;serial=000xxxxxxxxx;token=OpenPGP%20card%20%28User%20PIN%20%28sig%29%29
517Label: OpenPGP card (User PIN (sig))
518Type: Hardware token
519Manufacturer: ZeitControl
520Model: PKCS#15 emulated
521Serial: 000xxxxxxxxx
522Module: (null)
523
524
525Token 1:
526URL: pkcs11:model=PKCS%2315%20emulated;manufacturer=ZeitControl;serial=000xxxxxxxxx;token=OpenPGP%20card%20%28User%20PIN%29
527Label: OpenPGP card (User PIN)
528Type: Hardware token
529Manufacturer: ZeitControl
530Model: PKCS#15 emulated
531Serial: 000xxxxxxxxx
532Module: (null)
533
534Use the portion of the signature token URL after "pkcs11:" as the keydir argument (-k) to mkimage below.
535
536
537Use the URL of the token to list the private keys:
538
539$ p11tool --login --provider /usr/lib/opensc-pkcs11.so --list-privkeys \
540"pkcs11:model=PKCS%2315%20emulated;manufacturer=ZeitControl;serial=000xxxxxxxxx;token=OpenPGP%20card%20%28User%20PIN%20%28sig%29%29"
541Token 'OpenPGP card (User PIN (sig))' with URL 'pkcs11:model=PKCS%2315%20emulated;manufacturer=ZeitControl;serial=000xxxxxxxxx;token=OpenPGP%20card%20%28User%20PIN%20%28sig%29%29' requires user PIN
542Enter PIN:
543Object 0:
544URL: pkcs11:model=PKCS%2315%20emulated;manufacturer=ZeitControl;serial=000xxxxxxxxx;token=OpenPGP%20card%20%28User%20PIN%20%28sig%29%29;id=%01;object=Signature%20key;type=private
545Type: Private key
546Label: Signature key
547Flags: CKA_PRIVATE; CKA_NEVER_EXTRACTABLE; CKA_SENSITIVE;
548ID: 01
549
550Use the label, in this case "Signature key" as the key-name-hint in your FIT.
551
552Create the fitImage:
553$ ./tools/mkimage -f fit-image.its fitImage
554
555
556Sign the fitImage with the hardware key:
557
558$ ./tools/mkimage -F -k \
559"model=PKCS%2315%20emulated;manufacturer=ZeitControl;serial=000xxxxxxxxx;token=OpenPGP%20card%20%28User%20PIN%20%28sig%29%29" \
560-K u-boot.dtb -N pkcs11 -r fitImage
561
562
Simon Glass3e569a62013-06-13 15:10:00 -0700563Future Work
564-----------
565- Roll-back protection using a TPM is done using the tpm command. This can
566be scripted, but we might consider a default way of doing this, built into
567bootm.
568
569
570Possible Future Work
571--------------------
572- Add support for other RSA/SHA variants, such as rsa4096,sha512.
573- Other algorithms besides RSA
574- More sandbox tests for failure modes
575- Passwords for keys/certificates
576- Perhaps implement OAEP
577- Enhance bootm to permit scripted signature verification (so that a script
578can verify an image but not actually boot it)
579
580
581Simon Glass
582sjg@chromium.org
5831-1-13