Simon Glass | 3e569a6 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 1 | U-Boot FIT Signature Verification |
| 2 | ================================= |
| 3 | |
| 4 | Introduction |
| 5 | ------------ |
| 6 | FIT supports hashing of images so that these hashes can be checked on |
| 7 | loading. This protects against corruption of the image. However it does not |
| 8 | prevent the substitution of one image for another. |
| 9 | |
| 10 | The signature feature allows the hash to be signed with a private key such |
| 11 | that it can be verified using a public key later. Provided that the private |
| 12 | key is kept secret and the public key is stored in a non-volatile place, |
| 13 | any image can be verified in this way. |
| 14 | |
| 15 | See verified-boot.txt for more general information on verified boot. |
| 16 | |
| 17 | |
| 18 | Concepts |
| 19 | -------- |
| 20 | Some familiarity with public key cryptography is assumed in this section. |
| 21 | |
| 22 | The 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 | |
| 28 | The 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 | |
| 37 | The signing is generally performed by mkimage, as part of making a firmware |
| 38 | image for the device. The verification is normally done in U-Boot on the |
| 39 | device. |
| 40 | |
| 41 | |
| 42 | Algorithms |
| 43 | ---------- |
| 44 | In principle any suitable algorithm can be used to sign and verify a hash. |
| 45 | At present only one class of algorithms is supported: SHA1 hashing with RSA. |
| 46 | This works by hashing the image to produce a 20-byte hash. |
| 47 | |
| 48 | While it is acceptable to bring in large cryptographic libraries such as |
| 49 | openssl on the host side (e.g. mkimage), it is not desirable for U-Boot. |
| 50 | For the run-time verification side, it is important to keep code and data |
| 51 | size as small as possible. |
| 52 | |
| 53 | For this reason the RSA image verification uses pre-processed public keys |
| 54 | which can be used with a very small amount of code - just some extraction |
| 55 | of data from the FDT and exponentiation mod n. Code size impact is a little |
| 56 | under 5KB on Tegra Seaboard, for example. |
| 57 | |
| 58 | It is relatively straightforward to add new algorithms if required. If |
| 59 | another RSA variant is needed, then it can be added to the table in |
| 60 | image-sig.c. If another algorithm is needed (such as DSA) then it can be |
| 61 | placed alongside rsa.c, and its functions added to the table in image-sig.c |
| 62 | also. |
| 63 | |
| 64 | |
Andreas Dannenberg | 4c1d5c2 | 2016-03-23 18:24:10 -0500 | [diff] [blame] | 65 | Creating an RSA key pair and certificate |
| 66 | ---------------------------------------- |
| 67 | To create a new public/private key pair, size 2048 bits: |
Simon Glass | 3e569a6 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 68 | |
Michael van der Westhuizen | e0f2f15 | 2014-07-02 10:17:26 +0200 | [diff] [blame] | 69 | $ openssl genpkey -algorithm RSA -out keys/dev.key \ |
| 70 | -pkeyopt rsa_keygen_bits:2048 -pkeyopt rsa_keygen_pubexp:65537 |
Simon Glass | 3e569a6 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 71 | |
Andreas Dannenberg | 4c1d5c2 | 2016-03-23 18:24:10 -0500 | [diff] [blame] | 72 | To create a certificate for this containing the public key: |
Simon Glass | 3e569a6 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 73 | |
| 74 | $ openssl req -batch -new -x509 -key keys/dev.key -out keys/dev.crt |
| 75 | |
| 76 | If you like you can look at the public key also: |
| 77 | |
| 78 | $ openssl rsa -in keys/dev.key -pubout |
| 79 | |
| 80 | |
| 81 | Device Tree Bindings |
| 82 | -------------------- |
| 83 | The following properties are required in the FIT's signature node(s) to |
Masahiro Yamada | e43f74a | 2017-08-22 15:19:20 +0900 | [diff] [blame] | 84 | allow the signer to operate. These should be added to the .its file. |
Simon Glass | 3e569a6 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 85 | Signature nodes sit at the same level as hash nodes and are called |
Andre Przywara | 8384040 | 2017-12-04 02:05:07 +0000 | [diff] [blame] | 86 | signature-1, signature-2, etc. |
Simon Glass | 3e569a6 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 87 | |
Masahiro Yamada | 6af5520 | 2017-10-19 19:37:59 +0900 | [diff] [blame] | 88 | - algo: Algorithm name (e.g. "sha1,rsa2048") |
Simon Glass | 3e569a6 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 89 | |
| 90 | - key-name-hint: Name of key to use for signing. The keys will normally be in |
| 91 | a single directory (parameter -k to mkimage). For a given key <name>, its |
| 92 | private key is stored in <name>.key and the certificate is stored in |
| 93 | <name>.crt. |
| 94 | |
| 95 | When 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 | |
| 99 | When 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 Reynes | e83cf2f | 2018-11-14 13:51:02 +0100 | [diff] [blame] | 109 | - 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 Glass | 4d09852 | 2013-06-13 15:10:09 -0700 | [diff] [blame] | 112 | For config bindings (see Signed Configurations below), the following |
| 113 | additional properties are optional: |
Simon Glass | 3e569a6 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 114 | |
Simon Glass | 4d09852 | 2013-06-13 15:10:09 -0700 | [diff] [blame] | 115 | - sign-images: A list of images to sign, each being a property of the conf |
| 116 | node that contains then. The default is "kernel,fdt" which means that these |
| 117 | two images will be looked up in the config and signed if present. |
| 118 | |
| 119 | For 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 Przywara | 8384040 | 2017-12-04 02:05:07 +0000 | [diff] [blame] | 124 | hashed-nodes = "/", "/configurations/conf-1", "/images/kernel", |
| 125 | "/images/kernel/hash-1", "/images/fdt-1", |
| 126 | "/images/fdt-1/hash-1"; |
Simon Glass | 4d09852 | 2013-06-13 15:10:09 -0700 | [diff] [blame] | 127 | |
| 128 | - hashed-strings: The start and size of the string region of the FIT that |
| 129 | was hashed |
| 130 | |
| 131 | Example: See sign-images.its for an example image tree source file and |
| 132 | sign-configs.its for config signing. |
Simon Glass | 3e569a6 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 133 | |
| 134 | |
| 135 | Public Key Storage |
| 136 | ------------------ |
| 137 | In order to verify an image that has been signed with a public key we need to |
| 138 | have a trusted public key. This cannot be stored in the signed image, since |
| 139 | it would be easy to alter. For this implementation we choose to store the |
| 140 | public key in U-Boot's control FDT (using CONFIG_OF_CONTROL). |
| 141 | |
| 142 | Public keys should be stored as sub-nodes in a /signature node. Required |
| 143 | properties are: |
| 144 | |
Masahiro Yamada | 6af5520 | 2017-10-19 19:37:59 +0900 | [diff] [blame] | 145 | - algo: Algorithm name (e.g. "sha1,rsa2048") |
Simon Glass | 3e569a6 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 146 | |
| 147 | Optional properties are: |
| 148 | |
| 149 | - key-name-hint: Name of key used for signing. This is only a hint since it |
| 150 | is possible for the name to be changed. Verification can proceed by checking |
| 151 | all available signing keys until one matches. |
| 152 | |
| 153 | - required: If present this indicates that the key must be verified for the |
| 154 | image / configuration to be considered valid. Only required keys are |
| 155 | normally verified by the FIT image booting algorithm. Valid values are |
Masahiro Yamada | e43f74a | 2017-08-22 15:19:20 +0900 | [diff] [blame] | 156 | "image" to force verification of all images, and "conf" to force verification |
Simon Glass | 3e569a6 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 157 | of the selected configuration (which then relies on hashes in the images to |
| 158 | verify those). |
| 159 | |
| 160 | Each signing algorithm has its own additional properties. |
| 161 | |
| 162 | For 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 Westhuizen | e0f2f15 | 2014-07-02 10:17:26 +0200 | [diff] [blame] | 166 | - rsa,exponent: Public exponent (E) as a 64 bit unsigned integer |
Simon Glass | 3e569a6 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 167 | - 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 | |
Heinrich Schuchardt | 97fd369 | 2019-12-11 10:45:50 +0100 | [diff] [blame] | 170 | These parameters can be added to a binary device tree using parameter -K of the |
| 171 | mkimage command:: |
| 172 | |
| 173 | tools/mkimage -f fit.its -K control.dtb -k keys -r image.fit |
| 174 | |
| 175 | Here is an example of a generated device tree node:: |
| 176 | |
| 177 | signature { |
| 178 | key-dev { |
| 179 | required = "conf"; |
| 180 | algo = "sha256,rsa2048"; |
| 181 | rsa,r-squared = <0xb76d1acf 0xa1763ca5 0xeb2f126 |
| 182 | 0x742edc80 0xd3f42177 0x9741d9d9 |
| 183 | 0x35bb476e 0xff41c718 0xd3801430 |
| 184 | 0xf22537cb 0xa7e79960 0xae32a043 |
| 185 | 0x7da1427a 0x341d6492 0x3c2762f5 |
| 186 | 0xaac04726 0x5b262d96 0xf984e86d |
| 187 | 0xb99443c7 0x17080c33 0x940f6892 |
| 188 | 0xd57a95d1 0x6ea7b691 0xc5038fa8 |
| 189 | 0x6bb48a6e 0x73f1b1ea 0x37160841 |
| 190 | 0xe05715ce 0xa7c45bbd 0x690d82d5 |
| 191 | 0x99c2454c 0x6ff117b3 0xd830683b |
| 192 | 0x3f81c9cf 0x1ca38a91 0x0c3392e4 |
| 193 | 0xd817c625 0x7b8e9a24 0x175b89ea |
| 194 | 0xad79f3dc 0x4d50d7b4 0x9d4e90f8 |
| 195 | 0xad9e2939 0xc165d6a4 0x0ada7e1b |
| 196 | 0xfb1bf495 0xfc3131c2 0xb8c6e604 |
| 197 | 0xc2761124 0xf63de4a6 0x0e9565f9 |
| 198 | 0xc8e53761 0x7e7a37a5 0xe99dcdae |
| 199 | 0x9aff7e1e 0xbd44b13d 0x6b0e6aa4 |
| 200 | 0x038907e4 0x8e0d6850 0xef51bc20 |
| 201 | 0xf73c94af 0x88bea7b1 0xcbbb1b30 |
| 202 | 0xd024b7f3>; |
| 203 | rsa,modulus = <0xc0711d6cb 0x9e86db7f 0x45986dbe |
| 204 | 0x023f1e8c9 0xe1a4c4d0 0x8a0dfdc9 |
| 205 | 0x023ba0c48 0x06815f6a 0x5caa0654 |
| 206 | 0x07078c4b7 0x3d154853 0x40729023 |
| 207 | 0x0b007c8fe 0x5a3647e5 0x23b41e20 |
| 208 | 0x024720591 0x66915305 0x0e0b29b0 |
| 209 | 0x0de2ad30d 0x8589430f 0xb1590325 |
| 210 | 0x0fb9f5d5e 0x9eba752a 0xd88e6de9 |
| 211 | 0x056b3dcc6 0x9a6b8e61 0x6784f61f |
| 212 | 0x000f39c21 0x5eec6b33 0xd78e4f78 |
| 213 | 0x0921a305f 0xaa2cc27e 0x1ca917af |
| 214 | 0x06e1134f4 0xd48cac77 0x4e914d07 |
| 215 | 0x0f707aa5a 0x0d141f41 0x84677f1d |
| 216 | 0x0ad47a049 0x028aedb6 0xd5536fcf |
| 217 | 0x03fef1e4f 0x133a03d2 0xfd7a750a |
| 218 | 0x0f9159732 0xd207812e 0x6a807375 |
| 219 | 0x06434230d 0xc8e22dad 0x9f29b3d6 |
| 220 | 0x07c44ac2b 0xfa2aad88 0xe2429504 |
| 221 | 0x041febd41 0x85d0d142 0x7b194d65 |
| 222 | 0x06e5d55ea 0x41116961 0xf3181dde |
| 223 | 0x068bf5fbc 0x3dd82047 0x00ee647e |
| 224 | 0x0d7a44ab3>; |
| 225 | rsa,exponent = <0x00 0x10001>; |
| 226 | rsa,n0-inverse = <0xb3928b85>; |
| 227 | rsa,num-bits = <0x800>; |
| 228 | key-name-hint = "dev"; |
| 229 | }; |
| 230 | }; |
| 231 | |
Simon Glass | 3e569a6 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 232 | |
Simon Glass | 4d09852 | 2013-06-13 15:10:09 -0700 | [diff] [blame] | 233 | Signed Configurations |
| 234 | --------------------- |
| 235 | While signing images is useful, it does not provide complete protection |
| 236 | against several types of attack. For example, it it possible to create a |
| 237 | FIT with the same signed images, but with the configuration changed such |
| 238 | that a different one is selected (mix and match attack). It is also possible |
| 239 | to substitute a signed image from an older FIT version into a newer FIT |
| 240 | (roll-back attack). |
| 241 | |
| 242 | As an example, consider this FIT: |
| 243 | |
| 244 | / { |
| 245 | images { |
Andre Przywara | 8384040 | 2017-12-04 02:05:07 +0000 | [diff] [blame] | 246 | kernel-1 { |
Simon Glass | 4d09852 | 2013-06-13 15:10:09 -0700 | [diff] [blame] | 247 | data = <data for kernel1> |
Andre Przywara | 8384040 | 2017-12-04 02:05:07 +0000 | [diff] [blame] | 248 | signature-1 { |
Simon Glass | 4d09852 | 2013-06-13 15:10:09 -0700 | [diff] [blame] | 249 | algo = "sha1,rsa2048"; |
| 250 | value = <...kernel signature 1...> |
| 251 | }; |
| 252 | }; |
Andre Przywara | 8384040 | 2017-12-04 02:05:07 +0000 | [diff] [blame] | 253 | kernel-2 { |
Simon Glass | 4d09852 | 2013-06-13 15:10:09 -0700 | [diff] [blame] | 254 | data = <data for kernel2> |
Andre Przywara | 8384040 | 2017-12-04 02:05:07 +0000 | [diff] [blame] | 255 | signature-1 { |
Simon Glass | 4d09852 | 2013-06-13 15:10:09 -0700 | [diff] [blame] | 256 | algo = "sha1,rsa2048"; |
| 257 | value = <...kernel signature 2...> |
| 258 | }; |
| 259 | }; |
Andre Przywara | 8384040 | 2017-12-04 02:05:07 +0000 | [diff] [blame] | 260 | fdt-1 { |
Simon Glass | 4d09852 | 2013-06-13 15:10:09 -0700 | [diff] [blame] | 261 | data = <data for fdt1>; |
Andre Przywara | 8384040 | 2017-12-04 02:05:07 +0000 | [diff] [blame] | 262 | signature-1 { |
Simon Glass | 4d09852 | 2013-06-13 15:10:09 -0700 | [diff] [blame] | 263 | algo = "sha1,rsa2048"; |
| 264 | vaue = <...fdt signature 1...> |
| 265 | }; |
| 266 | }; |
Andre Przywara | 8384040 | 2017-12-04 02:05:07 +0000 | [diff] [blame] | 267 | fdt-2 { |
Simon Glass | 4d09852 | 2013-06-13 15:10:09 -0700 | [diff] [blame] | 268 | data = <data for fdt2>; |
Andre Przywara | 8384040 | 2017-12-04 02:05:07 +0000 | [diff] [blame] | 269 | signature-1 { |
Simon Glass | 4d09852 | 2013-06-13 15:10:09 -0700 | [diff] [blame] | 270 | algo = "sha1,rsa2048"; |
| 271 | vaue = <...fdt signature 2...> |
| 272 | }; |
| 273 | }; |
| 274 | }; |
| 275 | configurations { |
Andre Przywara | 8384040 | 2017-12-04 02:05:07 +0000 | [diff] [blame] | 276 | default = "conf-1"; |
| 277 | conf-1 { |
| 278 | kernel = "kernel-1"; |
| 279 | fdt = "fdt-1"; |
Simon Glass | 4d09852 | 2013-06-13 15:10:09 -0700 | [diff] [blame] | 280 | }; |
Mickaël Tansorier | 15958c7 | 2019-07-17 17:57:16 +0200 | [diff] [blame] | 281 | conf-2 { |
Andre Przywara | 8384040 | 2017-12-04 02:05:07 +0000 | [diff] [blame] | 282 | kernel = "kernel-2"; |
| 283 | fdt = "fdt-2"; |
Simon Glass | 4d09852 | 2013-06-13 15:10:09 -0700 | [diff] [blame] | 284 | }; |
| 285 | }; |
| 286 | }; |
| 287 | |
| 288 | Since both kernels are signed it is easy for an attacker to add a new |
| 289 | configuration 3 with kernel 1 and fdt 2: |
| 290 | |
| 291 | configurations { |
Andre Przywara | 8384040 | 2017-12-04 02:05:07 +0000 | [diff] [blame] | 292 | default = "conf-1"; |
| 293 | conf-1 { |
| 294 | kernel = "kernel-1"; |
| 295 | fdt = "fdt-1"; |
Simon Glass | 4d09852 | 2013-06-13 15:10:09 -0700 | [diff] [blame] | 296 | }; |
Mickaël Tansorier | 15958c7 | 2019-07-17 17:57:16 +0200 | [diff] [blame] | 297 | conf-2 { |
Andre Przywara | 8384040 | 2017-12-04 02:05:07 +0000 | [diff] [blame] | 298 | kernel = "kernel-2"; |
| 299 | fdt = "fdt-2"; |
Simon Glass | 4d09852 | 2013-06-13 15:10:09 -0700 | [diff] [blame] | 300 | }; |
Andre Przywara | 8384040 | 2017-12-04 02:05:07 +0000 | [diff] [blame] | 301 | conf-3 { |
| 302 | kernel = "kernel-1"; |
| 303 | fdt = "fdt-2"; |
Simon Glass | 4d09852 | 2013-06-13 15:10:09 -0700 | [diff] [blame] | 304 | }; |
| 305 | }; |
| 306 | |
| 307 | With signed images, nothing protects against this. Whether it gains an |
| 308 | advantage for the attacker is debatable, but it is not secure. |
| 309 | |
Masahiro Yamada | e43f74a | 2017-08-22 15:19:20 +0900 | [diff] [blame] | 310 | To solve this problem, we support signed configurations. In this case it |
Simon Glass | 4d09852 | 2013-06-13 15:10:09 -0700 | [diff] [blame] | 311 | is the configurations that are signed, not the image. Each image has its |
| 312 | own hash, and we include the hash in the configuration signature. |
| 313 | |
| 314 | So the above example is adjusted to look like this: |
| 315 | |
| 316 | / { |
| 317 | images { |
Andre Przywara | 8384040 | 2017-12-04 02:05:07 +0000 | [diff] [blame] | 318 | kernel-1 { |
Simon Glass | 4d09852 | 2013-06-13 15:10:09 -0700 | [diff] [blame] | 319 | data = <data for kernel1> |
Andre Przywara | 8384040 | 2017-12-04 02:05:07 +0000 | [diff] [blame] | 320 | hash-1 { |
Simon Glass | 4d09852 | 2013-06-13 15:10:09 -0700 | [diff] [blame] | 321 | algo = "sha1"; |
| 322 | value = <...kernel hash 1...> |
| 323 | }; |
| 324 | }; |
Andre Przywara | 8384040 | 2017-12-04 02:05:07 +0000 | [diff] [blame] | 325 | kernel-2 { |
Simon Glass | 4d09852 | 2013-06-13 15:10:09 -0700 | [diff] [blame] | 326 | data = <data for kernel2> |
Andre Przywara | 8384040 | 2017-12-04 02:05:07 +0000 | [diff] [blame] | 327 | hash-1 { |
Simon Glass | 4d09852 | 2013-06-13 15:10:09 -0700 | [diff] [blame] | 328 | algo = "sha1"; |
| 329 | value = <...kernel hash 2...> |
| 330 | }; |
| 331 | }; |
Andre Przywara | 8384040 | 2017-12-04 02:05:07 +0000 | [diff] [blame] | 332 | fdt-1 { |
Simon Glass | 4d09852 | 2013-06-13 15:10:09 -0700 | [diff] [blame] | 333 | data = <data for fdt1>; |
Andre Przywara | 8384040 | 2017-12-04 02:05:07 +0000 | [diff] [blame] | 334 | hash-1 { |
Simon Glass | 4d09852 | 2013-06-13 15:10:09 -0700 | [diff] [blame] | 335 | algo = "sha1"; |
| 336 | value = <...fdt hash 1...> |
| 337 | }; |
| 338 | }; |
Andre Przywara | 8384040 | 2017-12-04 02:05:07 +0000 | [diff] [blame] | 339 | fdt-2 { |
Simon Glass | 4d09852 | 2013-06-13 15:10:09 -0700 | [diff] [blame] | 340 | data = <data for fdt2>; |
Andre Przywara | 8384040 | 2017-12-04 02:05:07 +0000 | [diff] [blame] | 341 | hash-1 { |
Simon Glass | 4d09852 | 2013-06-13 15:10:09 -0700 | [diff] [blame] | 342 | algo = "sha1"; |
| 343 | value = <...fdt hash 2...> |
| 344 | }; |
| 345 | }; |
| 346 | }; |
| 347 | configurations { |
Andre Przywara | 8384040 | 2017-12-04 02:05:07 +0000 | [diff] [blame] | 348 | default = "conf-1"; |
| 349 | conf-1 { |
| 350 | kernel = "kernel-1"; |
| 351 | fdt = "fdt-1"; |
| 352 | signature-1 { |
Simon Glass | 4d09852 | 2013-06-13 15:10:09 -0700 | [diff] [blame] | 353 | algo = "sha1,rsa2048"; |
| 354 | value = <...conf 1 signature...>; |
| 355 | }; |
| 356 | }; |
Andre Przywara | 8384040 | 2017-12-04 02:05:07 +0000 | [diff] [blame] | 357 | conf-2 { |
| 358 | kernel = "kernel-2"; |
| 359 | fdt = "fdt-2"; |
| 360 | signature-1 { |
Simon Glass | 4d09852 | 2013-06-13 15:10:09 -0700 | [diff] [blame] | 361 | algo = "sha1,rsa2048"; |
| 362 | value = <...conf 1 signature...>; |
| 363 | }; |
| 364 | }; |
| 365 | }; |
| 366 | }; |
| 367 | |
| 368 | |
| 369 | You can see that we have added hashes for all images (since they are no |
| 370 | longer signed), and a signature to each configuration. In the above example, |
Andre Przywara | 8384040 | 2017-12-04 02:05:07 +0000 | [diff] [blame] | 371 | mkimage will sign configurations/conf-1, the kernel and fdt that are |
| 372 | pointed to by the configuration (/images/kernel-1, /images/kernel-1/hash-1, |
| 373 | /images/fdt-1, /images/fdt-1/hash-1) and the root structure of the image |
Simon Glass | 4d09852 | 2013-06-13 15:10:09 -0700 | [diff] [blame] | 374 | (so that it isn't possible to add or remove root nodes). The signature is |
Andre Przywara | 8384040 | 2017-12-04 02:05:07 +0000 | [diff] [blame] | 375 | written into /configurations/conf-1/signature-1/value. It can easily be |
Simon Glass | 4d09852 | 2013-06-13 15:10:09 -0700 | [diff] [blame] | 376 | verified later even if the FIT has been signed with other keys in the |
| 377 | meantime. |
| 378 | |
| 379 | |
Simon Glass | 3e569a6 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 380 | Verification |
| 381 | ------------ |
| 382 | FITs are verified when loaded. After the configuration is selected a list |
| 383 | of required images is produced. If there are 'required' public keys, then |
| 384 | each image must be verified against those keys. This means that every image |
| 385 | that might be used by the target needs to be signed with 'required' keys. |
| 386 | |
| 387 | This happens automatically as part of a bootm command when FITs are used. |
| 388 | |
| 389 | |
| 390 | Enabling FIT Verification |
| 391 | ------------------------- |
| 392 | In addition to the options to enable FIT itself, the following CONFIGs must |
| 393 | be enabled: |
| 394 | |
Masahiro Yamada | e43f74a | 2017-08-22 15:19:20 +0900 | [diff] [blame] | 395 | CONFIG_FIT_SIGNATURE - enable signing and verification in FITs |
Simon Glass | 3e569a6 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 396 | CONFIG_RSA - enable RSA algorithm for signing |
| 397 | |
Heiko Schocher | 21d29f7 | 2014-05-28 11:33:33 +0200 | [diff] [blame] | 398 | WARNING: When relying on signed FIT images with required signature check |
| 399 | the legacy image format is default disabled by not defining |
Tom Rini | c76c93a | 2019-05-23 07:14:07 -0400 | [diff] [blame] | 400 | CONFIG_LEGACY_IMAGE_FORMAT |
Simon Glass | 3e569a6 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 401 | |
Mickaël Tansorier | 57a5112 | 2019-07-17 17:57:29 +0200 | [diff] [blame] | 402 | |
Simon Glass | 3e569a6 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 403 | Testing |
| 404 | ------- |
Masahiro Yamada | e43f74a | 2017-08-22 15:19:20 +0900 | [diff] [blame] | 405 | An easy way to test signing and verification is to use the test script |
Simon Glass | 3e569a6 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 406 | provided in test/vboot/vboot_test.sh. This uses sandbox (a special version |
| 407 | of U-Boot which runs under Linux) to show the operation of a 'bootm' |
| 408 | command loading and verifying images. |
| 409 | |
| 410 | A sample run is show below: |
| 411 | |
| 412 | $ make O=sandbox sandbox_config |
| 413 | $ make O=sandbox |
| 414 | $ O=sandbox ./test/vboot/vboot_test.sh |
Mickaël Tansorier | 57a5112 | 2019-07-17 17:57:29 +0200 | [diff] [blame] | 415 | |
| 416 | |
Simon Glass | 3e569a6 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 417 | Simple Verified Boot Test |
| 418 | ========================= |
| 419 | |
| 420 | Please see doc/uImage.FIT/verified-boot.txt for more information |
| 421 | |
Heiko Schocher | 646257d | 2014-03-03 12:19:26 +0100 | [diff] [blame] | 422 | /home/hs/ids/u-boot/sandbox/tools/mkimage -D -I dts -O dtb -p 2000 |
Simon Glass | 3e569a6 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 423 | Build keys |
Heiko Schocher | 646257d | 2014-03-03 12:19:26 +0100 | [diff] [blame] | 424 | do sha1 test |
Simon Glass | 3e569a6 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 425 | Build FIT with signed images |
| 426 | Test Verified Boot Run: unsigned signatures:: OK |
| 427 | Sign images |
| 428 | Test Verified Boot Run: signed images: OK |
| 429 | Build FIT with signed configuration |
| 430 | Test Verified Boot Run: unsigned config: OK |
| 431 | Sign images |
| 432 | Test Verified Boot Run: signed config: OK |
Heiko Schocher | 29a23f9 | 2014-03-03 12:19:30 +0100 | [diff] [blame] | 433 | check signed config on the host |
Simon Glass | ce1400f | 2014-06-12 07:24:53 -0600 | [diff] [blame] | 434 | Signature check OK |
Heiko Schocher | 29a23f9 | 2014-03-03 12:19:30 +0100 | [diff] [blame] | 435 | OK |
| 436 | Test Verified Boot Run: signed config: OK |
Heiko Schocher | 646257d | 2014-03-03 12:19:26 +0100 | [diff] [blame] | 437 | Test Verified Boot Run: signed config with bad hash: OK |
| 438 | do sha256 test |
| 439 | Build FIT with signed images |
| 440 | Test Verified Boot Run: unsigned signatures:: OK |
| 441 | Sign images |
| 442 | Test Verified Boot Run: signed images: OK |
| 443 | Build FIT with signed configuration |
| 444 | Test Verified Boot Run: unsigned config: OK |
| 445 | Sign images |
| 446 | Test Verified Boot Run: signed config: OK |
Heiko Schocher | 29a23f9 | 2014-03-03 12:19:30 +0100 | [diff] [blame] | 447 | check signed config on the host |
Simon Glass | ce1400f | 2014-06-12 07:24:53 -0600 | [diff] [blame] | 448 | Signature check OK |
Heiko Schocher | 29a23f9 | 2014-03-03 12:19:30 +0100 | [diff] [blame] | 449 | OK |
| 450 | Test Verified Boot Run: signed config: OK |
Heiko Schocher | 646257d | 2014-03-03 12:19:26 +0100 | [diff] [blame] | 451 | Test Verified Boot Run: signed config with bad hash: OK |
Simon Glass | 3e569a6 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 452 | |
| 453 | Test passed |
| 454 | |
Simon Glass | ce1400f | 2014-06-12 07:24:53 -0600 | [diff] [blame] | 455 | |
Vesa Jääskeläinen | 5b123e0 | 2019-06-16 20:53:38 +0300 | [diff] [blame] | 456 | Hardware Signing with PKCS#11 or with HSM |
| 457 | ----------------------------------------- |
George McCollister | f1ca1fd | 2017-01-06 13:14:17 -0600 | [diff] [blame] | 458 | |
| 459 | Securely managing private signing keys can challenging, especially when the |
| 460 | keys are stored on the file system of a computer that is connected to the |
| 461 | Internet. If an attacker is able to steal the key, they can sign malicious FIT |
| 462 | images which will appear genuine to your devices. |
| 463 | |
| 464 | An alternative solution is to keep your signing key securely stored on hardware |
| 465 | device like a smartcard, USB token or Hardware Security Module (HSM) and have |
| 466 | them perform the signing. PKCS#11 is standard for interfacing with these crypto |
| 467 | device. |
| 468 | |
| 469 | Requirements: |
Vesa Jääskeläinen | 5b123e0 | 2019-06-16 20:53:38 +0300 | [diff] [blame] | 470 | Smartcard/USB token/HSM which can work with some openssl engine |
George McCollister | f1ca1fd | 2017-01-06 13:14:17 -0600 | [diff] [blame] | 471 | openssl |
Vesa Jääskeläinen | 5b123e0 | 2019-06-16 20:53:38 +0300 | [diff] [blame] | 472 | |
| 473 | For pkcs11 engine usage: |
George McCollister | f1ca1fd | 2017-01-06 13:14:17 -0600 | [diff] [blame] | 474 | libp11 (provides pkcs11 engine) |
| 475 | p11-kit (recommended to simplify setup) |
| 476 | opensc (for smartcards and smartcard like USB devices) |
| 477 | gnutls (recommended for key generation, p11tool) |
| 478 | |
Vesa Jääskeläinen | 5b123e0 | 2019-06-16 20:53:38 +0300 | [diff] [blame] | 479 | For generic HSMs respective openssl engine must be installed and locateable by |
| 480 | openssl. This may require setting up LD_LIBRARY_PATH if engine is not installed |
| 481 | to openssl's default search paths. |
| 482 | |
| 483 | PKCS11 engine support forms "key id" based on "keydir" and with |
Jan Luebbe | 24bf6e8 | 2020-05-13 12:26:24 +0200 | [diff] [blame] | 484 | "key-name-hint". "key-name-hint" is used as "object" name (if not defined in |
| 485 | keydir). "keydir" (if defined) is used to define (prefix for) which PKCS11 source |
| 486 | is being used for lookup up for the key. |
Vesa Jääskeläinen | 5b123e0 | 2019-06-16 20:53:38 +0300 | [diff] [blame] | 487 | |
| 488 | PKCS11 engine key ids: |
| 489 | "pkcs11:<keydir>;object=<key-name-hint>;type=<public|private>" |
Jan Luebbe | 24bf6e8 | 2020-05-13 12:26:24 +0200 | [diff] [blame] | 490 | or, if keydir contains "object=" |
| 491 | "pkcs11:<keydir>;type=<public|private>" |
Vesa Jääskeläinen | 5b123e0 | 2019-06-16 20:53:38 +0300 | [diff] [blame] | 492 | or |
| 493 | "pkcs11:object=<key-name-hint>;type=<public|private>", |
| 494 | |
| 495 | Generic HSM engine support forms "key id" based on "keydir" and with |
| 496 | "key-name-hint". If "keydir" is specified for mkimage it is used as a prefix in |
| 497 | "key id" and is appended with "key-name-hint". |
| 498 | |
| 499 | Generic engine key ids: |
| 500 | "<keydir><key-name-hint>" |
| 501 | or |
| 502 | "<key-name-hint>" |
| 503 | |
| 504 | As mkimage does not at this time support prompting for passwords HSM may need |
| 505 | key preloading wrapper to be used when invoking mkimage. |
| 506 | |
| 507 | The following examples use the Nitrokey Pro using pkcs11 engine. Instructions |
| 508 | for other devices may vary. |
George McCollister | f1ca1fd | 2017-01-06 13:14:17 -0600 | [diff] [blame] | 509 | |
| 510 | Notes on pkcs11 engine setup: |
| 511 | |
| 512 | Make sure p11-kit, opensc are installed and that p11-kit is setup to use opensc. |
| 513 | /usr/share/p11-kit/modules/opensc.module should be present on your system. |
| 514 | |
| 515 | |
| 516 | Generating Keys On the Nitrokey: |
| 517 | |
| 518 | $ gpg --card-edit |
| 519 | |
| 520 | Reader ...........: Nitrokey Nitrokey Pro (xxxxxxxx0000000000000000) 00 00 |
| 521 | Application ID ...: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx |
| 522 | Version ..........: 2.1 |
| 523 | Manufacturer .....: ZeitControl |
| 524 | Serial number ....: xxxxxxxx |
| 525 | Name of cardholder: [not set] |
| 526 | Language prefs ...: de |
| 527 | Sex ..............: unspecified |
| 528 | URL of public key : [not set] |
| 529 | Login data .......: [not set] |
| 530 | Signature PIN ....: forced |
| 531 | Key attributes ...: rsa2048 rsa2048 rsa2048 |
| 532 | Max. PIN lengths .: 32 32 32 |
| 533 | PIN retry counter : 3 0 3 |
| 534 | Signature counter : 0 |
| 535 | Signature key ....: [none] |
| 536 | Encryption key....: [none] |
| 537 | Authentication key: [none] |
| 538 | General key info..: [none] |
| 539 | |
| 540 | gpg/card> generate |
| 541 | Make off-card backup of encryption key? (Y/n) n |
| 542 | |
| 543 | Please note that the factory settings of the PINs are |
| 544 | PIN = '123456' Admin PIN = '12345678' |
| 545 | You should change them using the command --change-pin |
| 546 | |
| 547 | What keysize do you want for the Signature key? (2048) 4096 |
| 548 | The card will now be re-configured to generate a key of 4096 bits |
| 549 | Note: There is no guarantee that the card supports the requested size. |
| 550 | If the key generation does not succeed, please check the |
| 551 | documentation of your card to see what sizes are allowed. |
| 552 | What keysize do you want for the Encryption key? (2048) 4096 |
| 553 | The card will now be re-configured to generate a key of 4096 bits |
| 554 | What keysize do you want for the Authentication key? (2048) 4096 |
| 555 | The card will now be re-configured to generate a key of 4096 bits |
| 556 | Please specify how long the key should be valid. |
| 557 | 0 = key does not expire |
| 558 | <n> = key expires in n days |
| 559 | <n>w = key expires in n weeks |
| 560 | <n>m = key expires in n months |
| 561 | <n>y = key expires in n years |
| 562 | Key is valid for? (0) |
| 563 | Key does not expire at all |
| 564 | Is this correct? (y/N) y |
| 565 | |
| 566 | GnuPG needs to construct a user ID to identify your key. |
| 567 | |
| 568 | Real name: John Doe |
| 569 | Email address: john.doe@email.com |
| 570 | Comment: |
| 571 | You selected this USER-ID: |
| 572 | "John Doe <john.doe@email.com>" |
| 573 | |
| 574 | Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? o |
| 575 | |
| 576 | |
| 577 | Using p11tool to get the token URL: |
| 578 | |
| 579 | Depending on system configuration, gpg-agent may need to be killed first. |
| 580 | |
| 581 | $ p11tool --provider /usr/lib/opensc-pkcs11.so --list-tokens |
| 582 | Token 0: |
| 583 | URL: pkcs11:model=PKCS%2315%20emulated;manufacturer=ZeitControl;serial=000xxxxxxxxx;token=OpenPGP%20card%20%28User%20PIN%20%28sig%29%29 |
| 584 | Label: OpenPGP card (User PIN (sig)) |
| 585 | Type: Hardware token |
| 586 | Manufacturer: ZeitControl |
| 587 | Model: PKCS#15 emulated |
| 588 | Serial: 000xxxxxxxxx |
| 589 | Module: (null) |
| 590 | |
| 591 | |
| 592 | Token 1: |
| 593 | URL: pkcs11:model=PKCS%2315%20emulated;manufacturer=ZeitControl;serial=000xxxxxxxxx;token=OpenPGP%20card%20%28User%20PIN%29 |
| 594 | Label: OpenPGP card (User PIN) |
| 595 | Type: Hardware token |
| 596 | Manufacturer: ZeitControl |
| 597 | Model: PKCS#15 emulated |
| 598 | Serial: 000xxxxxxxxx |
| 599 | Module: (null) |
| 600 | |
| 601 | Use the portion of the signature token URL after "pkcs11:" as the keydir argument (-k) to mkimage below. |
| 602 | |
| 603 | |
| 604 | Use the URL of the token to list the private keys: |
| 605 | |
| 606 | $ p11tool --login --provider /usr/lib/opensc-pkcs11.so --list-privkeys \ |
| 607 | "pkcs11:model=PKCS%2315%20emulated;manufacturer=ZeitControl;serial=000xxxxxxxxx;token=OpenPGP%20card%20%28User%20PIN%20%28sig%29%29" |
| 608 | Token '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 |
| 609 | Enter PIN: |
| 610 | Object 0: |
| 611 | URL: 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 |
| 612 | Type: Private key |
| 613 | Label: Signature key |
| 614 | Flags: CKA_PRIVATE; CKA_NEVER_EXTRACTABLE; CKA_SENSITIVE; |
| 615 | ID: 01 |
| 616 | |
| 617 | Use the label, in this case "Signature key" as the key-name-hint in your FIT. |
| 618 | |
| 619 | Create the fitImage: |
| 620 | $ ./tools/mkimage -f fit-image.its fitImage |
| 621 | |
| 622 | |
| 623 | Sign the fitImage with the hardware key: |
| 624 | |
| 625 | $ ./tools/mkimage -F -k \ |
| 626 | "model=PKCS%2315%20emulated;manufacturer=ZeitControl;serial=000xxxxxxxxx;token=OpenPGP%20card%20%28User%20PIN%20%28sig%29%29" \ |
| 627 | -K u-boot.dtb -N pkcs11 -r fitImage |
| 628 | |
| 629 | |
Simon Glass | 3e569a6 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 630 | Future Work |
| 631 | ----------- |
| 632 | - Roll-back protection using a TPM is done using the tpm command. This can |
| 633 | be scripted, but we might consider a default way of doing this, built into |
| 634 | bootm. |
| 635 | |
| 636 | |
| 637 | Possible Future Work |
| 638 | -------------------- |
| 639 | - Add support for other RSA/SHA variants, such as rsa4096,sha512. |
| 640 | - Other algorithms besides RSA |
| 641 | - More sandbox tests for failure modes |
| 642 | - Passwords for keys/certificates |
| 643 | - Perhaps implement OAEP |
| 644 | - Enhance bootm to permit scripted signature verification (so that a script |
| 645 | can verify an image but not actually boot it) |
| 646 | |
| 647 | |
| 648 | Simon Glass |
| 649 | sjg@chromium.org |
| 650 | 1-1-13 |