1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 3 * Copyright 2019 Google LLC 4 */ 5 6 #ifndef __LINUX_BLK_CRYPTO_PROFILE_H 7 #define __LINUX_BLK_CRYPTO_PROFILE_H 8 9 #include <linux/bio.h> 10 #include <linux/blk-crypto.h> 11 12 struct blk_crypto_profile; 13 14 /** 15 * struct blk_crypto_ll_ops - functions to control inline encryption hardware 16 * 17 * Low-level operations for controlling inline encryption hardware. This 18 * interface must be implemented by storage drivers that support inline 19 * encryption. All functions may sleep, are serialized by profile->lock, and 20 * are never called while profile->dev (if set) is runtime-suspended. 21 */ 22 struct blk_crypto_ll_ops { 23 24 /** 25 * @keyslot_program: Program a key into the inline encryption hardware. 26 * 27 * Program @key into the specified @slot in the inline encryption 28 * hardware, overwriting any key that the keyslot may already contain. 29 * The keyslot is guaranteed to not be in-use by any I/O. 30 * 31 * This is required if the device has keyslots. Otherwise (i.e. if the 32 * device is a layered device, or if the device is real hardware that 33 * simply doesn't have the concept of keyslots) it is never called. 34 * 35 * Must return 0 on success, or -errno on failure. 36 */ 37 int (*keyslot_program)(struct blk_crypto_profile *profile, 38 const struct blk_crypto_key *key, 39 unsigned int slot); 40 41 /** 42 * @keyslot_evict: Evict a key from the inline encryption hardware. 43 * 44 * If the device has keyslots, this function must evict the key from the 45 * specified @slot. The slot will contain @key, but there should be no 46 * need for the @key argument to be used as @slot should be sufficient. 47 * The keyslot is guaranteed to not be in-use by any I/O. 48 * 49 * If the device doesn't have keyslots itself, this function must evict 50 * @key from any underlying devices. @slot won't be valid in this case. 51 * 52 * If there are no keyslots and no underlying devices, this function 53 * isn't required. 54 * 55 * Must return 0 on success, or -errno on failure. 56 */ 57 int (*keyslot_evict)(struct blk_crypto_profile *profile, 58 const struct blk_crypto_key *key, 59 unsigned int slot); 60 61 /** 62 * @derive_sw_secret: Derive the software secret from a hardware-wrapped 63 * key in ephemerally-wrapped form. 64 * 65 * This only needs to be implemented if BLK_CRYPTO_KEY_TYPE_HW_WRAPPED 66 * is supported. 67 * 68 * Must return 0 on success, -EBADMSG if the key is invalid, or another 69 * -errno code on other errors. 70 */ 71 int (*derive_sw_secret)(struct blk_crypto_profile *profile, 72 const u8 *eph_key, size_t eph_key_size, 73 u8 sw_secret[BLK_CRYPTO_SW_SECRET_SIZE]); 74 }; 75 76 /** 77 * struct blk_crypto_profile - inline encryption profile for a device 78 * 79 * This struct contains a storage device's inline encryption capabilities (e.g. 80 * the supported crypto algorithms), driver-provided functions to control the 81 * inline encryption hardware (e.g. programming and evicting keys), and optional 82 * device-independent keyslot management data. 83 */ 84 struct blk_crypto_profile { 85 86 /* public: Drivers must initialize the following fields. */ 87 88 /** 89 * @ll_ops: Driver-provided functions to control the inline encryption 90 * hardware, e.g. program and evict keys. 91 */ 92 struct blk_crypto_ll_ops ll_ops; 93 94 /** 95 * @max_dun_bytes_supported: The maximum number of bytes supported for 96 * specifying the data unit number (DUN). Specifically, the range of 97 * supported DUNs is 0 through (1 << (8 * max_dun_bytes_supported)) - 1. 98 */ 99 unsigned int max_dun_bytes_supported; 100 101 /** 102 * @key_types_supported: A bitmask of the supported key types: 103 * BLK_CRYPTO_KEY_TYPE_STANDARD and/or BLK_CRYPTO_KEY_TYPE_HW_WRAPPED. 104 */ 105 unsigned int key_types_supported; 106 107 /** 108 * @modes_supported: Array of bitmasks that specifies whether each 109 * combination of crypto mode and data unit size is supported. 110 * Specifically, the i'th bit of modes_supported[crypto_mode] is set if 111 * crypto_mode can be used with a data unit size of (1 << i). Note that 112 * only data unit sizes that are powers of 2 can be supported. 113 */ 114 unsigned int modes_supported[BLK_ENCRYPTION_MODE_MAX]; 115 116 /** 117 * @dev: An optional device for runtime power management. If the driver 118 * provides this device, it will be runtime-resumed before any function 119 * in @ll_ops is called and will remain resumed during the call. 120 */ 121 struct device *dev; 122 123 /* private: The following fields shouldn't be accessed by drivers. */ 124 125 /* Number of keyslots, or 0 if not applicable */ 126 unsigned int num_slots; 127 128 /* 129 * Serializes all calls to functions in @ll_ops as well as all changes 130 * to @slot_hashtable. This can also be taken in read mode to look up 131 * keyslots while ensuring that they can't be changed concurrently. 132 */ 133 struct rw_semaphore lock; 134 #ifdef CONFIG_LOCKDEP 135 struct lock_class_key lockdep_key; 136 #endif 137 138 /* List of idle slots, with least recently used slot at front */ 139 wait_queue_head_t idle_slots_wait_queue; 140 struct list_head idle_slots; 141 spinlock_t idle_slots_lock; 142 143 /* 144 * Hash table which maps struct *blk_crypto_key to keyslots, so that we 145 * can find a key's keyslot in O(1) time rather than O(num_slots). 146 * Protected by 'lock'. 147 */ 148 struct hlist_head *slot_hashtable; 149 unsigned int log_slot_ht_size; 150 151 /* Per-keyslot data */ 152 struct blk_crypto_keyslot *slots; 153 }; 154 155 int blk_crypto_profile_init(struct blk_crypto_profile *profile, 156 unsigned int num_slots); 157 158 int devm_blk_crypto_profile_init(struct device *dev, 159 struct blk_crypto_profile *profile, 160 unsigned int num_slots); 161 162 unsigned int blk_crypto_keyslot_index(struct blk_crypto_keyslot *slot); 163 164 void blk_crypto_reprogram_all_keys(struct blk_crypto_profile *profile); 165 166 void blk_crypto_profile_destroy(struct blk_crypto_profile *profile); 167 168 void blk_crypto_intersect_capabilities(struct blk_crypto_profile *parent, 169 const struct blk_crypto_profile *child); 170 171 bool blk_crypto_has_capabilities(const struct blk_crypto_profile *target, 172 const struct blk_crypto_profile *reference); 173 174 void blk_crypto_update_capabilities(struct blk_crypto_profile *dst, 175 const struct blk_crypto_profile *src); 176 177 #endif /* __LINUX_BLK_CRYPTO_PROFILE_H */ 178