1 /* System hash blacklist.
3 * Copyright (C) 2016 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
12 #define pr_fmt(fmt) "blacklist: "fmt
13 #include <linux/module.h>
14 #include <linux/slab.h>
15 #include <linux/key.h>
16 #include <linux/key-type.h>
17 #include <linux/sched.h>
18 #include <linux/ctype.h>
19 #include <linux/err.h>
20 #include <linux/seq_file.h>
21 #include <keys/system_keyring.h>
22 #include "blacklist.h"
24 static struct key
*blacklist_keyring
;
27 * The description must be a type prefix, a colon and then an even number of
28 * hex digits. The hash is kept in the description.
30 static int blacklist_vet_description(const char *desc
)
43 for (; *desc
; desc
++) {
55 * The hash to be blacklisted is expected to be in the description. There will
58 static int blacklist_preparse(struct key_preparsed_payload
*prep
)
60 if (prep
->datalen
> 0)
65 static void blacklist_free_preparse(struct key_preparsed_payload
*prep
)
69 static void blacklist_describe(const struct key
*key
, struct seq_file
*m
)
71 seq_puts(m
, key
->description
);
74 static struct key_type key_type_blacklist
= {
76 .vet_description
= blacklist_vet_description
,
77 .preparse
= blacklist_preparse
,
78 .free_preparse
= blacklist_free_preparse
,
79 .instantiate
= generic_key_instantiate
,
80 .describe
= blacklist_describe
,
84 * mark_hash_blacklisted - Add a hash to the system blacklist
85 * @hash - The hash as a hex string with a type prefix (eg. "tbs:23aa429783")
87 int mark_hash_blacklisted(const char *hash
)
91 key
= key_create_or_update(make_key_ref(blacklist_keyring
, true),
96 ((KEY_POS_ALL
& ~KEY_POS_SETATTR
) |
98 KEY_ALLOC_NOT_IN_QUOTA
|
101 pr_err("Problem blacklisting hash (%ld)\n", PTR_ERR(key
));
108 * is_hash_blacklisted - Determine if a hash is blacklisted
109 * @hash: The hash to be checked as a binary blob
110 * @hash_len: The length of the binary hash
111 * @type: Type of hash
113 int is_hash_blacklisted(const u8
*hash
, size_t hash_len
, const char *type
)
116 size_t type_len
= strlen(type
);
120 buffer
= kmalloc(type_len
+ 1 + hash_len
* 2 + 1, GFP_KERNEL
);
123 p
= memcpy(buffer
, type
, type_len
);
126 bin2hex(p
, hash
, hash_len
);
130 kref
= keyring_search(make_key_ref(blacklist_keyring
, true),
131 &key_type_blacklist
, buffer
);
140 EXPORT_SYMBOL_GPL(is_hash_blacklisted
);
143 * Initialise the blacklist
145 static int __init
blacklist_init(void)
147 const char *const *bl
;
149 if (register_key_type(&key_type_blacklist
) < 0)
150 panic("Can't allocate system blacklist key type\n");
153 keyring_alloc(".blacklist",
154 KUIDT_INIT(0), KGIDT_INIT(0),
156 (KEY_POS_ALL
& ~KEY_POS_SETATTR
) |
157 KEY_USR_VIEW
| KEY_USR_READ
|
159 KEY_ALLOC_NOT_IN_QUOTA
|
162 if (IS_ERR(blacklist_keyring
))
163 panic("Can't allocate system blacklist keyring\n");
165 for (bl
= blacklist_hashes
; *bl
; bl
++)
166 if (mark_hash_blacklisted(*bl
) < 0)
167 pr_err("- blacklisting failed\n");
172 * Must be initialised before we try and load the keys into the keyring.
174 device_initcall(blacklist_init
);