2012-09-22 06:24:55 +08:00
|
|
|
/* Asymmetric public-key algorithm definitions
|
|
|
|
*
|
|
|
|
* See Documentation/crypto/asymmetric-keys.txt
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Red Hat, Inc. All Rights Reserved.
|
|
|
|
* Written by David Howells (dhowells@redhat.com)
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public Licence
|
|
|
|
* as published by the Free Software Foundation; either version
|
|
|
|
* 2 of the Licence, or (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _LINUX_PUBLIC_KEY_H
|
|
|
|
#define _LINUX_PUBLIC_KEY_H
|
|
|
|
|
|
|
|
#include <linux/mpi.h>
|
2013-05-06 20:58:15 +08:00
|
|
|
#include <crypto/hash_info.h>
|
2012-09-22 06:24:55 +08:00
|
|
|
|
|
|
|
enum pkey_algo {
|
|
|
|
PKEY_ALGO_DSA,
|
|
|
|
PKEY_ALGO_RSA,
|
|
|
|
PKEY_ALGO__LAST
|
|
|
|
};
|
|
|
|
|
2013-08-30 23:15:10 +08:00
|
|
|
extern const char *const pkey_algo_name[PKEY_ALGO__LAST];
|
2012-09-22 06:24:55 +08:00
|
|
|
|
2013-05-06 20:58:15 +08:00
|
|
|
/* asymmetric key implementation supports only up to SHA224 */
|
|
|
|
#define PKEY_HASH__LAST (HASH_ALGO_SHA224 + 1)
|
2012-09-22 06:24:55 +08:00
|
|
|
|
|
|
|
enum pkey_id_type {
|
|
|
|
PKEY_ID_PGP, /* OpenPGP generated key ID */
|
|
|
|
PKEY_ID_X509, /* X.509 arbitrary subjectKeyIdentifier */
|
2015-07-21 04:16:27 +08:00
|
|
|
PKEY_ID_PKCS7, /* Signature in PKCS#7 message */
|
2012-09-22 06:24:55 +08:00
|
|
|
PKEY_ID_TYPE__LAST
|
|
|
|
};
|
|
|
|
|
2013-08-30 23:15:10 +08:00
|
|
|
extern const char *const pkey_id_type_name[PKEY_ID_TYPE__LAST];
|
2012-09-22 06:24:55 +08:00
|
|
|
|
PKCS#7: Appropriately restrict authenticated attributes and content type
A PKCS#7 or CMS message can have per-signature authenticated attributes
that are digested as a lump and signed by the authorising key for that
signature. If such attributes exist, the content digest isn't itself
signed, but rather it is included in a special authattr which then
contributes to the signature.
Further, we already require the master message content type to be
pkcs7_signedData - but there's also a separate content type for the data
itself within the SignedData object and this must be repeated inside the
authattrs for each signer [RFC2315 9.2, RFC5652 11.1].
We should really validate the authattrs if they exist or forbid them
entirely as appropriate. To this end:
(1) Alter the PKCS#7 parser to reject any message that has more than one
signature where at least one signature has authattrs and at least one
that does not.
(2) Validate authattrs if they are present and strongly restrict them.
Only the following authattrs are permitted and all others are
rejected:
(a) contentType. This is checked to be an OID that matches the
content type in the SignedData object.
(b) messageDigest. This must match the crypto digest of the data.
(c) signingTime. If present, we check that this is a valid, parseable
UTCTime or GeneralTime and that the date it encodes fits within
the validity window of the matching X.509 cert.
(d) S/MIME capabilities. We don't check the contents.
(e) Authenticode SP Opus Info. We don't check the contents.
(f) Authenticode Statement Type. We don't check the contents.
The message is rejected if (a) or (b) are missing. If the message is
an Authenticode type, the message is rejected if (e) is missing; if
not Authenticode, the message is rejected if (d) - (f) are present.
The S/MIME capabilities authattr (d) unfortunately has to be allowed
to support kernels already signed by the pesign program. This only
affects kexec. sign-file suppresses them (CMS_NOSMIMECAP).
The message is also rejected if an authattr is given more than once or
if it contains more than one element in its set of values.
(3) Add a parameter to pkcs7_verify() to select one of the following
restrictions and pass in the appropriate option from the callers:
(*) VERIFYING_MODULE_SIGNATURE
This requires that the SignedData content type be pkcs7-data and
forbids authattrs. sign-file sets CMS_NOATTR. We could be more
flexible and permit authattrs optionally, but only permit minimal
content.
(*) VERIFYING_FIRMWARE_SIGNATURE
This requires that the SignedData content type be pkcs7-data and
requires authattrs. In future, this will require an attribute
holding the target firmware name in addition to the minimal set.
(*) VERIFYING_UNSPECIFIED_SIGNATURE
This requires that the SignedData content type be pkcs7-data but
allows either no authattrs or only permits the minimal set.
(*) VERIFYING_KEXEC_PE_SIGNATURE
This only supports the Authenticode SPC_INDIRECT_DATA content type
and requires at least an SpcSpOpusInfo authattr in addition to the
minimal set. It also permits an SPC_STATEMENT_TYPE authattr (and
an S/MIME capabilities authattr because the pesign program doesn't
remove these).
(*) VERIFYING_KEY_SIGNATURE
(*) VERIFYING_KEY_SELF_SIGNATURE
These are invalid in this context but are included for later use
when limiting the use of X.509 certs.
(4) The pkcs7_test key type is given a module parameter to select between
the above options for testing purposes. For example:
echo 1 >/sys/module/pkcs7_test_key/parameters/usage
keyctl padd pkcs7_test foo @s </tmp/stuff.pkcs7
will attempt to check the signature on stuff.pkcs7 as if it contains a
firmware blob (1 being VERIFYING_FIRMWARE_SIGNATURE).
Suggested-by: Andy Lutomirski <luto@kernel.org>
Signed-off-by: David Howells <dhowells@redhat.com>
Reviewed-by: Marcel Holtmann <marcel@holtmann.org>
Reviewed-by: David Woodhouse <David.Woodhouse@intel.com>
2015-08-05 22:22:27 +08:00
|
|
|
/*
|
|
|
|
* The use to which an asymmetric key is being put.
|
|
|
|
*/
|
|
|
|
enum key_being_used_for {
|
|
|
|
VERIFYING_MODULE_SIGNATURE,
|
|
|
|
VERIFYING_FIRMWARE_SIGNATURE,
|
|
|
|
VERIFYING_KEXEC_PE_SIGNATURE,
|
|
|
|
VERIFYING_KEY_SIGNATURE,
|
|
|
|
VERIFYING_KEY_SELF_SIGNATURE,
|
|
|
|
VERIFYING_UNSPECIFIED_SIGNATURE,
|
|
|
|
NR__KEY_BEING_USED_FOR
|
|
|
|
};
|
|
|
|
extern const char *const key_being_used_for[NR__KEY_BEING_USED_FOR];
|
|
|
|
|
2012-09-22 06:24:55 +08:00
|
|
|
/*
|
|
|
|
* Cryptographic data for the public-key subtype of the asymmetric key type.
|
|
|
|
*
|
|
|
|
* Note that this may include private part of the key as well as the public
|
|
|
|
* part.
|
|
|
|
*/
|
|
|
|
struct public_key {
|
2016-02-03 02:08:53 +08:00
|
|
|
void *key;
|
|
|
|
u32 keylen;
|
2013-08-30 23:15:24 +08:00
|
|
|
enum pkey_algo pkey_algo : 8;
|
2012-09-22 06:24:55 +08:00
|
|
|
enum pkey_id_type id_type : 8;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern void public_key_destroy(void *payload);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Public key cryptography signature data
|
|
|
|
*/
|
|
|
|
struct public_key_signature {
|
2016-02-03 02:08:53 +08:00
|
|
|
u8 *s; /* Signature */
|
|
|
|
u32 s_size; /* Number of bytes in signature */
|
2012-09-22 06:24:55 +08:00
|
|
|
u8 *digest;
|
|
|
|
u8 digest_size; /* Number of bytes in digest */
|
|
|
|
u8 nr_mpi; /* Occupancy of mpi[] */
|
2013-08-30 23:15:37 +08:00
|
|
|
enum pkey_algo pkey_algo : 8;
|
2013-05-06 20:58:15 +08:00
|
|
|
enum hash_algo pkey_hash_algo : 8;
|
2012-09-22 06:24:55 +08:00
|
|
|
union {
|
|
|
|
MPI mpi[2];
|
|
|
|
struct {
|
|
|
|
MPI s; /* m^d mod n */
|
|
|
|
} rsa;
|
|
|
|
struct {
|
|
|
|
MPI r;
|
|
|
|
MPI s;
|
|
|
|
} dsa;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-02-03 02:08:53 +08:00
|
|
|
extern struct asymmetric_key_subtype public_key_subtype;
|
2012-09-22 06:25:04 +08:00
|
|
|
struct key;
|
|
|
|
extern int verify_signature(const struct key *key,
|
|
|
|
const struct public_key_signature *sig);
|
|
|
|
|
2014-09-17 00:36:13 +08:00
|
|
|
struct asymmetric_key_id;
|
2014-07-28 21:11:32 +08:00
|
|
|
extern struct key *x509_request_asymmetric_key(struct key *keyring,
|
2015-07-21 04:16:26 +08:00
|
|
|
const struct asymmetric_key_id *id,
|
|
|
|
const struct asymmetric_key_id *skid,
|
2014-10-06 22:21:05 +08:00
|
|
|
bool partial);
|
2014-07-28 21:11:32 +08:00
|
|
|
|
2016-02-03 02:08:53 +08:00
|
|
|
int public_key_verify_signature(const struct public_key *pkey,
|
|
|
|
const struct public_key_signature *sig);
|
|
|
|
|
|
|
|
int rsa_verify_signature(const struct public_key *pkey,
|
|
|
|
const struct public_key_signature *sig);
|
2012-09-22 06:24:55 +08:00
|
|
|
#endif /* _LINUX_PUBLIC_KEY_H */
|