1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2011 Nokia Corporation
4 * Copyright (C) 2011 Intel Corporation
7 * Dmitry Kasatkin <dmitry.kasatkin@nokia.com>
8 * <dmitry.kasatkin@intel.com>
11 * implements signature (RSA) verification
12 * pkcs decoding is based on LibTomCrypt code
15 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
17 #include <linux/err.h>
18 #include <linux/module.h>
19 #include <linux/slab.h>
20 #include <linux/key.h>
21 #include <linux/crypto.h>
22 #include <crypto/hash.h>
23 #include <crypto/sha.h>
24 #include <keys/user-type.h>
25 #include <linux/mpi.h>
26 #include <linux/digsig.h>
28 static struct crypto_shash
*shash
;
30 static const char *pkcs_1_v1_5_decode_emsa(const unsigned char *msg
,
32 unsigned long modulus_bitlen
,
33 unsigned long *outlen
)
35 unsigned long modulus_len
, ps_len
, i
;
37 modulus_len
= (modulus_bitlen
>> 3) + (modulus_bitlen
& 7 ? 1 : 0);
39 /* test message size */
40 if ((msglen
> modulus_len
) || (modulus_len
< 11))
43 /* separate encoded message */
44 if (msg
[0] != 0x00 || msg
[1] != 0x01)
47 for (i
= 2; i
< modulus_len
- 1; i
++)
53 /* There was no octet with hexadecimal value 0x00
54 to separate ps from m. */
59 *outlen
= (msglen
- (2 + ps_len
+ 1));
61 return msg
+ 2 + ps_len
+ 1;
65 * RSA Signature verification with public key
67 static int digsig_verify_rsa(struct key
*key
,
68 const char *sig
, int siglen
,
69 const char *h
, int hlen
)
73 unsigned long mlen
, mblen
;
76 unsigned char *out1
= NULL
;
78 MPI in
= NULL
, res
= NULL
, pkey
[2];
81 const struct user_key_payload
*ukp
;
82 struct pubkey_hdr
*pkh
;
85 ukp
= user_key_payload_locked(key
);
88 /* key was revoked before we acquired its semaphore */
93 if (ukp
->datalen
< sizeof(*pkh
))
96 pkh
= (struct pubkey_hdr
*)ukp
->data
;
98 if (pkh
->version
!= 1)
101 if (pkh
->algo
!= PUBKEY_ALGO_RSA
)
108 endp
= ukp
->data
+ ukp
->datalen
;
110 for (i
= 0; i
< pkh
->nmpi
; i
++) {
111 unsigned int remaining
= endp
- datap
;
112 pkey
[i
] = mpi_read_from_buffer(datap
, &remaining
);
113 if (IS_ERR(pkey
[i
])) {
114 err
= PTR_ERR(pkey
[i
]);
120 mblen
= mpi_get_nbits(pkey
[0]);
121 mlen
= DIV_ROUND_UP(mblen
, 8);
130 out1
= kzalloc(mlen
, GFP_KERNEL
);
135 in
= mpi_read_from_buffer(sig
, &nret
);
141 res
= mpi_alloc(mpi_get_nlimbs(in
) * 2);
145 err
= mpi_powm(res
, in
, pkey
[1], pkey
[0]);
149 if (mpi_get_nlimbs(res
) * BYTES_PER_MPI_LIMB
> mlen
) {
154 p
= mpi_get_buffer(res
, &l
, NULL
);
162 memset(out1
, 0, head
);
163 memcpy(out1
+ head
, p
, l
);
167 m
= pkcs_1_v1_5_decode_emsa(out1
, len
, mblen
, &len
);
169 if (!m
|| len
!= hlen
|| memcmp(m
, h
, hlen
))
185 * digsig_verify() - digital signature verification with public key
186 * @keyring: keyring to search key in
187 * @sig: digital signature
188 * @siglen: length of the signature
190 * @datalen: length of the data
192 * Returns 0 on success, -EINVAL otherwise
194 * Verifies data integrity against digital signature.
195 * Currently only RSA is supported.
196 * Normally hash of the content is used as a data for this function.
199 int digsig_verify(struct key
*keyring
, const char *sig
, int siglen
,
200 const char *data
, int datalen
)
203 struct signature_hdr
*sh
= (struct signature_hdr
*)sig
;
204 struct shash_desc
*desc
= NULL
;
205 unsigned char hash
[SHA1_DIGEST_SIZE
];
209 if (siglen
< sizeof(*sh
) + 2)
212 if (sh
->algo
!= PUBKEY_ALGO_RSA
)
215 sprintf(name
, "%llX", __be64_to_cpup((uint64_t *)sh
->keyid
));
218 /* search in specific keyring */
220 kref
= keyring_search(make_key_ref(keyring
, 1UL),
221 &key_type_user
, name
, true);
223 key
= ERR_CAST(kref
);
225 key
= key_ref_to_ptr(kref
);
227 key
= request_key(&key_type_user
, name
, NULL
);
230 pr_err("key not found, id: %s\n", name
);
234 desc
= kzalloc(sizeof(*desc
) + crypto_shash_descsize(shash
),
241 crypto_shash_init(desc
);
242 crypto_shash_update(desc
, data
, datalen
);
243 crypto_shash_update(desc
, sig
, sizeof(*sh
));
244 crypto_shash_final(desc
, hash
);
248 /* pass signature mpis address */
249 err
= digsig_verify_rsa(key
, sig
+ sizeof(*sh
), siglen
- sizeof(*sh
),
255 return err
? -EINVAL
: 0;
257 EXPORT_SYMBOL_GPL(digsig_verify
);
259 static int __init
digsig_init(void)
261 shash
= crypto_alloc_shash("sha1", 0, 0);
263 pr_err("shash allocation failed\n");
264 return PTR_ERR(shash
);
271 static void __exit
digsig_cleanup(void)
273 crypto_free_shash(shash
);
276 module_init(digsig_init
);
277 module_exit(digsig_cleanup
);
279 MODULE_LICENSE("GPL");