blob: b498ed3024610f406d15a204fec2c650bc8c1ac8 [file] [log] [blame]
Thomas Gleixnerb886d83c2019-06-01 10:08:55 +02001// SPDX-License-Identifier: GPL-2.0-only
John Johansenf8eb8a12013-08-14 11:27:36 -07002/*
3 * AppArmor security module
4 *
5 * This file contains AppArmor policy loading interface function definitions.
6 *
7 * Copyright 2013 Canonical Ltd.
8 *
John Johansenf8eb8a12013-08-14 11:27:36 -07009 * Fns to provide a checksum of policy that has been loaded this can be
10 * compared to userspace policy compiles to check loaded policy is what
11 * it should be.
12 */
13
Tyler Hicks71ac7f62013-09-29 08:39:21 -070014#include <crypto/hash.h>
John Johansenf8eb8a12013-08-14 11:27:36 -070015
16#include "include/apparmor.h"
17#include "include/crypto.h"
18
19static unsigned int apparmor_hash_size;
20
Tyler Hicks71ac7f62013-09-29 08:39:21 -070021static struct crypto_shash *apparmor_tfm;
John Johansenf8eb8a12013-08-14 11:27:36 -070022
23unsigned int aa_hash_size(void)
24{
25 return apparmor_hash_size;
26}
27
John Johansen5ac8c352017-01-16 00:42:55 -080028char *aa_calc_hash(void *data, size_t len)
29{
Nicolas Iooss98144482017-04-06 06:55:21 -070030 SHASH_DESC_ON_STACK(desc, apparmor_tfm);
John Johansen5ac8c352017-01-16 00:42:55 -080031 char *hash = NULL;
32 int error = -ENOMEM;
33
34 if (!apparmor_tfm)
35 return NULL;
36
37 hash = kzalloc(apparmor_hash_size, GFP_KERNEL);
38 if (!hash)
39 goto fail;
40
Nicolas Iooss98144482017-04-06 06:55:21 -070041 desc->tfm = apparmor_tfm;
John Johansen5ac8c352017-01-16 00:42:55 -080042
Nicolas Iooss98144482017-04-06 06:55:21 -070043 error = crypto_shash_init(desc);
John Johansen5ac8c352017-01-16 00:42:55 -080044 if (error)
45 goto fail;
Nicolas Iooss98144482017-04-06 06:55:21 -070046 error = crypto_shash_update(desc, (u8 *) data, len);
John Johansen5ac8c352017-01-16 00:42:55 -080047 if (error)
48 goto fail;
Nicolas Iooss98144482017-04-06 06:55:21 -070049 error = crypto_shash_final(desc, hash);
John Johansen5ac8c352017-01-16 00:42:55 -080050 if (error)
51 goto fail;
52
53 return hash;
54
55fail:
56 kfree(hash);
57
58 return ERR_PTR(error);
59}
60
John Johansenf8eb8a12013-08-14 11:27:36 -070061int aa_calc_profile_hash(struct aa_profile *profile, u32 version, void *start,
62 size_t len)
63{
Nicolas Iooss98144482017-04-06 06:55:21 -070064 SHASH_DESC_ON_STACK(desc, apparmor_tfm);
John Johansenf8eb8a12013-08-14 11:27:36 -070065 int error = -ENOMEM;
John Johansen5ac8c352017-01-16 00:42:55 -080066 __le32 le32_version = cpu_to_le32(version);
John Johansenf8eb8a12013-08-14 11:27:36 -070067
Arnd Bergmann7616ac72016-07-25 10:59:07 -070068 if (!aa_g_hash_policy)
69 return 0;
70
John Johansenf8eb8a12013-08-14 11:27:36 -070071 if (!apparmor_tfm)
72 return 0;
73
John Johansenf8eb8a12013-08-14 11:27:36 -070074 profile->hash = kzalloc(apparmor_hash_size, GFP_KERNEL);
75 if (!profile->hash)
76 goto fail;
77
Nicolas Iooss98144482017-04-06 06:55:21 -070078 desc->tfm = apparmor_tfm;
Tyler Hicks71ac7f62013-09-29 08:39:21 -070079
Nicolas Iooss98144482017-04-06 06:55:21 -070080 error = crypto_shash_init(desc);
John Johansenf8eb8a12013-08-14 11:27:36 -070081 if (error)
82 goto fail;
Nicolas Iooss98144482017-04-06 06:55:21 -070083 error = crypto_shash_update(desc, (u8 *) &le32_version, 4);
John Johansenf8eb8a12013-08-14 11:27:36 -070084 if (error)
85 goto fail;
Nicolas Iooss98144482017-04-06 06:55:21 -070086 error = crypto_shash_update(desc, (u8 *) start, len);
John Johansenf8eb8a12013-08-14 11:27:36 -070087 if (error)
88 goto fail;
Nicolas Iooss98144482017-04-06 06:55:21 -070089 error = crypto_shash_final(desc, profile->hash);
John Johansenf8eb8a12013-08-14 11:27:36 -070090 if (error)
91 goto fail;
92
93 return 0;
94
95fail:
96 kfree(profile->hash);
97 profile->hash = NULL;
98
99 return error;
100}
101
102static int __init init_profile_hash(void)
103{
Tyler Hicks71ac7f62013-09-29 08:39:21 -0700104 struct crypto_shash *tfm;
John Johansenf8eb8a12013-08-14 11:27:36 -0700105
106 if (!apparmor_initialized)
107 return 0;
108
Eric Biggers3d234b32018-11-14 12:21:11 -0800109 tfm = crypto_alloc_shash("sha1", 0, 0);
John Johansenf8eb8a12013-08-14 11:27:36 -0700110 if (IS_ERR(tfm)) {
111 int error = PTR_ERR(tfm);
112 AA_ERROR("failed to setup profile sha1 hashing: %d\n", error);
113 return error;
114 }
115 apparmor_tfm = tfm;
Tyler Hicks71ac7f62013-09-29 08:39:21 -0700116 apparmor_hash_size = crypto_shash_digestsize(apparmor_tfm);
John Johansenf8eb8a12013-08-14 11:27:36 -0700117
118 aa_info_message("AppArmor sha1 policy hashing enabled");
119
120 return 0;
121}
122
123late_initcall(init_profile_hash);