1 /* Module signature checker
3 * Copyright (C) 2012 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
12 #include <linux/kernel.h>
13 #include <linux/errno.h>
14 #include <keys/system_keyring.h>
15 #include <crypto/public_key.h>
16 #include "module-internal.h"
19 * Module signature information block.
21 * The constituents of the signature section are, in order:
28 struct module_signature
{
29 u8 algo
; /* Public-key crypto algorithm [0] */
30 u8 hash
; /* Digest algorithm [0] */
31 u8 id_type
; /* Key identifier type [PKEY_ID_PKCS7] */
32 u8 signer_len
; /* Length of signer's name [0] */
33 u8 key_id_len
; /* Length of key identifier [0] */
35 __be32 sig_len
; /* Length of signature data */
39 * Verify the signature on a module.
41 int mod_verify_sig(const void *mod
, unsigned long *_modlen
)
43 struct module_signature ms
;
44 size_t modlen
= *_modlen
, sig_len
;
46 pr_devel("==>%s(,%zu)\n", __func__
, modlen
);
48 if (modlen
<= sizeof(ms
))
51 memcpy(&ms
, mod
+ (modlen
- sizeof(ms
)), sizeof(ms
));
54 sig_len
= be32_to_cpu(ms
.sig_len
);
55 if (sig_len
>= modlen
)
60 if (ms
.id_type
!= PKEY_ID_PKCS7
) {
61 pr_err("Module is not signed with expected PKCS#7 message\n");
72 pr_err("PKCS#7 signature info has unexpected non-zero params\n");
76 return system_verify_data(mod
, modlen
, mod
+ modlen
, sig_len
,
77 VERIFYING_MODULE_SIGNATURE
);