io_uring: don't count rqs failed after current one
[linux/fpc-iii.git] / security / apparmor / crypto.c
blobb498ed3024610f406d15a204fec2c650bc8c1ac8
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * AppArmor security module
5 * This file contains AppArmor policy loading interface function definitions.
7 * Copyright 2013 Canonical Ltd.
9 * 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.
14 #include <crypto/hash.h>
16 #include "include/apparmor.h"
17 #include "include/crypto.h"
19 static unsigned int apparmor_hash_size;
21 static struct crypto_shash *apparmor_tfm;
23 unsigned int aa_hash_size(void)
25 return apparmor_hash_size;
28 char *aa_calc_hash(void *data, size_t len)
30 SHASH_DESC_ON_STACK(desc, apparmor_tfm);
31 char *hash = NULL;
32 int error = -ENOMEM;
34 if (!apparmor_tfm)
35 return NULL;
37 hash = kzalloc(apparmor_hash_size, GFP_KERNEL);
38 if (!hash)
39 goto fail;
41 desc->tfm = apparmor_tfm;
43 error = crypto_shash_init(desc);
44 if (error)
45 goto fail;
46 error = crypto_shash_update(desc, (u8 *) data, len);
47 if (error)
48 goto fail;
49 error = crypto_shash_final(desc, hash);
50 if (error)
51 goto fail;
53 return hash;
55 fail:
56 kfree(hash);
58 return ERR_PTR(error);
61 int aa_calc_profile_hash(struct aa_profile *profile, u32 version, void *start,
62 size_t len)
64 SHASH_DESC_ON_STACK(desc, apparmor_tfm);
65 int error = -ENOMEM;
66 __le32 le32_version = cpu_to_le32(version);
68 if (!aa_g_hash_policy)
69 return 0;
71 if (!apparmor_tfm)
72 return 0;
74 profile->hash = kzalloc(apparmor_hash_size, GFP_KERNEL);
75 if (!profile->hash)
76 goto fail;
78 desc->tfm = apparmor_tfm;
80 error = crypto_shash_init(desc);
81 if (error)
82 goto fail;
83 error = crypto_shash_update(desc, (u8 *) &le32_version, 4);
84 if (error)
85 goto fail;
86 error = crypto_shash_update(desc, (u8 *) start, len);
87 if (error)
88 goto fail;
89 error = crypto_shash_final(desc, profile->hash);
90 if (error)
91 goto fail;
93 return 0;
95 fail:
96 kfree(profile->hash);
97 profile->hash = NULL;
99 return error;
102 static int __init init_profile_hash(void)
104 struct crypto_shash *tfm;
106 if (!apparmor_initialized)
107 return 0;
109 tfm = crypto_alloc_shash("sha1", 0, 0);
110 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;
115 apparmor_tfm = tfm;
116 apparmor_hash_size = crypto_shash_digestsize(apparmor_tfm);
118 aa_info_message("AppArmor sha1 policy hashing enabled");
120 return 0;
123 late_initcall(init_profile_hash);