Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 | .. SPDX-License-Identifier: GPL-2.0+ LUKS (Linux Unified Key Setup) ============================== Overview -------- U-Boot provides support for accessing LUKS-encrypted partitions through the ``luks`` command and the blkmap device infrastructure. This allows U-Boot to unlock and read data from LUKS1 and LUKS2-encrypted block devices. LUKS is a standard for disk encryption that stores encryption metadata in a header on the encrypted device. It supports multiple key slots, allowing different passphrases to unlock the same encrypted data. Currently, U-Boot supports: * LUKS version 1 (LUKS1) * LUKS version 2 (LUKS2) with PBKDF2 and Argon2 key derivation * AES-256-CBC encryption with ESSIV (Encrypted Salt-Sector IV) mode * AES-256-XTS encryption (modern default for LUKS2) * Passphrase-based unlocking via PBKDF2 or Argon2id key derivation * Reading ext4 and other filesystems from unlocked devices Supported Cipher Modes ---------------------- The following cipher configurations are supported: **LUKS1:** * **Cipher**: aes * **Mode**: cbc-essiv:sha256 * **Key sizes**: 128-bit, 192-bit, 256-bit * **KDF**: PBKDF2 with SHA256 **LUKS2:** * **Cipher**: aes * **Mode**: cbc-essiv:sha256 or xts-plain64 * **Key sizes**: 128-bit, 192-bit, 256-bit (CBC); 256-bit, 512-bit (XTS) * **KDF**: PBKDF2 with SHA256, or Argon2id * **Hash**: sha256, sha512 (for PBKDF2 and digests) XTS mode is the modern default for LUKS2 and provides better security properties than CBC-ESSIV for disk encryption. Commands -------- See the :doc:`cmd/luks` for full details. luks detect ~~~~~~~~~~~ Detect whether a partition is LUKS-encrypted: :: luks detect <interface> <dev[:part]> Example: :: => luks detect mmc 0:2 LUKS1 encrypted partition detected This command checks for the LUKS magic bytes and validates the header structure. luks info ~~~~~~~~~ Display information about a LUKS partition: :: luks info <interface> <dev[:part]> Example: :: => luks info mmc 0:2 Version: 1 Cipher name: aes Cipher mode: cbc-essiv:sha256 Hash spec: sha256 Payload offset: 4096 Key bytes: 32 This shows the LUKS header metadata including encryption parameters and the offset to the encrypted data payload. luks unlock ~~~~~~~~~~~ Unlock a LUKS partition with a passphrase: :: luks unlock <interface> <dev[:part]> <passphrase> Example: :: => luks unlock mmc 0:2 mypassword Trying to unlock LUKS partition... Key size: 32 bytes Trying key slot 0... Successfully unlocked with key slot 0! Unlocked LUKS partition as blkmap device 'luks-mmc-0:2' Access decrypted data via: blkmap 0 This command: 1. Reads the LUKS header from the specified partition 2. Derives the encryption key from the passphrase using PBKDF2 3. Attempts to unlock each active key slot 4. Verifies the unlocked key against the master key digest 5. Creates a blkmap device that provides on-the-fly decryption Accessing Unlocked Data ----------------------- After unlocking, the decrypted data is accessible through a blkmap device. The device number is shown in the unlock output (typically ``blkmap 0``). Listing Files ~~~~~~~~~~~~~ Use standard filesystem commands to access the unlocked device: :: => ls blkmap 0 / ./ ../ lost+found/ 221 README.md 17 hello.txt subdir/ 20 test.txt 3 file(s), 4 dir(s) Reading Files ~~~~~~~~~~~~~ Read file contents: :: => cat blkmap 0 /hello.txt Hello from LUKS! Loading Files to Memory ~~~~~~~~~~~~~~~~~~~~~~~ Load files for further processing: :: => ext4load blkmap 0 ${loadaddr} /boot/vmlinuz 5242880 bytes read in 123 ms (40.6 MiB/s) Using with Boot Flows ~~~~~~~~~~~~~~~~~~~~~ LUKS-encrypted partitions can be integrated into boot flows: :: => bootflow scan => bootflow list The bootflow will detect filesystems on unlocked blkmap devices. Implementation Details ---------------------- Key Derivation ~~~~~~~~~~~~~~ LUKS supports two key derivation functions: **PBKDF2 (Password-Based Key Derivation Function 2)** Used by LUKS1 and LUKS2. The process: 1. Passphrase + salt → PBKDF2 → derived key 2. Derived key decrypts the AF-split key material 3. AF-merge combines the split key material → master key 4. Master key digest is verified against stored value PBKDF2 applies HMAC-SHA256 iteratively (typically 100,000+ iterations) to make brute-force attacks computationally expensive. **Argon2id (Modern KDF for LUKS2)** Argon2id is the winner of the Password Hashing Competition and provides better resistance to GPU-based cracking attacks. The process: 1. Passphrase + salt → Argon2id(time, memory, parallelism) → derived key 2. Derived key decrypts the AF-split key material 3. AF-merge combines the split key material → master key 4. Master key digest is verified against stored value Argon2id parameters: * **time**: Number of iterations through memory * **memory**: Amount of memory used in KiB (e.g., 1048576 = 1GB) * **parallelism**: Number of parallel threads/lanes Argon2id is memory-hard, making it resistant to ASIC and GPU attacks while remaining fast on CPUs. Anti-Forensic (AF) Splitter ~~~~~~~~~~~~~~~~~~~~~~~~~~~ LUKS uses an anti-forensic information splitter to protect key material: * The master key is split into 4000 stripes * Each stripe is XORed and hashed with a counter * All stripes must be recovered to reconstruct the key * This makes recovery from partial key material extremely difficult ESSIV Mode ~~~~~~~~~~ ESSIV (Encrypted Salt-Sector IV) generates unique initialization vectors for each encrypted sector: 1. ESSIV key = SHA256(master_key) 2. For each sector: IV = AES_encrypt(sector_number, ESSIV_key) 3. Data is encrypted: ciphertext = AES-CBC-encrypt(plaintext, master_key, IV) This prevents watermarking attacks where identical plaintext blocks would produce identical ciphertext blocks. XTS Mode ~~~~~~~~ XTS (XEX-based tweaked-codebook mode with ciphertext stealing) is the modern standard for disk encryption and the default for LUKS2. It provides several advantages over CBC-ESSIV: 1. **Tweakable block cipher**: Each 512-byte sector uses the sector number as a tweak 2. **No IV dependency**: Eliminates the need for ESSIV key derivation 3. **Parallel encryption**: Sectors can be encrypted/decrypted independently 4. **Better security**: Resistant to manipulation attacks on ciphertext XTS operation: 1. Uses two AES keys (concatenated): 256-bit key → two 128-bit keys, or 512-bit key → two 256-bit keys 2. For each 512-byte sector: * Data unit (tweak) = sector number in little-endian format * Plaintext is encrypted using AES-XTS with the data unit 3. Each 16-byte block within the sector uses a different tweak value derived from the sector number XTS is specified in IEEE P1619 and is widely used in modern disk encryption. LUKS2 JSON Metadata Parsing ~~~~~~~~~~~~~~~~~~~~~~~~~~~ LUKS2 stores its metadata in JSON format within the header. This is handled as follows: 1. **JSON to FDT Conversion**: The JSON metadata is converted to a Flattened Device Tree (FDT) format using ``json_to_fdt()`` 2. **ofnode Navigation**: ofnode API is used to access the tree structure 3. **Type-Safe Property Reading**: Properties are read using ``ofnode_read_string()`` and ``ofnode_read_u32()`` for type safety This approach provides several advantages: * **Robust Parsing**: Uses U-Boot's well-tested FDT/ofnode infrastructure * **Type Safety**: Explicit type checking for all properties * **Maintainability**: Clear code structure with proper node navigation * **No String Searching**: Eliminates fragile string-based parsing Example navigation path for reading a keyslot's KDF type: :: root → keyslots → "0" → kdf → type The implementation properly handles LUKS2's mixed data types: * JSON numbers (iterations, time, memory) are stored as 32-bit integers * JSON string-encoded numbers (offset, size) are parsed from strings * JSON strings (type, hash, salt) are read directly Blkmap Device Mapping ~~~~~~~~~~~~~~~~~~~~~ When a LUKS partition is unlocked, U-Boot creates a blkmap device that: * Maps to the underlying encrypted device * Performs on-the-fly decryption (AES-CBC-ESSIV for LUKS1, AES-XTS for LUKS2) * Presents decrypted data as a standard block device * Supports whole-disk filesystems (no partition table required) The blkmap device number can be used with any U-Boot command that accepts block device specifications. Creating LUKS Partitions for Testing ------------------------------------ Using cryptsetup on Linux ~~~~~~~~~~~~~~~~~~~~~~~~~ **LUKS1 with CBC-ESSIV (legacy):** :: # Create a 60MB file $ dd if=/dev/zero of=test.img bs=1M count=60 # Format as LUKS1 $ cryptsetup luksFormat --type luks1 \ --cipher aes-cbc-essiv:sha256 \ --key-size 256 \ --hash sha256 \ test.img # Open the LUKS device $ cryptsetup open test.img testluks # Create filesystem $ mkfs.ext4 /dev/mapper/testluks # Mount and add files $ mount /dev/mapper/testluks /mnt $ echo "Hello from LUKS!" > /mnt/hello.txt $ umount /mnt # Close the LUKS device $ cryptsetup close testluks **LUKS2 with XTS and PBKDF2 (modern default):** :: # Create a 60MB file $ dd if=/dev/zero of=test.img bs=1M count=60 # Format as LUKS2 with XTS $ cryptsetup luksFormat --type luks2 \ --cipher aes-xts-plain64 \ --key-size 512 \ --hash sha256 \ --pbkdf pbkdf2 \ test.img # Open, create filesystem, and add files (same as LUKS1) $ cryptsetup open test.img testluks $ mkfs.ext4 /dev/mapper/testluks $ mount /dev/mapper/testluks /mnt $ echo "Hello from LUKS2!" > /mnt/hello.txt $ umount /mnt $ cryptsetup close testluks **LUKS2 with XTS and Argon2id (maximum security):** :: # Create a 60MB file $ dd if=/dev/zero of=test.img bs=1M count=60 # Format as LUKS2 with XTS and Argon2id $ cryptsetup luksFormat --type luks2 \ --cipher aes-xts-plain64 \ --key-size 512 \ --hash sha256 \ --pbkdf argon2id \ --pbkdf-memory 65536 \ --pbkdf-parallel 4 \ --iter-time 2000 \ test.img # Open, create filesystem, and add files (same as above) $ cryptsetup open test.img testluks $ mkfs.ext4 /dev/mapper/testluks $ mount /dev/mapper/testluks /mnt $ echo "Hello from LUKS2 with Argon2!" > /mnt/hello.txt $ umount /mnt $ cryptsetup close testluks Note: Argon2 parameters: * ``--pbkdf-memory``: Memory in KiB (65536 = 64MB) * ``--pbkdf-parallel``: Number of parallel threads * ``--iter-time``: Target time in milliseconds for KDF Using Python with U-Boot Test Infrastructure ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ See ``test/py/tests/fs_helper.py`` for the ``FsHelper`` class: :: from fs_helper import FsHelper, DiskHelper # Create LUKS2 encrypted filesystem with PBKDF2 (default) with FsHelper(config, 'ext4', 30, 'test', part_mb=60, passphrase='mypassword') as fsh: # Add files to fsh.srcdir with open(os.path.join(fsh.srcdir, 'hello.txt'), 'w') as f: f.write('Hello from LUKS!\n') # Create encrypted filesystem fsh.mk_fs() # Create LUKS2 encrypted filesystem with Argon2id with FsHelper(config, 'ext4', 30, 'test', part_mb=60, encrypt_passphrase='mypassword', luks_kdf='argon2id') as fsh: # Add files to fsh.srcdir with open(os.path.join(fsh.srcdir, 'hello.txt'), 'w') as f: f.write('Hello from LUKS with Argon2!\n') # Create encrypted filesystem fsh.mk_fs() # Create LUKS1 encrypted filesystem with FsHelper(config, 'ext4', 30, 'test', part_mb=60, encrypt_passphrase='mypassword', luks_version=1) as fsh: # Add files to fsh.srcdir with open(os.path.join(fsh.srcdir, 'hello.txt'), 'w') as f: f.write('Hello from LUKS1!\n') # Create encrypted filesystem fsh.mk_fs() Configuration Options --------------------- CONFIG_CMD_LUKS Enable the ``luks`` command CONFIG_BLK_LUKS Enable LUKS block device support CONFIG_BLKMAP Enable blkmap device support (required for LUKS unlock) CONFIG_JSON Enable JSON parsing support (automatically selected by CONFIG_BLK_LUKS for LUKS2 metadata parsing) CONFIG_MBEDTLS_LIB Enable mbedTLS library for AES-XTS and key derivation CONFIG_SHA256 Enable SHA-256 hashing support CONFIG_SHA512 Enable SHA-512 hashing support (optional, for LUKS2) CONFIG_ARGON2 Enable Argon2 key derivation support (optional, for modern LUKS2) Limitations ----------- * Only passphrase-based unlocking is supported (no key files) * Unlocked devices are read-only (write support not yet implemented) * Master key remains in memory after unlocking (not securely erased on exit) * Argon2 support requires CONFIG_ARGON2 to be enabled (adds ~50KB to binary) * Large Argon2 memory requirements may not be suitable for all embedded systems Security Considerations ----------------------- Passphrase Handling ~~~~~~~~~~~~~~~~~~~ * Passphrases are passed as command-line arguments * They may be visible in command history * Consider using environment variables or scripts to minimize exposure Memory Security ~~~~~~~~~~~~~~~ * Master keys are wiped from stack after use where possible * Keys remain in blkmap device structure while device is active * No secure memory protection or key erasure on warm reboot Intended Use Cases ~~~~~~~~~~~~~~~~~~ U-Boot's LUKS support is intended for: * Boot-time access to encrypted root filesystems * Reading configuration from encrypted partitions * Testing and development of encrypted disk support It is **not** a replacement for full disk encryption solutions in production operating systems. Example Use Cases ----------------- Encrypted Root Filesystem ~~~~~~~~~~~~~~~~~~~~~~~~~ Boot from an encrypted root partition: :: => luks unlock mmc 0:2 ${rootfs_password} => setenv bootargs root=/dev/blkmap0 rootfstype=ext4 => ext4load blkmap 0 ${kernel_addr_r} /boot/vmlinuz => ext4load blkmap 0 ${ramdisk_addr_r} /boot/initrd.img => bootz ${kernel_addr_r} ${ramdisk_addr_r} ${fdt_addr_r} Encrypted Configuration Storage ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Read configuration from encrypted partition: :: => luks unlock mmc 0:3 ${config_password} => ext4load blkmap 0 ${loadaddr} /config/boot.conf => env import -t ${loadaddr} ${filesize} Testing ------- See ``test/boot/luks.c`` for tests: * LUKS detection on encrypted and non-encrypted partitions * LUKS header information parsing * Successful unlocking with correct passphrase * Rejection of incorrect passphrases * Blkmap device creation and filesystem access See Also -------- * :doc:`cmd/luks` - LUKS command reference * :doc:`cmd/blkmap` - Blkmap command reference * :doc:`blkmap` - Blkmap device documentation * ``test/py/tests/fs_helper.py`` - Filesystem helper for creating test images * Linux ``cryptsetup`` documentation for LUKS disk format specification |