crypto.c 2.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * AppArmor security module
 *
 * This file contains AppArmor policy loading interface function definitions.
 *
 * Copyright 2013 Canonical Ltd.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation, version 2 of the
 * License.
 *
 * Fns to provide a checksum of policy that has been loaded this can be
 * compared to userspace policy compiles to check loaded policy is what
 * it should be.
 */

18
#include <crypto/hash.h>
19 20 21 22 23 24

#include "include/apparmor.h"
#include "include/crypto.h"

static unsigned int apparmor_hash_size;

25
static struct crypto_shash *apparmor_tfm;
26 27 28 29 30 31

unsigned int aa_hash_size(void)
{
	return apparmor_hash_size;
}

32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
char *aa_calc_hash(void *data, size_t len)
{
	struct {
		struct shash_desc shash;
		char ctx[crypto_shash_descsize(apparmor_tfm)];
	} desc;
	char *hash = NULL;
	int error = -ENOMEM;

	if (!apparmor_tfm)
		return NULL;

	hash = kzalloc(apparmor_hash_size, GFP_KERNEL);
	if (!hash)
		goto fail;

	desc.shash.tfm = apparmor_tfm;
	desc.shash.flags = 0;

	error = crypto_shash_init(&desc.shash);
	if (error)
		goto fail;
	error = crypto_shash_update(&desc.shash, (u8 *) data, len);
	if (error)
		goto fail;
	error = crypto_shash_final(&desc.shash, hash);
	if (error)
		goto fail;

	return hash;

fail:
	kfree(hash);

	return ERR_PTR(error);
}

69 70 71
int aa_calc_profile_hash(struct aa_profile *profile, u32 version, void *start,
			 size_t len)
{
72 73 74 75
	struct {
		struct shash_desc shash;
		char ctx[crypto_shash_descsize(apparmor_tfm)];
	} desc;
76
	int error = -ENOMEM;
77
	__le32 le32_version = cpu_to_le32(version);
78

79 80 81
	if (!aa_g_hash_policy)
		return 0;

82 83 84 85 86 87 88
	if (!apparmor_tfm)
		return 0;

	profile->hash = kzalloc(apparmor_hash_size, GFP_KERNEL);
	if (!profile->hash)
		goto fail;

89 90 91 92
	desc.shash.tfm = apparmor_tfm;
	desc.shash.flags = 0;

	error = crypto_shash_init(&desc.shash);
93 94
	if (error)
		goto fail;
95
	error = crypto_shash_update(&desc.shash, (u8 *) &le32_version, 4);
96 97
	if (error)
		goto fail;
98
	error = crypto_shash_update(&desc.shash, (u8 *) start, len);
99 100
	if (error)
		goto fail;
101
	error = crypto_shash_final(&desc.shash, profile->hash);
102 103 104 105 106 107 108 109 110 111 112 113 114 115
	if (error)
		goto fail;

	return 0;

fail:
	kfree(profile->hash);
	profile->hash = NULL;

	return error;
}

static int __init init_profile_hash(void)
{
116
	struct crypto_shash *tfm;
117 118 119 120

	if (!apparmor_initialized)
		return 0;

121
	tfm = crypto_alloc_shash("sha1", 0, CRYPTO_ALG_ASYNC);
122 123 124 125 126 127
	if (IS_ERR(tfm)) {
		int error = PTR_ERR(tfm);
		AA_ERROR("failed to setup profile sha1 hashing: %d\n", error);
		return error;
	}
	apparmor_tfm = tfm;
128
	apparmor_hash_size = crypto_shash_digestsize(apparmor_tfm);
129 130 131 132 133 134 135

	aa_info_message("AppArmor sha1 policy hashing enabled");

	return 0;
}

late_initcall(init_profile_hash);