blob: 96c511967386d56fa4eb6eaeaef16fe838235b77 [file] [log] [blame]
Satya Tangirala1b262832020-05-14 00:37:17 +00001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright 2019 Google LLC
4 */
5
6/**
Eric Biggerscb77cb52021-10-18 11:04:52 -07007 * DOC: blk-crypto profiles
Satya Tangirala1b262832020-05-14 00:37:17 +00008 *
Eric Biggerscb77cb52021-10-18 11:04:52 -07009 * 'struct blk_crypto_profile' contains all generic inline encryption-related
10 * state for a particular inline encryption device. blk_crypto_profile serves
11 * as the way that drivers for inline encryption hardware expose their crypto
12 * capabilities and certain functions (e.g., functions to program and evict
13 * keys) to upper layers. Device drivers that want to support inline encryption
14 * construct a crypto profile, then associate it with the disk's request_queue.
Satya Tangirala1b262832020-05-14 00:37:17 +000015 *
Eric Biggerscb77cb52021-10-18 11:04:52 -070016 * If the device has keyslots, then its blk_crypto_profile also handles managing
17 * these keyslots in a device-independent way, using the driver-provided
18 * functions to program and evict keys as needed. This includes keeping track
19 * of which key and how many I/O requests are using each keyslot, getting
20 * keyslots for I/O requests, and handling key eviction requests.
Satya Tangirala1b262832020-05-14 00:37:17 +000021 *
Eric Biggerscb77cb52021-10-18 11:04:52 -070022 * For more information, see Documentation/block/inline-encryption.rst.
Satya Tangirala1b262832020-05-14 00:37:17 +000023 */
Satya Tangiralad145dc22020-05-14 00:37:19 +000024
25#define pr_fmt(fmt) "blk-crypto: " fmt
26
Eric Biggers1e8d44b2021-10-18 11:04:51 -070027#include <linux/blk-crypto-profile.h>
Eric Biggers5851d3b2021-01-21 00:21:54 -080028#include <linux/device.h>
Satya Tangirala1b262832020-05-14 00:37:17 +000029#include <linux/atomic.h>
30#include <linux/mutex.h>
31#include <linux/pm_runtime.h>
32#include <linux/wait.h>
33#include <linux/blkdev.h>
Christoph Hellwigfe45e632021-09-20 14:33:27 +020034#include <linux/blk-integrity.h>
Satya Tangirala1b262832020-05-14 00:37:17 +000035
Eric Biggerscb77cb52021-10-18 11:04:52 -070036struct blk_crypto_keyslot {
Satya Tangirala1b262832020-05-14 00:37:17 +000037 atomic_t slot_refs;
38 struct list_head idle_slot_node;
39 struct hlist_node hash_node;
40 const struct blk_crypto_key *key;
Eric Biggerscb77cb52021-10-18 11:04:52 -070041 struct blk_crypto_profile *profile;
Satya Tangirala1b262832020-05-14 00:37:17 +000042};
43
Eric Biggerscb77cb52021-10-18 11:04:52 -070044static inline void blk_crypto_hw_enter(struct blk_crypto_profile *profile)
Satya Tangirala1b262832020-05-14 00:37:17 +000045{
46 /*
Eric Biggerscb77cb52021-10-18 11:04:52 -070047 * Calling into the driver requires profile->lock held and the device
Satya Tangirala1b262832020-05-14 00:37:17 +000048 * resumed. But we must resume the device first, since that can acquire
Eric Biggerscb77cb52021-10-18 11:04:52 -070049 * and release profile->lock via blk_crypto_reprogram_all_keys().
Satya Tangirala1b262832020-05-14 00:37:17 +000050 */
Eric Biggerscb77cb52021-10-18 11:04:52 -070051 if (profile->dev)
52 pm_runtime_get_sync(profile->dev);
53 down_write(&profile->lock);
Satya Tangirala1b262832020-05-14 00:37:17 +000054}
55
Eric Biggerscb77cb52021-10-18 11:04:52 -070056static inline void blk_crypto_hw_exit(struct blk_crypto_profile *profile)
Satya Tangirala1b262832020-05-14 00:37:17 +000057{
Eric Biggerscb77cb52021-10-18 11:04:52 -070058 up_write(&profile->lock);
59 if (profile->dev)
60 pm_runtime_put_sync(profile->dev);
Satya Tangirala7bdcc482021-02-01 05:10:15 +000061}
62
Satya Tangirala1b262832020-05-14 00:37:17 +000063/**
Eric Biggerscb77cb52021-10-18 11:04:52 -070064 * blk_crypto_profile_init() - Initialize a blk_crypto_profile
65 * @profile: the blk_crypto_profile to initialize
66 * @num_slots: the number of keyslots
Satya Tangirala1b262832020-05-14 00:37:17 +000067 *
Eric Biggerscb77cb52021-10-18 11:04:52 -070068 * Storage drivers must call this when starting to set up a blk_crypto_profile,
69 * before filling in additional fields.
Satya Tangirala1b262832020-05-14 00:37:17 +000070 *
71 * Return: 0 on success, or else a negative error code.
72 */
Eric Biggerscb77cb52021-10-18 11:04:52 -070073int blk_crypto_profile_init(struct blk_crypto_profile *profile,
74 unsigned int num_slots)
Satya Tangirala1b262832020-05-14 00:37:17 +000075{
76 unsigned int slot;
77 unsigned int i;
78 unsigned int slot_hashtable_size;
79
Eric Biggerscb77cb52021-10-18 11:04:52 -070080 memset(profile, 0, sizeof(*profile));
81 init_rwsem(&profile->lock);
Satya Tangirala1b262832020-05-14 00:37:17 +000082
83 if (num_slots == 0)
Eric Biggerscb77cb52021-10-18 11:04:52 -070084 return 0;
Satya Tangirala1b262832020-05-14 00:37:17 +000085
Eric Biggerscb77cb52021-10-18 11:04:52 -070086 /* Initialize keyslot management data. */
87
88 profile->slots = kvcalloc(num_slots, sizeof(profile->slots[0]),
89 GFP_KERNEL);
90 if (!profile->slots)
Satya Tangirala1b262832020-05-14 00:37:17 +000091 return -ENOMEM;
92
Eric Biggerscb77cb52021-10-18 11:04:52 -070093 profile->num_slots = num_slots;
Satya Tangirala1b262832020-05-14 00:37:17 +000094
Eric Biggerscb77cb52021-10-18 11:04:52 -070095 init_waitqueue_head(&profile->idle_slots_wait_queue);
96 INIT_LIST_HEAD(&profile->idle_slots);
Satya Tangirala1b262832020-05-14 00:37:17 +000097
98 for (slot = 0; slot < num_slots; slot++) {
Eric Biggerscb77cb52021-10-18 11:04:52 -070099 profile->slots[slot].profile = profile;
100 list_add_tail(&profile->slots[slot].idle_slot_node,
101 &profile->idle_slots);
Satya Tangirala1b262832020-05-14 00:37:17 +0000102 }
103
Eric Biggerscb77cb52021-10-18 11:04:52 -0700104 spin_lock_init(&profile->idle_slots_lock);
Satya Tangirala1b262832020-05-14 00:37:17 +0000105
106 slot_hashtable_size = roundup_pow_of_two(num_slots);
Eric Biggers47a846532020-11-11 13:48:55 -0800107 /*
108 * hash_ptr() assumes bits != 0, so ensure the hash table has at least 2
109 * buckets. This only makes a difference when there is only 1 keyslot.
110 */
111 if (slot_hashtable_size < 2)
112 slot_hashtable_size = 2;
113
Eric Biggerscb77cb52021-10-18 11:04:52 -0700114 profile->log_slot_ht_size = ilog2(slot_hashtable_size);
115 profile->slot_hashtable =
116 kvmalloc_array(slot_hashtable_size,
117 sizeof(profile->slot_hashtable[0]), GFP_KERNEL);
118 if (!profile->slot_hashtable)
119 goto err_destroy;
Satya Tangirala1b262832020-05-14 00:37:17 +0000120 for (i = 0; i < slot_hashtable_size; i++)
Eric Biggerscb77cb52021-10-18 11:04:52 -0700121 INIT_HLIST_HEAD(&profile->slot_hashtable[i]);
Satya Tangirala1b262832020-05-14 00:37:17 +0000122
123 return 0;
124
Eric Biggerscb77cb52021-10-18 11:04:52 -0700125err_destroy:
126 blk_crypto_profile_destroy(profile);
Satya Tangirala1b262832020-05-14 00:37:17 +0000127 return -ENOMEM;
128}
Eric Biggerscb77cb52021-10-18 11:04:52 -0700129EXPORT_SYMBOL_GPL(blk_crypto_profile_init);
Satya Tangirala1b262832020-05-14 00:37:17 +0000130
Eric Biggerscb77cb52021-10-18 11:04:52 -0700131static void blk_crypto_profile_destroy_callback(void *profile)
Eric Biggers5851d3b2021-01-21 00:21:54 -0800132{
Eric Biggerscb77cb52021-10-18 11:04:52 -0700133 blk_crypto_profile_destroy(profile);
Eric Biggers5851d3b2021-01-21 00:21:54 -0800134}
135
136/**
Eric Biggerscb77cb52021-10-18 11:04:52 -0700137 * devm_blk_crypto_profile_init() - Resource-managed blk_crypto_profile_init()
138 * @dev: the device which owns the blk_crypto_profile
139 * @profile: the blk_crypto_profile to initialize
140 * @num_slots: the number of keyslots
Eric Biggers5851d3b2021-01-21 00:21:54 -0800141 *
Eric Biggerscb77cb52021-10-18 11:04:52 -0700142 * Like blk_crypto_profile_init(), but causes blk_crypto_profile_destroy() to be
143 * called automatically on driver detach.
Eric Biggers5851d3b2021-01-21 00:21:54 -0800144 *
145 * Return: 0 on success, or else a negative error code.
146 */
Eric Biggerscb77cb52021-10-18 11:04:52 -0700147int devm_blk_crypto_profile_init(struct device *dev,
148 struct blk_crypto_profile *profile,
149 unsigned int num_slots)
Eric Biggers5851d3b2021-01-21 00:21:54 -0800150{
Eric Biggerscb77cb52021-10-18 11:04:52 -0700151 int err = blk_crypto_profile_init(profile, num_slots);
Eric Biggers5851d3b2021-01-21 00:21:54 -0800152
153 if (err)
154 return err;
155
Eric Biggerscb77cb52021-10-18 11:04:52 -0700156 return devm_add_action_or_reset(dev,
157 blk_crypto_profile_destroy_callback,
158 profile);
Eric Biggers5851d3b2021-01-21 00:21:54 -0800159}
Eric Biggerscb77cb52021-10-18 11:04:52 -0700160EXPORT_SYMBOL_GPL(devm_blk_crypto_profile_init);
Eric Biggers5851d3b2021-01-21 00:21:54 -0800161
Satya Tangirala1b262832020-05-14 00:37:17 +0000162static inline struct hlist_head *
Eric Biggerscb77cb52021-10-18 11:04:52 -0700163blk_crypto_hash_bucket_for_key(struct blk_crypto_profile *profile,
164 const struct blk_crypto_key *key)
Satya Tangirala1b262832020-05-14 00:37:17 +0000165{
Eric Biggerscb77cb52021-10-18 11:04:52 -0700166 return &profile->slot_hashtable[
167 hash_ptr(key, profile->log_slot_ht_size)];
Satya Tangirala1b262832020-05-14 00:37:17 +0000168}
169
Eric Biggerscb77cb52021-10-18 11:04:52 -0700170static void
171blk_crypto_remove_slot_from_lru_list(struct blk_crypto_keyslot *slot)
Satya Tangirala1b262832020-05-14 00:37:17 +0000172{
Eric Biggerscb77cb52021-10-18 11:04:52 -0700173 struct blk_crypto_profile *profile = slot->profile;
Satya Tangirala1b262832020-05-14 00:37:17 +0000174 unsigned long flags;
175
Eric Biggerscb77cb52021-10-18 11:04:52 -0700176 spin_lock_irqsave(&profile->idle_slots_lock, flags);
Satya Tangirala1b262832020-05-14 00:37:17 +0000177 list_del(&slot->idle_slot_node);
Eric Biggerscb77cb52021-10-18 11:04:52 -0700178 spin_unlock_irqrestore(&profile->idle_slots_lock, flags);
Satya Tangirala1b262832020-05-14 00:37:17 +0000179}
180
Eric Biggerscb77cb52021-10-18 11:04:52 -0700181static struct blk_crypto_keyslot *
182blk_crypto_find_keyslot(struct blk_crypto_profile *profile,
183 const struct blk_crypto_key *key)
Satya Tangirala1b262832020-05-14 00:37:17 +0000184{
Eric Biggerscb77cb52021-10-18 11:04:52 -0700185 const struct hlist_head *head =
186 blk_crypto_hash_bucket_for_key(profile, key);
187 struct blk_crypto_keyslot *slotp;
Satya Tangirala1b262832020-05-14 00:37:17 +0000188
189 hlist_for_each_entry(slotp, head, hash_node) {
190 if (slotp->key == key)
191 return slotp;
192 }
193 return NULL;
194}
195
Eric Biggerscb77cb52021-10-18 11:04:52 -0700196static struct blk_crypto_keyslot *
197blk_crypto_find_and_grab_keyslot(struct blk_crypto_profile *profile,
198 const struct blk_crypto_key *key)
Satya Tangirala1b262832020-05-14 00:37:17 +0000199{
Eric Biggerscb77cb52021-10-18 11:04:52 -0700200 struct blk_crypto_keyslot *slot;
Satya Tangirala1b262832020-05-14 00:37:17 +0000201
Eric Biggerscb77cb52021-10-18 11:04:52 -0700202 slot = blk_crypto_find_keyslot(profile, key);
Satya Tangirala1b262832020-05-14 00:37:17 +0000203 if (!slot)
204 return NULL;
205 if (atomic_inc_return(&slot->slot_refs) == 1) {
206 /* Took first reference to this slot; remove it from LRU list */
Eric Biggerscb77cb52021-10-18 11:04:52 -0700207 blk_crypto_remove_slot_from_lru_list(slot);
Satya Tangirala1b262832020-05-14 00:37:17 +0000208 }
209 return slot;
210}
211
Eric Biggerscb77cb52021-10-18 11:04:52 -0700212/**
213 * blk_crypto_keyslot_index() - Get the index of a keyslot
214 * @slot: a keyslot that blk_crypto_get_keyslot() returned
215 *
216 * Return: the 0-based index of the keyslot within the device's keyslots.
217 */
218unsigned int blk_crypto_keyslot_index(struct blk_crypto_keyslot *slot)
Satya Tangirala1b262832020-05-14 00:37:17 +0000219{
Eric Biggerscb77cb52021-10-18 11:04:52 -0700220 return slot - slot->profile->slots;
Satya Tangirala1b262832020-05-14 00:37:17 +0000221}
Eric Biggerscb77cb52021-10-18 11:04:52 -0700222EXPORT_SYMBOL_GPL(blk_crypto_keyslot_index);
Satya Tangirala1b262832020-05-14 00:37:17 +0000223
224/**
Eric Biggerscb77cb52021-10-18 11:04:52 -0700225 * blk_crypto_get_keyslot() - Get a keyslot for a key, if needed.
226 * @profile: the crypto profile of the device the key will be used on
227 * @key: the key that will be used
228 * @slot_ptr: If a keyslot is allocated, an opaque pointer to the keyslot struct
229 * will be stored here; otherwise NULL will be stored here.
Satya Tangirala1b262832020-05-14 00:37:17 +0000230 *
Eric Biggerscb77cb52021-10-18 11:04:52 -0700231 * If the device has keyslots, this gets a keyslot that's been programmed with
232 * the specified key. If the key is already in a slot, this reuses it;
233 * otherwise this waits for a slot to become idle and programs the key into it.
Satya Tangirala1b262832020-05-14 00:37:17 +0000234 *
Eric Biggerscb77cb52021-10-18 11:04:52 -0700235 * This must be paired with a call to blk_crypto_put_keyslot().
236 *
237 * Context: Process context. Takes and releases profile->lock.
238 * Return: BLK_STS_OK on success, meaning that either a keyslot was allocated or
239 * one wasn't needed; or a blk_status_t error on failure.
Satya Tangirala1b262832020-05-14 00:37:17 +0000240 */
Eric Biggerscb77cb52021-10-18 11:04:52 -0700241blk_status_t blk_crypto_get_keyslot(struct blk_crypto_profile *profile,
242 const struct blk_crypto_key *key,
243 struct blk_crypto_keyslot **slot_ptr)
Satya Tangirala1b262832020-05-14 00:37:17 +0000244{
Eric Biggerscb77cb52021-10-18 11:04:52 -0700245 struct blk_crypto_keyslot *slot;
Satya Tangirala1b262832020-05-14 00:37:17 +0000246 int slot_idx;
247 int err;
248
249 *slot_ptr = NULL;
Satya Tangirala7bdcc482021-02-01 05:10:15 +0000250
Eric Biggerscb77cb52021-10-18 11:04:52 -0700251 /*
252 * If the device has no concept of "keyslots", then there is no need to
253 * get one.
254 */
255 if (profile->num_slots == 0)
Satya Tangirala7bdcc482021-02-01 05:10:15 +0000256 return BLK_STS_OK;
257
Eric Biggerscb77cb52021-10-18 11:04:52 -0700258 down_read(&profile->lock);
259 slot = blk_crypto_find_and_grab_keyslot(profile, key);
260 up_read(&profile->lock);
Satya Tangirala1b262832020-05-14 00:37:17 +0000261 if (slot)
262 goto success;
263
264 for (;;) {
Eric Biggerscb77cb52021-10-18 11:04:52 -0700265 blk_crypto_hw_enter(profile);
266 slot = blk_crypto_find_and_grab_keyslot(profile, key);
Satya Tangirala1b262832020-05-14 00:37:17 +0000267 if (slot) {
Eric Biggerscb77cb52021-10-18 11:04:52 -0700268 blk_crypto_hw_exit(profile);
Satya Tangirala1b262832020-05-14 00:37:17 +0000269 goto success;
270 }
271
272 /*
273 * If we're here, that means there wasn't a slot that was
274 * already programmed with the key. So try to program it.
275 */
Eric Biggerscb77cb52021-10-18 11:04:52 -0700276 if (!list_empty(&profile->idle_slots))
Satya Tangirala1b262832020-05-14 00:37:17 +0000277 break;
278
Eric Biggerscb77cb52021-10-18 11:04:52 -0700279 blk_crypto_hw_exit(profile);
280 wait_event(profile->idle_slots_wait_queue,
281 !list_empty(&profile->idle_slots));
Satya Tangirala1b262832020-05-14 00:37:17 +0000282 }
283
Eric Biggerscb77cb52021-10-18 11:04:52 -0700284 slot = list_first_entry(&profile->idle_slots, struct blk_crypto_keyslot,
Satya Tangirala1b262832020-05-14 00:37:17 +0000285 idle_slot_node);
Eric Biggerscb77cb52021-10-18 11:04:52 -0700286 slot_idx = blk_crypto_keyslot_index(slot);
Satya Tangirala1b262832020-05-14 00:37:17 +0000287
Eric Biggerscb77cb52021-10-18 11:04:52 -0700288 err = profile->ll_ops.keyslot_program(profile, key, slot_idx);
Satya Tangirala1b262832020-05-14 00:37:17 +0000289 if (err) {
Eric Biggerscb77cb52021-10-18 11:04:52 -0700290 wake_up(&profile->idle_slots_wait_queue);
291 blk_crypto_hw_exit(profile);
Satya Tangirala1b262832020-05-14 00:37:17 +0000292 return errno_to_blk_status(err);
293 }
294
295 /* Move this slot to the hash list for the new key. */
296 if (slot->key)
297 hlist_del(&slot->hash_node);
298 slot->key = key;
Eric Biggerscb77cb52021-10-18 11:04:52 -0700299 hlist_add_head(&slot->hash_node,
300 blk_crypto_hash_bucket_for_key(profile, key));
Satya Tangirala1b262832020-05-14 00:37:17 +0000301
302 atomic_set(&slot->slot_refs, 1);
303
Eric Biggerscb77cb52021-10-18 11:04:52 -0700304 blk_crypto_remove_slot_from_lru_list(slot);
Satya Tangirala1b262832020-05-14 00:37:17 +0000305
Eric Biggerscb77cb52021-10-18 11:04:52 -0700306 blk_crypto_hw_exit(profile);
Satya Tangirala1b262832020-05-14 00:37:17 +0000307success:
308 *slot_ptr = slot;
309 return BLK_STS_OK;
310}
311
312/**
Eric Biggerscb77cb52021-10-18 11:04:52 -0700313 * blk_crypto_put_keyslot() - Release a reference to a keyslot
314 * @slot: The keyslot to release the reference of (may be NULL).
Satya Tangirala1b262832020-05-14 00:37:17 +0000315 *
316 * Context: Any context.
317 */
Eric Biggerscb77cb52021-10-18 11:04:52 -0700318void blk_crypto_put_keyslot(struct blk_crypto_keyslot *slot)
Satya Tangirala1b262832020-05-14 00:37:17 +0000319{
Eric Biggerscb77cb52021-10-18 11:04:52 -0700320 struct blk_crypto_profile *profile;
Satya Tangirala1b262832020-05-14 00:37:17 +0000321 unsigned long flags;
322
323 if (!slot)
324 return;
325
Eric Biggerscb77cb52021-10-18 11:04:52 -0700326 profile = slot->profile;
Satya Tangirala1b262832020-05-14 00:37:17 +0000327
328 if (atomic_dec_and_lock_irqsave(&slot->slot_refs,
Eric Biggerscb77cb52021-10-18 11:04:52 -0700329 &profile->idle_slots_lock, flags)) {
330 list_add_tail(&slot->idle_slot_node, &profile->idle_slots);
331 spin_unlock_irqrestore(&profile->idle_slots_lock, flags);
332 wake_up(&profile->idle_slots_wait_queue);
Satya Tangirala1b262832020-05-14 00:37:17 +0000333 }
334}
335
336/**
Eric Biggerscb77cb52021-10-18 11:04:52 -0700337 * __blk_crypto_cfg_supported() - Check whether the given crypto profile
338 * supports the given crypto configuration.
339 * @profile: the crypto profile to check
340 * @cfg: the crypto configuration to check for
Satya Tangirala1b262832020-05-14 00:37:17 +0000341 *
Eric Biggerscb77cb52021-10-18 11:04:52 -0700342 * Return: %true if @profile supports the given @cfg.
Satya Tangirala1b262832020-05-14 00:37:17 +0000343 */
Eric Biggerscb77cb52021-10-18 11:04:52 -0700344bool __blk_crypto_cfg_supported(struct blk_crypto_profile *profile,
345 const struct blk_crypto_config *cfg)
Satya Tangirala1b262832020-05-14 00:37:17 +0000346{
Eric Biggerscb77cb52021-10-18 11:04:52 -0700347 if (!profile)
Satya Tangirala1b262832020-05-14 00:37:17 +0000348 return false;
Eric Biggerscb77cb52021-10-18 11:04:52 -0700349 if (!(profile->modes_supported[cfg->crypto_mode] & cfg->data_unit_size))
Satya Tangirala1b262832020-05-14 00:37:17 +0000350 return false;
Eric Biggerscb77cb52021-10-18 11:04:52 -0700351 if (profile->max_dun_bytes_supported < cfg->dun_bytes)
Satya Tangirala1b262832020-05-14 00:37:17 +0000352 return false;
353 return true;
354}
355
356/**
Eric Biggerscb77cb52021-10-18 11:04:52 -0700357 * __blk_crypto_evict_key() - Evict a key from a device.
358 * @profile: the crypto profile of the device
359 * @key: the key to evict. It must not still be used in any I/O.
Satya Tangirala1b262832020-05-14 00:37:17 +0000360 *
Eric Biggerscb77cb52021-10-18 11:04:52 -0700361 * If the device has keyslots, this finds the keyslot (if any) that contains the
362 * specified key and calls the driver's keyslot_evict function to evict it.
Satya Tangirala1b262832020-05-14 00:37:17 +0000363 *
Eric Biggerscb77cb52021-10-18 11:04:52 -0700364 * Otherwise, this just calls the driver's keyslot_evict function if it is
365 * implemented, passing just the key (without any particular keyslot). This
366 * allows layered devices to evict the key from their underlying devices.
367 *
368 * Context: Process context. Takes and releases profile->lock.
Satya Tangirala1b262832020-05-14 00:37:17 +0000369 * Return: 0 on success or if there's no keyslot with the specified key, -EBUSY
370 * if the keyslot is still in use, or another -errno value on other
371 * error.
372 */
Eric Biggerscb77cb52021-10-18 11:04:52 -0700373int __blk_crypto_evict_key(struct blk_crypto_profile *profile,
374 const struct blk_crypto_key *key)
Satya Tangirala1b262832020-05-14 00:37:17 +0000375{
Eric Biggerscb77cb52021-10-18 11:04:52 -0700376 struct blk_crypto_keyslot *slot;
Satya Tangirala1b262832020-05-14 00:37:17 +0000377 int err = 0;
378
Eric Biggerscb77cb52021-10-18 11:04:52 -0700379 if (profile->num_slots == 0) {
380 if (profile->ll_ops.keyslot_evict) {
381 blk_crypto_hw_enter(profile);
382 err = profile->ll_ops.keyslot_evict(profile, key, -1);
383 blk_crypto_hw_exit(profile);
Satya Tangirala7bdcc482021-02-01 05:10:15 +0000384 return err;
385 }
386 return 0;
387 }
388
Eric Biggerscb77cb52021-10-18 11:04:52 -0700389 blk_crypto_hw_enter(profile);
390 slot = blk_crypto_find_keyslot(profile, key);
Satya Tangirala1b262832020-05-14 00:37:17 +0000391 if (!slot)
392 goto out_unlock;
393
394 if (WARN_ON_ONCE(atomic_read(&slot->slot_refs) != 0)) {
395 err = -EBUSY;
396 goto out_unlock;
397 }
Eric Biggerscb77cb52021-10-18 11:04:52 -0700398 err = profile->ll_ops.keyslot_evict(profile, key,
399 blk_crypto_keyslot_index(slot));
Satya Tangirala1b262832020-05-14 00:37:17 +0000400 if (err)
401 goto out_unlock;
402
403 hlist_del(&slot->hash_node);
404 slot->key = NULL;
405 err = 0;
406out_unlock:
Eric Biggerscb77cb52021-10-18 11:04:52 -0700407 blk_crypto_hw_exit(profile);
Satya Tangirala1b262832020-05-14 00:37:17 +0000408 return err;
409}
410
411/**
Eric Biggerscb77cb52021-10-18 11:04:52 -0700412 * blk_crypto_reprogram_all_keys() - Re-program all keyslots.
413 * @profile: The crypto profile
Satya Tangirala1b262832020-05-14 00:37:17 +0000414 *
415 * Re-program all keyslots that are supposed to have a key programmed. This is
416 * intended only for use by drivers for hardware that loses its keys on reset.
417 *
Eric Biggerscb77cb52021-10-18 11:04:52 -0700418 * Context: Process context. Takes and releases profile->lock.
Satya Tangirala1b262832020-05-14 00:37:17 +0000419 */
Eric Biggerscb77cb52021-10-18 11:04:52 -0700420void blk_crypto_reprogram_all_keys(struct blk_crypto_profile *profile)
Satya Tangirala1b262832020-05-14 00:37:17 +0000421{
422 unsigned int slot;
423
Eric Biggerscb77cb52021-10-18 11:04:52 -0700424 if (profile->num_slots == 0)
Satya Tangirala7bdcc482021-02-01 05:10:15 +0000425 return;
426
Satya Tangirala1b262832020-05-14 00:37:17 +0000427 /* This is for device initialization, so don't resume the device */
Eric Biggerscb77cb52021-10-18 11:04:52 -0700428 down_write(&profile->lock);
429 for (slot = 0; slot < profile->num_slots; slot++) {
430 const struct blk_crypto_key *key = profile->slots[slot].key;
Satya Tangirala1b262832020-05-14 00:37:17 +0000431 int err;
432
433 if (!key)
434 continue;
435
Eric Biggerscb77cb52021-10-18 11:04:52 -0700436 err = profile->ll_ops.keyslot_program(profile, key, slot);
Satya Tangirala1b262832020-05-14 00:37:17 +0000437 WARN_ON(err);
438 }
Eric Biggerscb77cb52021-10-18 11:04:52 -0700439 up_write(&profile->lock);
Satya Tangirala1b262832020-05-14 00:37:17 +0000440}
Eric Biggerscb77cb52021-10-18 11:04:52 -0700441EXPORT_SYMBOL_GPL(blk_crypto_reprogram_all_keys);
Satya Tangirala1b262832020-05-14 00:37:17 +0000442
Eric Biggerscb77cb52021-10-18 11:04:52 -0700443void blk_crypto_profile_destroy(struct blk_crypto_profile *profile)
Satya Tangirala1b262832020-05-14 00:37:17 +0000444{
Eric Biggerscb77cb52021-10-18 11:04:52 -0700445 if (!profile)
Satya Tangirala1b262832020-05-14 00:37:17 +0000446 return;
Eric Biggerscb77cb52021-10-18 11:04:52 -0700447 kvfree(profile->slot_hashtable);
448 kvfree_sensitive(profile->slots,
449 sizeof(profile->slots[0]) * profile->num_slots);
450 memzero_explicit(profile, sizeof(*profile));
Satya Tangirala1b262832020-05-14 00:37:17 +0000451}
Eric Biggerscb77cb52021-10-18 11:04:52 -0700452EXPORT_SYMBOL_GPL(blk_crypto_profile_destroy);
Satya Tangiralad145dc22020-05-14 00:37:19 +0000453
Eric Biggerscb77cb52021-10-18 11:04:52 -0700454bool blk_crypto_register(struct blk_crypto_profile *profile,
455 struct request_queue *q)
Satya Tangiralad145dc22020-05-14 00:37:19 +0000456{
457 if (blk_integrity_queue_supports_integrity(q)) {
458 pr_warn("Integrity and hardware inline encryption are not supported together. Disabling hardware inline encryption.\n");
459 return false;
460 }
Eric Biggerscb77cb52021-10-18 11:04:52 -0700461 q->crypto_profile = profile;
Satya Tangiralad145dc22020-05-14 00:37:19 +0000462 return true;
463}
Eric Biggerscb77cb52021-10-18 11:04:52 -0700464EXPORT_SYMBOL_GPL(blk_crypto_register);
Satya Tangiralad145dc22020-05-14 00:37:19 +0000465
Satya Tangirala7bdcc482021-02-01 05:10:15 +0000466/**
Eric Biggerscb77cb52021-10-18 11:04:52 -0700467 * blk_crypto_intersect_capabilities() - restrict supported crypto capabilities
468 * by child device
469 * @parent: the crypto profile for the parent device
470 * @child: the crypto profile for the child device, or NULL
Satya Tangiralad3b17a22021-02-01 05:10:16 +0000471 *
Eric Biggerscb77cb52021-10-18 11:04:52 -0700472 * This clears all crypto capabilities in @parent that aren't set in @child. If
473 * @child is NULL, then this clears all parent capabilities.
Satya Tangiralad3b17a22021-02-01 05:10:16 +0000474 *
Eric Biggerscb77cb52021-10-18 11:04:52 -0700475 * Only use this when setting up the crypto profile for a layered device, before
476 * it's been exposed yet.
Satya Tangiralad3b17a22021-02-01 05:10:16 +0000477 */
Eric Biggerscb77cb52021-10-18 11:04:52 -0700478void blk_crypto_intersect_capabilities(struct blk_crypto_profile *parent,
479 const struct blk_crypto_profile *child)
Satya Tangiralad3b17a22021-02-01 05:10:16 +0000480{
481 if (child) {
482 unsigned int i;
483
484 parent->max_dun_bytes_supported =
485 min(parent->max_dun_bytes_supported,
486 child->max_dun_bytes_supported);
Eric Biggerscb77cb52021-10-18 11:04:52 -0700487 for (i = 0; i < ARRAY_SIZE(child->modes_supported); i++)
488 parent->modes_supported[i] &= child->modes_supported[i];
Satya Tangiralad3b17a22021-02-01 05:10:16 +0000489 } else {
490 parent->max_dun_bytes_supported = 0;
Eric Biggerscb77cb52021-10-18 11:04:52 -0700491 memset(parent->modes_supported, 0,
492 sizeof(parent->modes_supported));
Satya Tangiralad3b17a22021-02-01 05:10:16 +0000493 }
494}
Eric Biggerscb77cb52021-10-18 11:04:52 -0700495EXPORT_SYMBOL_GPL(blk_crypto_intersect_capabilities);
Satya Tangiralad3b17a22021-02-01 05:10:16 +0000496
497/**
Eric Biggerscb77cb52021-10-18 11:04:52 -0700498 * blk_crypto_has_capabilities() - Check whether @target supports at least all
499 * the crypto capabilities that @reference does.
500 * @target: the target profile
501 * @reference: the reference profile
Satya Tangiralad3b17a22021-02-01 05:10:16 +0000502 *
Eric Biggerscb77cb52021-10-18 11:04:52 -0700503 * Return: %true if @target supports all the crypto capabilities of @reference.
Satya Tangiralad3b17a22021-02-01 05:10:16 +0000504 */
Eric Biggerscb77cb52021-10-18 11:04:52 -0700505bool blk_crypto_has_capabilities(const struct blk_crypto_profile *target,
506 const struct blk_crypto_profile *reference)
Satya Tangiralad3b17a22021-02-01 05:10:16 +0000507{
508 int i;
509
Eric Biggerscb77cb52021-10-18 11:04:52 -0700510 if (!reference)
Satya Tangiralad3b17a22021-02-01 05:10:16 +0000511 return true;
512
Eric Biggerscb77cb52021-10-18 11:04:52 -0700513 if (!target)
Satya Tangiralad3b17a22021-02-01 05:10:16 +0000514 return false;
515
Eric Biggerscb77cb52021-10-18 11:04:52 -0700516 for (i = 0; i < ARRAY_SIZE(target->modes_supported); i++) {
517 if (reference->modes_supported[i] & ~target->modes_supported[i])
Satya Tangiralad3b17a22021-02-01 05:10:16 +0000518 return false;
Satya Tangiralad3b17a22021-02-01 05:10:16 +0000519 }
520
Eric Biggerscb77cb52021-10-18 11:04:52 -0700521 if (reference->max_dun_bytes_supported >
522 target->max_dun_bytes_supported)
Satya Tangiralad3b17a22021-02-01 05:10:16 +0000523 return false;
Satya Tangiralad3b17a22021-02-01 05:10:16 +0000524
525 return true;
526}
Eric Biggerscb77cb52021-10-18 11:04:52 -0700527EXPORT_SYMBOL_GPL(blk_crypto_has_capabilities);
Satya Tangiralad3b17a22021-02-01 05:10:16 +0000528
529/**
Eric Biggerscb77cb52021-10-18 11:04:52 -0700530 * blk_crypto_update_capabilities() - Update the capabilities of a crypto
531 * profile to match those of another crypto
532 * profile.
533 * @dst: The crypto profile whose capabilities to update.
534 * @src: The crypto profile whose capabilities this function will update @dst's
535 * capabilities to.
Satya Tangiralad3b17a22021-02-01 05:10:16 +0000536 *
537 * Blk-crypto requires that crypto capabilities that were
538 * advertised when a bio was created continue to be supported by the
539 * device until that bio is ended. This is turn means that a device cannot
540 * shrink its advertised crypto capabilities without any explicit
541 * synchronization with upper layers. So if there's no such explicit
Eric Biggerscb77cb52021-10-18 11:04:52 -0700542 * synchronization, @src must support all the crypto capabilities that
543 * @dst does (i.e. we need blk_crypto_has_capabilities(@src, @dst)).
Satya Tangiralad3b17a22021-02-01 05:10:16 +0000544 *
545 * Note also that as long as the crypto capabilities are being expanded, the
546 * order of updates becoming visible is not important because it's alright
547 * for blk-crypto to see stale values - they only cause blk-crypto to
548 * believe that a crypto capability isn't supported when it actually is (which
549 * might result in blk-crypto-fallback being used if available, or the bio being
550 * failed).
551 */
Eric Biggerscb77cb52021-10-18 11:04:52 -0700552void blk_crypto_update_capabilities(struct blk_crypto_profile *dst,
553 const struct blk_crypto_profile *src)
Satya Tangiralad3b17a22021-02-01 05:10:16 +0000554{
Eric Biggerscb77cb52021-10-18 11:04:52 -0700555 memcpy(dst->modes_supported, src->modes_supported,
556 sizeof(dst->modes_supported));
Satya Tangiralad3b17a22021-02-01 05:10:16 +0000557
Eric Biggerscb77cb52021-10-18 11:04:52 -0700558 dst->max_dun_bytes_supported = src->max_dun_bytes_supported;
Satya Tangiralad3b17a22021-02-01 05:10:16 +0000559}
Eric Biggerscb77cb52021-10-18 11:04:52 -0700560EXPORT_SYMBOL_GPL(blk_crypto_update_capabilities);