blob: 7ff4a7170934a4a0e9a3ddba5f8c8bf127cfdf28 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Marek Vasutb401b732014-03-05 19:58:39 +01002/*
3 * Copyright (C) 2014 Marek Vasut <marex@denx.de>
4 *
5 * Command for en/de-crypting block of memory with AES-128-CBC cipher.
Marek Vasutb401b732014-03-05 19:58:39 +01006 */
7
8#include <common.h>
9#include <command.h>
Stefano Babicb80c0b92017-04-05 18:08:00 +020010#include <uboot_aes.h>
Marek Vasutb401b732014-03-05 19:58:39 +010011#include <malloc.h>
12#include <asm/byteorder.h>
13#include <linux/compiler.h>
14
Marek Vasutb401b732014-03-05 19:58:39 +010015/**
16 * do_aes() - Handle the "aes" command-line command
17 * @cmdtp: Command data struct pointer
18 * @flag: Command flag
19 * @argc: Command-line argument count
20 * @argv: Array of command-line arguments
21 *
22 * Returns zero on success, CMD_RET_USAGE in case of misuse and negative
23 * on error.
24 */
25static int do_aes(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
26{
Андрей Мозжухинaf09eba2018-01-03 15:43:56 +030027 uint32_t key_addr, iv_addr, src_addr, dst_addr, len;
28 uint8_t *key_ptr, *iv_ptr, *src_ptr, *dst_ptr;
Marek Vasutb401b732014-03-05 19:58:39 +010029 uint8_t key_exp[AES_EXPAND_KEY_LENGTH];
30 uint32_t aes_blocks;
31 int enc;
32
Андрей Мозжухинaf09eba2018-01-03 15:43:56 +030033 if (argc != 7)
Marek Vasutb401b732014-03-05 19:58:39 +010034 return CMD_RET_USAGE;
35
36 if (!strncmp(argv[1], "enc", 3))
37 enc = 1;
38 else if (!strncmp(argv[1], "dec", 3))
39 enc = 0;
40 else
41 return CMD_RET_USAGE;
42
43 key_addr = simple_strtoul(argv[2], NULL, 16);
Андрей Мозжухинaf09eba2018-01-03 15:43:56 +030044 iv_addr = simple_strtoul(argv[3], NULL, 16);
45 src_addr = simple_strtoul(argv[4], NULL, 16);
46 dst_addr = simple_strtoul(argv[5], NULL, 16);
47 len = simple_strtoul(argv[6], NULL, 16);
Marek Vasutb401b732014-03-05 19:58:39 +010048
49 key_ptr = (uint8_t *)key_addr;
Андрей Мозжухинaf09eba2018-01-03 15:43:56 +030050 iv_ptr = (uint8_t *)iv_addr;
Marek Vasutb401b732014-03-05 19:58:39 +010051 src_ptr = (uint8_t *)src_addr;
52 dst_ptr = (uint8_t *)dst_addr;
53
54 /* First we expand the key. */
55 aes_expand_key(key_ptr, key_exp);
56
57 /* Calculate the number of AES blocks to encrypt. */
58 aes_blocks = DIV_ROUND_UP(len, AES_KEY_LENGTH);
59
60 if (enc)
Андрей Мозжухинaf09eba2018-01-03 15:43:56 +030061 aes_cbc_encrypt_blocks(key_exp, iv_ptr, src_ptr, dst_ptr,
62 aes_blocks);
Marek Vasutb401b732014-03-05 19:58:39 +010063 else
Андрей Мозжухинaf09eba2018-01-03 15:43:56 +030064 aes_cbc_decrypt_blocks(key_exp, iv_ptr, src_ptr, dst_ptr,
65 aes_blocks);
Marek Vasutb401b732014-03-05 19:58:39 +010066
67 return 0;
68}
69
70/***************************************************/
71#ifdef CONFIG_SYS_LONGHELP
72static char aes_help_text[] =
Андрей Мозжухинaf09eba2018-01-03 15:43:56 +030073 "enc key iv src dst len - Encrypt block of data $len bytes long\n"
74 " at address $src using a key at address\n"
75 " $key with initialization vector at address\n"
76 " $iv. Store the result at address $dst.\n"
77 " The $len size must be multiple of 16 bytes.\n"
78 " The $key and $iv must be 16 bytes long.\n"
79 "aes dec key iv src dst len - Decrypt block of data $len bytes long\n"
80 " at address $src using a key at address\n"
81 " $key with initialization vector at address\n"
82 " $iv. Store the result at address $dst.\n"
83 " The $len size must be multiple of 16 bytes.\n"
84 " The $key and $iv must be 16 bytes long.";
Marek Vasutb401b732014-03-05 19:58:39 +010085#endif
86
87U_BOOT_CMD(
Андрей Мозжухинaf09eba2018-01-03 15:43:56 +030088 aes, 7, 1, do_aes,
Marek Vasutb401b732014-03-05 19:58:39 +010089 "AES 128 CBC encryption",
90 aes_help_text
91);