Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
076fd302bb | |||
1d24a94bb5 |
78
README
78
README
@ -3,9 +3,24 @@ ima-evm-utils - IMA/EVM signing utility
|
||||
|
||||
Contents:
|
||||
|
||||
1. Key generation
|
||||
2. Initialization
|
||||
3. Signing
|
||||
1. Key and signature formats
|
||||
2. Key generation
|
||||
3. Initialization
|
||||
4. Signing
|
||||
|
||||
|
||||
Key and signature formats
|
||||
-------------------------
|
||||
|
||||
EVM support (v2) in latest version of the kernel adds the file system UUID to
|
||||
the HMAC calculation. It is controlled by the CONFIG_EVM_HMAC_VERSION and
|
||||
version 2 is enabled by default. To include the UUID to the signature calculation,
|
||||
it is necessary to provide '--uuid -' or '-u -' parameter to the 'sign' command.
|
||||
|
||||
Latest kernel got IMA/EVM support for using X509 certificates and asymmetric key
|
||||
support for verifying digital signatures. The new command line parameter
|
||||
'-x' or '--x509' was added to the evmctl to enable using of X509 certificates
|
||||
and new signature format.
|
||||
|
||||
|
||||
Key generation
|
||||
@ -23,6 +38,36 @@ Make encrypted private key from unencrypted
|
||||
|
||||
$ openssl rsa -in /etc/keys/privkey_evm.pem -out privkey_evm_enc.pem -des3
|
||||
|
||||
Generate self-signed X509 certificate and private key for using kernel asymmetric
|
||||
keys support
|
||||
|
||||
$ openssl req -new -nodes -utf8 -sha1 -days 36500 -batch \
|
||||
-x509 -config x509_evm.genkey \
|
||||
-outform DER -out x509_evm.der -keyout privkey_evm.pem
|
||||
|
||||
Configuration file x509_evm.genkey:
|
||||
|
||||
# Begining of the file
|
||||
[ req ]
|
||||
default_bits = 1024
|
||||
distinguished_name = req_distinguished_name
|
||||
prompt = no
|
||||
string_mask = utf8only
|
||||
x509_extensions = myexts
|
||||
|
||||
[ req_distinguished_name ]
|
||||
O = Magrathea
|
||||
CN = Glacier signing key
|
||||
emailAddress = slartibartfast@magrathea.h2g2
|
||||
|
||||
[ myexts ]
|
||||
basicConstraints=critical,CA:FALSE
|
||||
keyUsage=digitalSignature
|
||||
subjectKeyIdentifier=hash
|
||||
authorityKeyIdentifier=keyid
|
||||
# EOF
|
||||
|
||||
|
||||
Get public key
|
||||
|
||||
$ openssl rsa -pubout -in privkey_evm.pem -out pubkey_evm.pem
|
||||
@ -32,6 +77,10 @@ Copy keys to /etc/keys
|
||||
$ cp pubkey_evm.pem /etc/keys
|
||||
$ scp pubkey_evm.pem target:/etc/keys
|
||||
|
||||
or
|
||||
$ cp x509_evm.pem /etc/keys
|
||||
$ scp x509_evm.pem target:/etc/keys
|
||||
|
||||
|
||||
Initialization
|
||||
--------------
|
||||
@ -58,20 +107,37 @@ Here is an example script /etc/initramfs-tools/scripts/local-top/ima.sh
|
||||
echo "1" > /sys/kernel/security/evm
|
||||
|
||||
|
||||
Import X509 certificate into the kernel keyring (since kernel 3.9?)
|
||||
|
||||
$ evmctl -x import /etc/keys/x509_evm.der `keyctl search @u keyring _ima`
|
||||
$ evmctl -x import /etc/keys/x509_evm.der `keyctl search @u keyring _evm`
|
||||
|
||||
|
||||
Signing
|
||||
-------
|
||||
|
||||
Default public key: /etc/keys/pubkey_evm.pem
|
||||
Default private key: /etc/keys/privkey_evm.pem
|
||||
Default X509 certificate: /etc/keys/x509_evm.der
|
||||
|
||||
Signing for using X509 certificates is done using '-x' or '--x509' parameter.
|
||||
Signing for using new the EVM HMAC format is done using '-u -' or '--uuid -' parameter.
|
||||
|
||||
Sign file with EVM signature and use hash value for IMA - common case
|
||||
|
||||
$ evmctl sign --imahash test.txt
|
||||
$ evmctl sign [-u -] [-x] --imahash test.txt
|
||||
|
||||
Sign file with both IMA and EVM signatures - for immutable files
|
||||
|
||||
$ evmctl sign --imasig test.txt
|
||||
$ evmctl sign [-u -] [-x] --imasig test.txt
|
||||
|
||||
Sign file with IMA signature - for immutable files
|
||||
|
||||
$ evmctl ima_sign [-x] test.txt
|
||||
|
||||
Label whole filesystem with EVM signatures
|
||||
|
||||
$ find / \( -fstype rootfs -o -fstype ext4 \) -exec evmctl sign --imahash '{}' \;
|
||||
$ find / \( -fstype rootfs -o -fstype ext4 \) -exec evmctl sign [-u -] [-x] --imahash '{}' \;
|
||||
|
||||
Label filesystem in fix mode - kernel sets correct values to IMA and EVM xattrs
|
||||
|
||||
|
566
src/evmctl.c
566
src/evmctl.c
@ -2,7 +2,7 @@
|
||||
* evm-utils - IMA/EVM support utilities
|
||||
*
|
||||
* Copyright (C) 2011 Nokia Corporation
|
||||
* Copyright (C) 2011, 2012 Intel Corporation
|
||||
* Copyright (C) 2011,2012,2013 Intel Corporation
|
||||
*
|
||||
* Authors:
|
||||
* Dmitry Kasatkin <dmitry.kasatkin@nokia.com>
|
||||
@ -44,6 +44,7 @@
|
||||
#include <syslog.h>
|
||||
#include <attr/xattr.h>
|
||||
#include <dirent.h>
|
||||
#include <ctype.h>
|
||||
|
||||
#include <openssl/sha.h>
|
||||
#include <openssl/rsa.h>
|
||||
@ -52,6 +53,7 @@
|
||||
#include <openssl/engine.h>
|
||||
#include <openssl/evp.h>
|
||||
#include <openssl/err.h>
|
||||
#include <openssl/x509.h>
|
||||
|
||||
#define USE_FPRINTF
|
||||
|
||||
@ -124,6 +126,101 @@ struct signature_hdr {
|
||||
char mpi[0];
|
||||
} __attribute__ ((packed));
|
||||
|
||||
enum pkey_hash_algo {
|
||||
PKEY_HASH_MD4,
|
||||
PKEY_HASH_MD5,
|
||||
PKEY_HASH_SHA1,
|
||||
PKEY_HASH_RIPE_MD_160,
|
||||
PKEY_HASH_SHA256,
|
||||
PKEY_HASH_SHA384,
|
||||
PKEY_HASH_SHA512,
|
||||
PKEY_HASH_SHA224,
|
||||
PKEY_HASH__LAST
|
||||
};
|
||||
|
||||
const char *const pkey_hash_algo[PKEY_HASH__LAST] = {
|
||||
[PKEY_HASH_MD4] = "md4",
|
||||
[PKEY_HASH_MD5] = "md5",
|
||||
[PKEY_HASH_SHA1] = "sha1",
|
||||
[PKEY_HASH_RIPE_MD_160] = "rmd160",
|
||||
[PKEY_HASH_SHA256] = "sha256",
|
||||
[PKEY_HASH_SHA384] = "sha384",
|
||||
[PKEY_HASH_SHA512] = "sha512",
|
||||
[PKEY_HASH_SHA224] = "sha224",
|
||||
};
|
||||
|
||||
/*
|
||||
* signature format v2 - for using with asymmetric keys
|
||||
*/
|
||||
struct signature_v2_hdr {
|
||||
uint8_t version; /* signature format version */
|
||||
uint8_t hash_algo; /* Digest algorithm [enum pkey_hash_algo] */
|
||||
uint32_t keyid; /* IMA key identifier - not X509/PGP specific*/
|
||||
uint16_t sig_size; /* signature size */
|
||||
uint8_t sig[0]; /* signature payload */
|
||||
} __attribute__ ((packed));
|
||||
|
||||
|
||||
/*
|
||||
* Hash algorithm OIDs plus ASN.1 DER wrappings [RFC4880 sec 5.2.2].
|
||||
*/
|
||||
static const uint8_t RSA_digest_info_MD5[] = {
|
||||
0x30, 0x20, 0x30, 0x0C, 0x06, 0x08,
|
||||
0x2A, 0x86, 0x48, 0x86, 0xF7, 0x0D, 0x02, 0x05, /* OID */
|
||||
0x05, 0x00, 0x04, 0x10
|
||||
};
|
||||
|
||||
static const uint8_t RSA_digest_info_SHA1[] = {
|
||||
0x30, 0x21, 0x30, 0x09, 0x06, 0x05,
|
||||
0x2B, 0x0E, 0x03, 0x02, 0x1A,
|
||||
0x05, 0x00, 0x04, 0x14
|
||||
};
|
||||
|
||||
static const uint8_t RSA_digest_info_RIPE_MD_160[] = {
|
||||
0x30, 0x21, 0x30, 0x09, 0x06, 0x05,
|
||||
0x2B, 0x24, 0x03, 0x02, 0x01,
|
||||
0x05, 0x00, 0x04, 0x14
|
||||
};
|
||||
|
||||
static const uint8_t RSA_digest_info_SHA224[] = {
|
||||
0x30, 0x2d, 0x30, 0x0d, 0x06, 0x09,
|
||||
0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x04,
|
||||
0x05, 0x00, 0x04, 0x1C
|
||||
};
|
||||
|
||||
static const uint8_t RSA_digest_info_SHA256[] = {
|
||||
0x30, 0x31, 0x30, 0x0d, 0x06, 0x09,
|
||||
0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x01,
|
||||
0x05, 0x00, 0x04, 0x20
|
||||
};
|
||||
|
||||
static const uint8_t RSA_digest_info_SHA384[] = {
|
||||
0x30, 0x41, 0x30, 0x0d, 0x06, 0x09,
|
||||
0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x02,
|
||||
0x05, 0x00, 0x04, 0x30
|
||||
};
|
||||
|
||||
static const uint8_t RSA_digest_info_SHA512[] = {
|
||||
0x30, 0x51, 0x30, 0x0d, 0x06, 0x09,
|
||||
0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x03,
|
||||
0x05, 0x00, 0x04, 0x40
|
||||
};
|
||||
|
||||
static const struct RSA_ASN1_template {
|
||||
const uint8_t *data;
|
||||
size_t size;
|
||||
} RSA_ASN1_templates[PKEY_HASH__LAST] = {
|
||||
#define _(X) { RSA_digest_info_##X, sizeof(RSA_digest_info_##X) }
|
||||
[PKEY_HASH_MD5] = _(MD5),
|
||||
[PKEY_HASH_SHA1] = _(SHA1),
|
||||
[PKEY_HASH_RIPE_MD_160] = _(RIPE_MD_160),
|
||||
[PKEY_HASH_SHA256] = _(SHA256),
|
||||
[PKEY_HASH_SHA384] = _(SHA384),
|
||||
[PKEY_HASH_SHA512] = _(SHA512),
|
||||
[PKEY_HASH_SHA224] = _(SHA224),
|
||||
#undef _
|
||||
};
|
||||
|
||||
static char *evm_config_xattrnames[] = {
|
||||
"security.selinux",
|
||||
"security.SMACK64",
|
||||
@ -148,10 +245,20 @@ static int sigdump;
|
||||
static int digest;
|
||||
static int digsig;
|
||||
static char *hash_algo = "sha1";
|
||||
static int binkey;
|
||||
static char *keypass;
|
||||
static int sigfile;
|
||||
static int modsig;
|
||||
static char *uuid_str;
|
||||
static int x509;
|
||||
static char *keyfile;
|
||||
|
||||
typedef int (*sign_hash_fn_t)(const char *algo, const unsigned char *hash, int size, const char *keyfile, unsigned char *sig);
|
||||
|
||||
static sign_hash_fn_t sign_hash;
|
||||
|
||||
typedef int (*verify_hash_fn_t)(const unsigned char *hash, int size, unsigned char *sig, int siglen, const char *keyfile);
|
||||
|
||||
static verify_hash_fn_t verify_hash;
|
||||
|
||||
struct command cmds[];
|
||||
static void print_usage(struct command *cmd);
|
||||
@ -272,44 +379,57 @@ static int key2bin(RSA *key, unsigned char *pub)
|
||||
return offset;
|
||||
}
|
||||
|
||||
static int read_key(const char *inkey, unsigned char *pub)
|
||||
static RSA *read_pub_key(const char *keyfile)
|
||||
{
|
||||
FILE *fp;
|
||||
RSA *key = NULL, *key1;
|
||||
int len;
|
||||
RSA *key = NULL;
|
||||
X509 *crt = NULL;
|
||||
EVP_PKEY *pkey = NULL;
|
||||
|
||||
fp = fopen(inkey, "r");
|
||||
fp = fopen(keyfile, "r");
|
||||
if (!fp) {
|
||||
log_err("read key failed from file %s\n", inkey);
|
||||
return -1;
|
||||
log_err("Unable to open keyfile %s\n", keyfile);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
key1 = PEM_read_RSA_PUBKEY(fp, &key, NULL, NULL);
|
||||
fclose(fp);
|
||||
if (!key1) {
|
||||
if (x509) {
|
||||
crt = d2i_X509_fp(fp, NULL);
|
||||
if (!crt) {
|
||||
log_err("d2i_X509_fp() failed\n");
|
||||
goto out;
|
||||
}
|
||||
pkey = X509_extract_key(crt);
|
||||
if (!pkey) {
|
||||
log_err("X509_extract_key() failed\n");
|
||||
goto out;
|
||||
}
|
||||
key = EVP_PKEY_get1_RSA(pkey);
|
||||
} else {
|
||||
key = PEM_read_RSA_PUBKEY(fp, NULL, NULL, NULL);
|
||||
}
|
||||
|
||||
if (!key)
|
||||
log_err("PEM_read_RSA_PUBKEY() failed\n");
|
||||
return -1;
|
||||
|
||||
out:
|
||||
if (pkey)
|
||||
EVP_PKEY_free(pkey);
|
||||
if (crt)
|
||||
X509_free(crt);
|
||||
fclose(fp);
|
||||
return key;
|
||||
}
|
||||
|
||||
len = key2bin(key, pub);
|
||||
|
||||
RSA_free(key);
|
||||
|
||||
return len;
|
||||
}
|
||||
|
||||
static void calc_keyid(uint8_t *keyid, char *str, const unsigned char *pkey, int len)
|
||||
static void calc_keyid_v1(uint8_t *keyid, char *str, const unsigned char *pkey, int len)
|
||||
{
|
||||
uint8_t sha1[SHA_DIGEST_LENGTH];
|
||||
uint64_t id;
|
||||
|
||||
log_debug("pkey:\n");
|
||||
log_debug_dump(pkey, len);
|
||||
SHA1(pkey, len, sha1);
|
||||
|
||||
/* sha1[12 - 19] is exactly keyid from gpg file */
|
||||
memcpy(keyid, sha1 + 12, 8);
|
||||
log_debug("keyid:\n");
|
||||
log_debug("keyid: ");
|
||||
log_debug_dump(keyid, 8);
|
||||
|
||||
id = __be64_to_cpup((__be64 *) keyid);
|
||||
@ -317,13 +437,51 @@ static void calc_keyid(uint8_t *keyid, char *str, const unsigned char *pkey, int
|
||||
log_info("keyid: %s\n", str);
|
||||
}
|
||||
|
||||
static int sign_hash(const unsigned char *hash, int size, const char *keyfile, unsigned char *sig)
|
||||
static void calc_keyid_v2(uint32_t *keyid, char *str, RSA *key)
|
||||
{
|
||||
uint8_t sha1[SHA_DIGEST_LENGTH];
|
||||
unsigned char *pkey = NULL;
|
||||
int len;
|
||||
|
||||
len = i2d_RSAPublicKey(key, &pkey);
|
||||
|
||||
SHA1(pkey, len, sha1);
|
||||
|
||||
/* sha1[12 - 19] is exactly keyid from gpg file */
|
||||
memcpy(keyid, sha1 + 16, 4);
|
||||
log_debug("keyid: ");
|
||||
log_debug_dump(keyid, 4);
|
||||
|
||||
sprintf(str, "%x", __be32_to_cpup(keyid));
|
||||
log_info("keyid: %s\n", str);
|
||||
|
||||
free(pkey);
|
||||
}
|
||||
|
||||
static RSA *read_priv_key(const char *keyfile)
|
||||
{
|
||||
FILE *fp;
|
||||
RSA *key;
|
||||
|
||||
fp = fopen(keyfile, "r");
|
||||
if (!fp) {
|
||||
log_err("Unable to open keyfile %s\n", keyfile);
|
||||
return NULL;
|
||||
}
|
||||
key = PEM_read_RSAPrivateKey(fp, NULL, NULL, keypass);
|
||||
if (!key)
|
||||
log_err("PEM_read_RSAPrivateKey() failed\n");
|
||||
|
||||
fclose(fp);
|
||||
return key;
|
||||
}
|
||||
|
||||
static int sign_hash_v1(const char *algo, const unsigned char *hash, int size, const char *keyfile, unsigned char *sig)
|
||||
{
|
||||
int err, len;
|
||||
SHA_CTX ctx;
|
||||
unsigned char pub[1024];
|
||||
RSA *key = NULL, *key1;
|
||||
FILE *fp;
|
||||
RSA *key;
|
||||
char name[20];
|
||||
unsigned char sighash[20];
|
||||
struct signature_hdr *hdr = (struct signature_hdr *)sig;
|
||||
@ -332,17 +490,9 @@ static int sign_hash(const unsigned char *hash, int size, const char *keyfile, u
|
||||
log_info("hash: ");
|
||||
log_dump(hash, size);
|
||||
|
||||
fp = fopen(keyfile, "r");
|
||||
if (!fp) {
|
||||
log_err("Unable to open keyfile %s\n", keyfile);
|
||||
key = read_priv_key(keyfile);
|
||||
if (!key)
|
||||
return -1;
|
||||
}
|
||||
key1 = PEM_read_RSAPrivateKey(fp, &key, NULL, keypass);
|
||||
fclose(fp);
|
||||
if (!key1) {
|
||||
log_err("PEM_read_RSAPrivateKey() failed\n");
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* now create a new hash */
|
||||
hdr->version = 1;
|
||||
@ -351,7 +501,7 @@ static int sign_hash(const unsigned char *hash, int size, const char *keyfile, u
|
||||
hdr->hash = DIGEST_ALGO_SHA1;
|
||||
|
||||
len = key2bin(key, pub);
|
||||
calc_keyid(hdr->keyid, name, pub, len);
|
||||
calc_keyid_v1(hdr->keyid, name, pub, len);
|
||||
|
||||
hdr->nmpi = 1;
|
||||
|
||||
@ -382,6 +532,64 @@ static int sign_hash(const unsigned char *hash, int size, const char *keyfile, u
|
||||
return len;
|
||||
}
|
||||
|
||||
uint8_t get_hash_algo(const char *algo)
|
||||
{
|
||||
int i;
|
||||
|
||||
for (i = 0; i < PKEY_HASH__LAST; i++)
|
||||
if (!strcmp(algo, pkey_hash_algo[i]))
|
||||
return i;
|
||||
|
||||
return PKEY_HASH_SHA1;
|
||||
}
|
||||
|
||||
static int sign_hash_v2(const char *algo, const unsigned char *hash, int size, const char *keyfile, unsigned char *sig)
|
||||
{
|
||||
struct signature_v2_hdr *hdr = (struct signature_v2_hdr *)sig;
|
||||
int len;
|
||||
RSA *key;
|
||||
char name[20];
|
||||
unsigned char *buf;
|
||||
const struct RSA_ASN1_template *asn1;
|
||||
|
||||
log_info("hash: ");
|
||||
log_dump(hash, size);
|
||||
|
||||
key = read_priv_key(keyfile);
|
||||
if (!key)
|
||||
return -1;
|
||||
|
||||
hdr->version = 2;
|
||||
hdr->hash_algo = get_hash_algo(algo);
|
||||
|
||||
calc_keyid_v2(&hdr->keyid, name, key);
|
||||
|
||||
asn1 = &RSA_ASN1_templates[hdr->hash_algo];
|
||||
|
||||
buf = malloc(size + asn1->size);
|
||||
if (!buf)
|
||||
return -1;
|
||||
|
||||
memcpy(buf, asn1->data, asn1->size);
|
||||
memcpy(buf + asn1->size, hash, size);
|
||||
len = RSA_private_encrypt(size + asn1->size, buf, hdr->sig,
|
||||
key, RSA_PKCS1_PADDING);
|
||||
RSA_free(key);
|
||||
if (len < 0) {
|
||||
log_err("RSA_private_encrypt() failed: %d\n", len);
|
||||
return -1;
|
||||
}
|
||||
|
||||
/* we add bit length of the signature to make it gnupg compatible */
|
||||
hdr->sig_size = __cpu_to_be16(len);
|
||||
len += sizeof(*hdr);
|
||||
log_info("evm/ima signature: %d bytes\n", len);
|
||||
if (sigdump || verbose >= LOG_INFO)
|
||||
dump(sig, len);
|
||||
|
||||
return len;
|
||||
}
|
||||
|
||||
static int find_xattr(const char *list, int list_size, const char *xattr)
|
||||
{
|
||||
int len;
|
||||
@ -394,6 +602,75 @@ static int find_xattr(const char *list, int list_size, const char *xattr)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int hex_to_bin(char ch)
|
||||
{
|
||||
if ((ch >= '0') && (ch <= '9'))
|
||||
return ch - '0';
|
||||
ch = tolower(ch);
|
||||
if ((ch >= 'a') && (ch <= 'f'))
|
||||
return ch - 'a' + 10;
|
||||
return -1;
|
||||
}
|
||||
|
||||
static void pack_uuid(const char *uuid_str, char *to)
|
||||
{
|
||||
int i;
|
||||
for (i = 0; i < 16; ++i) {
|
||||
*to++ = (hex_to_bin(*uuid_str) << 4) |
|
||||
(hex_to_bin(*(uuid_str + 1)));
|
||||
uuid_str += 2;
|
||||
switch (i) {
|
||||
case 3:
|
||||
case 5:
|
||||
case 7:
|
||||
case 9:
|
||||
uuid_str++;
|
||||
continue;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static int get_uuid(struct stat *st, char *uuid)
|
||||
{
|
||||
uint32_t dev;
|
||||
unsigned minor, major;
|
||||
char path[PATH_MAX], _uuid[37];
|
||||
FILE *fp;
|
||||
size_t len;
|
||||
|
||||
if (uuid_str[0] != '-') {
|
||||
pack_uuid(uuid_str, uuid);
|
||||
return 0;
|
||||
}
|
||||
|
||||
dev = st->st_dev;
|
||||
major = (dev & 0xfff00) >> 8;
|
||||
minor = (dev & 0xff) | ((dev >> 12) & 0xfff00);
|
||||
|
||||
log_debug("dev: %u:%u\n", major, minor);
|
||||
sprintf(path, "blkid -s UUID -o value /dev/block/%u:%u", major, minor);
|
||||
|
||||
fp = popen(path, "r");
|
||||
if (!fp) {
|
||||
log_err("popen() failed\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
len = fread(_uuid, 1, sizeof(_uuid), fp);
|
||||
pclose(fp);
|
||||
if (len != sizeof(_uuid)) {
|
||||
log_err("fread() failed\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
pack_uuid(_uuid, uuid);
|
||||
|
||||
log_info("uuid: ");
|
||||
log_dump(uuid, 16);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int calc_evm_hash(const char *file, unsigned char *hash)
|
||||
{
|
||||
struct stat st;
|
||||
@ -405,6 +682,7 @@ static int calc_evm_hash(const char *file, unsigned char *hash)
|
||||
char xattr_value[1024];
|
||||
char list[1024];
|
||||
ssize_t list_size;
|
||||
char uuid[16];
|
||||
|
||||
fd = open(file, 0);
|
||||
if (fd < 0) {
|
||||
@ -470,6 +748,19 @@ static int calc_evm_hash(const char *file, unsigned char *hash)
|
||||
log_err("EVP_DigestUpdate() failed\n");
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (uuid_str) {
|
||||
err = get_uuid(&st, uuid);
|
||||
if (err)
|
||||
return -1;
|
||||
|
||||
err = EVP_DigestUpdate(&ctx, (const unsigned char *)uuid, sizeof(uuid));
|
||||
if (!err) {
|
||||
log_err("EVP_DigestUpdate() failed\n");
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
||||
err = EVP_DigestFinal(&ctx, hash, &mdlen);
|
||||
if (!err) {
|
||||
log_err("EVP_DigestFinal() failed\n");
|
||||
@ -489,7 +780,7 @@ static int sign_evm(const char *file, const char *key)
|
||||
if (len <= 1)
|
||||
return len;
|
||||
|
||||
len = sign_hash(hash, len, key, sig + 1);
|
||||
len = sign_hash("sha1", hash, len, key, sig + 1);
|
||||
if (len <= 1)
|
||||
return len;
|
||||
|
||||
@ -711,7 +1002,7 @@ static int sign_ima(const char *file, const char *key)
|
||||
if (len <= 1)
|
||||
return len;
|
||||
|
||||
len = sign_hash(hash, len, key, sig + 1);
|
||||
len = sign_hash(hash_algo, hash, len, key, sig + 1);
|
||||
if (len <= 1)
|
||||
return len;
|
||||
|
||||
@ -752,9 +1043,7 @@ static int cmd_sign_ima(struct command *cmd)
|
||||
return -1;
|
||||
}
|
||||
|
||||
key = g_argv[optind++];
|
||||
if (!key)
|
||||
key = "/etc/keys/privkey_evm.pem";
|
||||
key = keyfile ? : "/etc/keys/privkey_evm.pem";
|
||||
|
||||
return sign_ima(file, key);
|
||||
|
||||
@ -777,9 +1066,7 @@ static int cmd_sign_evm(struct command *cmd)
|
||||
return -1;
|
||||
}
|
||||
|
||||
key = g_argv[optind++];
|
||||
if (!key)
|
||||
key = "/etc/keys/privkey_evm.pem";
|
||||
key = keyfile ? : "/etc/keys/privkey_evm.pem";
|
||||
|
||||
if (digsig) {
|
||||
err = sign_ima(file, key);
|
||||
@ -796,30 +1083,21 @@ static int cmd_sign_evm(struct command *cmd)
|
||||
return sign_evm(file, key);
|
||||
}
|
||||
|
||||
static int verify_hash(const unsigned char *hash, int size, unsigned char *sig, int siglen, const char *keyfile)
|
||||
static int verify_hash_v1(const unsigned char *hash, int size, unsigned char *sig, int siglen, const char *keyfile)
|
||||
{
|
||||
int err, len;
|
||||
SHA_CTX ctx;
|
||||
unsigned char out[1024];
|
||||
RSA *key = NULL, *key1;
|
||||
FILE *fp;
|
||||
RSA *key;
|
||||
unsigned char sighash[20];
|
||||
struct signature_hdr *hdr = (struct signature_hdr *)sig;
|
||||
|
||||
log_info("hash: ");
|
||||
log_dump(hash, size);
|
||||
|
||||
fp = fopen(keyfile, "r");
|
||||
if (!fp) {
|
||||
log_err("Unable to open keyfile %s\n", keyfile);
|
||||
return -1;
|
||||
}
|
||||
key1 = PEM_read_RSA_PUBKEY(fp, &key, NULL, NULL);
|
||||
fclose(fp);
|
||||
if (!key1) {
|
||||
log_err("PEM_read_RSA_PUBKEY() failed\n");
|
||||
key = read_pub_key(keyfile);
|
||||
if (!key)
|
||||
return 1;
|
||||
}
|
||||
|
||||
SHA1_Init(&ctx);
|
||||
SHA1_Update(&ctx, hash, size);
|
||||
@ -848,6 +1126,50 @@ static int verify_hash(const unsigned char *hash, int size, unsigned char *sig,
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int verify_hash_v2(const unsigned char *hash, int size, unsigned char *sig, int siglen, const char *keyfile)
|
||||
{
|
||||
int err, len;
|
||||
unsigned char out[1024];
|
||||
RSA *key;
|
||||
struct signature_v2_hdr *hdr = (struct signature_v2_hdr *)sig;
|
||||
const struct RSA_ASN1_template *asn1;
|
||||
|
||||
log_info("hash: ");
|
||||
log_dump(hash, size);
|
||||
|
||||
key = read_pub_key(keyfile);
|
||||
if (!key)
|
||||
return 1;
|
||||
|
||||
err = RSA_public_decrypt(siglen - sizeof(*hdr) - 2, sig + sizeof(*hdr) + 2, out, key, RSA_PKCS1_PADDING);
|
||||
RSA_free(key);
|
||||
if (err < 0) {
|
||||
log_err("RSA_public_decrypt() failed: %d\n", err);
|
||||
return 1;
|
||||
}
|
||||
|
||||
len = err;
|
||||
|
||||
asn1 = &RSA_ASN1_templates[hdr->hash_algo];
|
||||
|
||||
if (len < asn1->size || memcmp(out, asn1->data, asn1->size)) {
|
||||
log_err("Verification failed: %d\n", err);
|
||||
return -1;
|
||||
}
|
||||
|
||||
len -= asn1->size;
|
||||
|
||||
if (len != size || memcmp(out + asn1->size, hash, len)) {
|
||||
log_err("Verification failed: %d\n", err);
|
||||
return -1;
|
||||
}
|
||||
|
||||
/*log_info("Verification is OK\n");*/
|
||||
printf("Verification is OK\n");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int verify_evm(const char *file, const char *key)
|
||||
{
|
||||
unsigned char hash[20];
|
||||
@ -882,9 +1204,9 @@ static int cmd_verify_evm(struct command *cmd)
|
||||
return -1;
|
||||
}
|
||||
|
||||
key = g_argv[optind++];
|
||||
if (!key)
|
||||
key = "/etc/keys/pubkey_evm.pem";
|
||||
key = keyfile ? : x509 ?
|
||||
"/etc/keys/x509_evm.der" :
|
||||
"/etc/keys/pubkey_evm.pem";
|
||||
|
||||
return verify_evm(file, key);
|
||||
}
|
||||
@ -932,57 +1254,26 @@ static int cmd_verify_ima(struct command *cmd)
|
||||
return -1;
|
||||
}
|
||||
|
||||
key = g_argv[optind++];
|
||||
if (!key)
|
||||
key = "/etc/keys/pubkey_evm.pem";
|
||||
key = keyfile ? : x509 ?
|
||||
"/etc/keys/x509_evm.der" :
|
||||
"/etc/keys/pubkey_evm.pem";
|
||||
|
||||
return verify_ima(file, key);
|
||||
}
|
||||
|
||||
static int cmd_convert(struct command *cmd)
|
||||
{
|
||||
char *inkey, *outkey = NULL;
|
||||
unsigned char pub[1024];
|
||||
char name[20];
|
||||
int len;
|
||||
uint8_t keyid[8];
|
||||
|
||||
inkey = g_argv[optind++];
|
||||
if (!inkey)
|
||||
inkey = "/etc/keys/pubkey_evm.pem";
|
||||
else
|
||||
outkey = g_argv[optind++];
|
||||
|
||||
if (!outkey)
|
||||
outkey = "pubkey_evm.bin";
|
||||
|
||||
log_info("Convert public key %s to %s\n", inkey, outkey);
|
||||
|
||||
len = read_key(inkey, pub);
|
||||
if (len < 0)
|
||||
return -1;
|
||||
|
||||
calc_keyid(keyid, name, pub, len);
|
||||
|
||||
bin2file(outkey, name, pub, len);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int cmd_import(struct command *cmd)
|
||||
{
|
||||
char *inkey, *ring = NULL;
|
||||
unsigned char _key[1024], *key = _key;
|
||||
int id, len;
|
||||
unsigned char _pub[1024], *pub = _pub;
|
||||
int id, len, err = -1;
|
||||
char name[20];
|
||||
uint8_t keyid[8];
|
||||
RSA *key = NULL;
|
||||
|
||||
inkey = g_argv[optind++];
|
||||
if (!inkey) {
|
||||
if (binkey)
|
||||
inkey = "/etc/keys/pubkey_evm.bin";
|
||||
else
|
||||
inkey = "/etc/keys/pubkey_evm.pem";
|
||||
inkey = x509 ? "/etc/keys/x509_evm.der" :
|
||||
"/etc/keys/pubkey_evm.pem";
|
||||
} else
|
||||
ring = g_argv[optind++];
|
||||
|
||||
@ -991,33 +1282,39 @@ static int cmd_import(struct command *cmd)
|
||||
else
|
||||
id = atoi(ring);
|
||||
|
||||
if (binkey) {
|
||||
key = file2bin(inkey, NULL, &len);
|
||||
key = read_pub_key(inkey);
|
||||
if (!key)
|
||||
return -1;
|
||||
} else {
|
||||
len = read_key(inkey, key);
|
||||
if (len < 0)
|
||||
return -1;
|
||||
}
|
||||
goto out;
|
||||
|
||||
calc_keyid(keyid, name, key, len);
|
||||
if (x509) {
|
||||
pub = file2bin(inkey, NULL, &len);
|
||||
if (!pub)
|
||||
goto out;
|
||||
calc_keyid_v2((uint32_t *)keyid, name, key);
|
||||
} else {
|
||||
len = key2bin(key, pub);
|
||||
calc_keyid_v1(keyid, name, pub, len);
|
||||
}
|
||||
|
||||
log_info("Importing public key %s from file %s into keyring %d\n", name, inkey, id);
|
||||
|
||||
id = add_key("user", name, key, len, id);
|
||||
id = add_key(x509 ? "asymmetric" : "user", x509 ? NULL : name, pub, len, id);
|
||||
if (id < 0) {
|
||||
log_err("add_key failed\n");
|
||||
return -1;
|
||||
goto out;
|
||||
}
|
||||
|
||||
log_info("keyid: %d\n", id);
|
||||
printf("%d\n", id);
|
||||
|
||||
if (binkey)
|
||||
free(key);
|
||||
err = 0;
|
||||
out:
|
||||
if (key)
|
||||
RSA_free(key);
|
||||
if (x509)
|
||||
free(pub);
|
||||
|
||||
return 0;
|
||||
return err;
|
||||
}
|
||||
|
||||
#define MAX_KEY_SIZE 128
|
||||
@ -1170,9 +1467,7 @@ static int cmd_hmac_evm(struct command *cmd)
|
||||
return -1;
|
||||
}
|
||||
|
||||
key = g_argv[optind++];
|
||||
if (!key)
|
||||
key = "/etc/keys/privkey_evm.pem";
|
||||
key = keyfile ? : "/etc/keys/privkey_evm.pem";
|
||||
|
||||
if (digsig) {
|
||||
err = sign_ima(file, key);
|
||||
@ -1264,7 +1559,8 @@ static void usage(void)
|
||||
" -d, --imahash also make IMA hash\n"
|
||||
" -f, --sigfile store IMA signature in .sig file instead of xattr\n"
|
||||
" -m, --modsig store module signature in .sig file instead of xattr\n"
|
||||
" -b, --bin signing key is in binary format\n"
|
||||
" -x, --x509 signing key is in x509 DER format (signing v2 for using asymmetric keys)\n"
|
||||
" -k, --key path to signing key (default keys are /etc/keys/{privkey,pubkey}_evm.pem)\n"
|
||||
" -p, --pass password for encrypted signing key\n"
|
||||
" -n print result to stdout instead of setting xattr\n"
|
||||
" -v increase verbosity level\n"
|
||||
@ -1274,15 +1570,14 @@ static void usage(void)
|
||||
|
||||
struct command cmds[] = {
|
||||
{"help", cmd_help, 0, "<command>"},
|
||||
{"import", cmd_import, 0, "[--bin] pubkey keyring", "Import public key (PEM/bin) into the keyring.\n"},
|
||||
{"convert", cmd_convert, 0, "inkey outkey", "Convert PEM public key into IMA/EVM kernel friendly format.\n"},
|
||||
{"sign", cmd_sign_evm, 0, "[--imahash | --imasig ] [--pass password] file [key]", "Sign file metadata.\n"},
|
||||
{"import", cmd_import, 0, "[--x509] pubkey keyring", "Import public key into the keyring.\n"},
|
||||
{"sign", cmd_sign_evm, 0, "[--imahash | --imasig ] [--key key] [--pass password] file", "Sign file metadata.\n"},
|
||||
{"verify", cmd_verify_evm, 0, "file", "Verify EVM signature (for debugging).\n"},
|
||||
{"ima_sign", cmd_sign_ima, 0, "[--sigfile | --modsig] [--pass password] file [key]", "Make file content signature.\n"},
|
||||
{"ima_verify", cmd_verify_ima, 0, "file [key]", "Verify IMA signature (for debugging).\n"},
|
||||
{"ima_sign", cmd_sign_ima, 0, "[--sigfile | --modsig] [--key key] [--pass password] file", "Make file content signature.\n"},
|
||||
{"ima_verify", cmd_verify_ima, 0, "file", "Verify IMA signature (for debugging).\n"},
|
||||
{"ima_hash", cmd_hash_ima, 0, "file", "Make file content hash.\n"},
|
||||
#ifdef DEBUG
|
||||
{"hmac", cmd_hmac_evm, 0, "[--imahash | --imasig ] file [key]", "Sign file metadata with HMAC using symmetric key (for testing purpose).\n"},
|
||||
{"hmac", cmd_hmac_evm, 0, "[--imahash | --imasig ] file", "Sign file metadata with HMAC using symmetric key (for testing purpose).\n"},
|
||||
#endif
|
||||
{0, 0, 0, NULL}
|
||||
};
|
||||
@ -1292,10 +1587,12 @@ static struct option opts[] = {
|
||||
{"imasig", 0, 0, 's'},
|
||||
{"imahash", 0, 0, 'd'},
|
||||
{"hashalgo", 1, 0, 'a'},
|
||||
{"bin", 0, 0, 'b'},
|
||||
{"pass", 1, 0, 'p'},
|
||||
{"sigfile", 0, 0, 'f'},
|
||||
{"modsig", 0, 0, 'm'},
|
||||
{"uuid", 1, 0, 'u'},
|
||||
{"x509", 0, 0, 'x'},
|
||||
{"key", 1, 0, 'k'},
|
||||
{}
|
||||
|
||||
};
|
||||
@ -1307,8 +1604,11 @@ int main(int argc, char *argv[])
|
||||
g_argv = argv;
|
||||
g_argc = argc;
|
||||
|
||||
sign_hash = sign_hash_v1;
|
||||
verify_hash = verify_hash_v1;
|
||||
|
||||
while (1) {
|
||||
c = getopt_long(argc, argv, "hvnsda:bp:f", opts, &lind);
|
||||
c = getopt_long(argc, argv, "hvnsda:p:fu:xk:", opts, &lind);
|
||||
if (c == -1)
|
||||
break;
|
||||
|
||||
@ -1334,9 +1634,6 @@ int main(int argc, char *argv[])
|
||||
case 'a':
|
||||
hash_algo = optarg;
|
||||
break;
|
||||
case 'b':
|
||||
binkey = 1;
|
||||
break;
|
||||
case 'p':
|
||||
keypass = optarg;
|
||||
break;
|
||||
@ -1348,6 +1645,17 @@ int main(int argc, char *argv[])
|
||||
modsig = 1;
|
||||
xattr = 0;
|
||||
break;
|
||||
case 'u':
|
||||
uuid_str = optarg;
|
||||
break;
|
||||
case 'x':
|
||||
x509 = 1;
|
||||
sign_hash = sign_hash_v2;
|
||||
verify_hash = verify_hash_v2;
|
||||
break;
|
||||
case 'k':
|
||||
keyfile = optarg;
|
||||
break;
|
||||
case '?':
|
||||
exit(1);
|
||||
break;
|
||||
|
Reference in New Issue
Block a user