]> Git Repo - J-u-boot.git/blame - common/image-sig.c
common: Kconfig: use 'vidconsole' name instead of old 'video'
[J-u-boot.git] / common / image-sig.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
3e569a6b
SG
2/*
3 * Copyright (c) 2013, Google Inc.
3e569a6b
SG
4 */
5
3e569a6b 6#include <common.h>
f7ae49fc 7#include <log.h>
56518e71 8#include <malloc.h>
401d1c4f 9#include <asm/global_data.h>
56518e71 10DECLARE_GLOBAL_DATA_PTR;
3e569a6b 11#include <image.h>
c5a68d29 12#include <relocate.h>
ed6c9e0b 13#include <u-boot/ecdsa.h>
2b9912e6 14#include <u-boot/rsa.h>
0bcb28df 15#include <u-boot/hash-checksum.h>
3e569a6b 16
4d098529
SG
17#define IMAGE_MAX_HASHED_NODES 100
18
646257d1
HS
19struct checksum_algo checksum_algos[] = {
20 {
8ec87df3
MY
21 .name = "sha1",
22 .checksum_len = SHA1_SUM_LEN,
23 .der_len = SHA1_DER_LEN,
24 .der_prefix = sha1_der_prefix,
8ec87df3 25 .calculate = hash_calculate,
646257d1
HS
26 },
27 {
8ec87df3
MY
28 .name = "sha256",
29 .checksum_len = SHA256_SUM_LEN,
30 .der_len = SHA256_DER_LEN,
31 .der_prefix = sha256_der_prefix,
8ec87df3 32 .calculate = hash_calculate,
d16b38f4
RD
33 },
34#ifdef CONFIG_SHA384
35 {
36 .name = "sha384",
37 .checksum_len = SHA384_SUM_LEN,
38 .der_len = SHA384_DER_LEN,
39 .der_prefix = sha384_der_prefix,
d16b38f4
RD
40 .calculate = hash_calculate,
41 },
42#endif
43#ifdef CONFIG_SHA512
44 {
45 .name = "sha512",
46 .checksum_len = SHA512_SUM_LEN,
47 .der_len = SHA512_DER_LEN,
48 .der_prefix = sha512_der_prefix,
d16b38f4
RD
49 .calculate = hash_calculate,
50 },
51#endif
0c1d74fd
AD
52
53};
54
83dd98e0
AD
55struct checksum_algo *image_get_checksum_algo(const char *full_name)
56{
57 int i;
58 const char *name;
59
c5a68d29
SG
60 if (IS_ENABLED(CONFIG_NEEDS_MANUAL_RELOC)) {
61 static bool done;
1ed8c137 62
c5a68d29
SG
63 if (!done) {
64 done = true;
65 for (i = 0; i < ARRAY_SIZE(checksum_algos); i++) {
66 struct checksum_algo *algo = &checksum_algos[i];
67
68 MANUAL_RELOC(algo->name);
69 MANUAL_RELOC(algo->calculate);
70 }
1ed8c137
KR
71 }
72 }
1ed8c137 73
83dd98e0
AD
74 for (i = 0; i < ARRAY_SIZE(checksum_algos); i++) {
75 name = checksum_algos[i].name;
76 /* Make sure names match and next char is a comma */
77 if (!strncmp(name, full_name, strlen(name)) &&
78 full_name[strlen(name)] == ',')
79 return &checksum_algos[i];
19c402af 80 }
db1b5f3d 81
83dd98e0
AD
82 return NULL;
83}
3e569a6b 84
83dd98e0 85struct crypto_algo *image_get_crypto_algo(const char *full_name)
3e569a6b 86{
0980164b 87 struct crypto_algo *crypto, *end;
83dd98e0
AD
88 const char *name;
89
c5a68d29
SG
90 if (IS_ENABLED(CONFIG_NEEDS_MANUAL_RELOC)) {
91 static bool done;
92
93 if (!done) {
94 done = true;
95 crypto = ll_entry_start(struct crypto_algo, cryptos);
96 end = ll_entry_end(struct crypto_algo, cryptos);
97 for (; crypto < end; crypto++) {
98 MANUAL_RELOC(crypto->name);
99 MANUAL_RELOC(crypto->verify);
100 }
b9826bf0
AG
101 }
102 }
b9826bf0 103
83dd98e0
AD
104 /* Move name to after the comma */
105 name = strchr(full_name, ',');
106 if (!name)
107 return NULL;
108 name += 1;
3e569a6b 109
0980164b
AG
110 crypto = ll_entry_start(struct crypto_algo, cryptos);
111 end = ll_entry_end(struct crypto_algo, cryptos);
112 for (; crypto < end; crypto++) {
113 if (!strcmp(crypto->name, name))
114 return crypto;
115 }
116
117 /* Not found */
3e569a6b
SG
118 return NULL;
119}
56518e71 120
20031567
PR
121struct padding_algo *image_get_padding_algo(const char *name)
122{
de41f0ee 123 struct padding_algo *padding, *end;
20031567
PR
124
125 if (!name)
126 return NULL;
127
de41f0ee
AG
128 padding = ll_entry_start(struct padding_algo, paddings);
129 end = ll_entry_end(struct padding_algo, paddings);
130 for (; padding < end; padding++) {
131 if (!strcmp(padding->name, name))
132 return padding;
20031567
PR
133 }
134
135 return NULL;
136}
This page took 0.371066 seconds and 4 git commands to generate.