1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Copyright 2019 Google LLC
6 #ifndef __LINUX_BLK_CRYPTO_INTERNAL_H
7 #define __LINUX_BLK_CRYPTO_INTERNAL_H
10 #include <linux/blk-mq.h>
12 /* Represents a crypto mode supported by blk-crypto */
13 struct blk_crypto_mode
{
14 const char *name
; /* name of this mode, shown in sysfs */
15 const char *cipher_str
; /* crypto API name (for fallback case) */
16 unsigned int keysize
; /* key size in bytes */
17 unsigned int ivsize
; /* iv size in bytes */
20 extern const struct blk_crypto_mode blk_crypto_modes
[];
22 #ifdef CONFIG_BLK_INLINE_ENCRYPTION
24 int blk_crypto_sysfs_register(struct gendisk
*disk
);
26 void blk_crypto_sysfs_unregister(struct gendisk
*disk
);
28 void bio_crypt_dun_increment(u64 dun
[BLK_CRYPTO_DUN_ARRAY_SIZE
],
31 bool bio_crypt_rq_ctx_compatible(struct request
*rq
, struct bio
*bio
);
33 bool bio_crypt_ctx_mergeable(struct bio_crypt_ctx
*bc1
, unsigned int bc1_bytes
,
34 struct bio_crypt_ctx
*bc2
);
36 static inline bool bio_crypt_ctx_back_mergeable(struct request
*req
,
39 return bio_crypt_ctx_mergeable(req
->crypt_ctx
, blk_rq_bytes(req
),
40 bio
->bi_crypt_context
);
43 static inline bool bio_crypt_ctx_front_mergeable(struct request
*req
,
46 return bio_crypt_ctx_mergeable(bio
->bi_crypt_context
,
47 bio
->bi_iter
.bi_size
, req
->crypt_ctx
);
50 static inline bool bio_crypt_ctx_merge_rq(struct request
*req
,
53 return bio_crypt_ctx_mergeable(req
->crypt_ctx
, blk_rq_bytes(req
),
57 static inline void blk_crypto_rq_set_defaults(struct request
*rq
)
60 rq
->crypt_keyslot
= NULL
;
63 static inline bool blk_crypto_rq_is_encrypted(struct request
*rq
)
68 static inline bool blk_crypto_rq_has_keyslot(struct request
*rq
)
70 return rq
->crypt_keyslot
;
73 blk_status_t
blk_crypto_get_keyslot(struct blk_crypto_profile
*profile
,
74 const struct blk_crypto_key
*key
,
75 struct blk_crypto_keyslot
**slot_ptr
);
77 void blk_crypto_put_keyslot(struct blk_crypto_keyslot
*slot
);
79 int __blk_crypto_evict_key(struct blk_crypto_profile
*profile
,
80 const struct blk_crypto_key
*key
);
82 bool __blk_crypto_cfg_supported(struct blk_crypto_profile
*profile
,
83 const struct blk_crypto_config
*cfg
);
85 #else /* CONFIG_BLK_INLINE_ENCRYPTION */
87 static inline int blk_crypto_sysfs_register(struct gendisk
*disk
)
92 static inline void blk_crypto_sysfs_unregister(struct gendisk
*disk
)
96 static inline bool bio_crypt_rq_ctx_compatible(struct request
*rq
,
102 static inline bool bio_crypt_ctx_front_mergeable(struct request
*req
,
108 static inline bool bio_crypt_ctx_back_mergeable(struct request
*req
,
114 static inline bool bio_crypt_ctx_merge_rq(struct request
*req
,
115 struct request
*next
)
120 static inline void blk_crypto_rq_set_defaults(struct request
*rq
) { }
122 static inline bool blk_crypto_rq_is_encrypted(struct request
*rq
)
127 static inline bool blk_crypto_rq_has_keyslot(struct request
*rq
)
132 #endif /* CONFIG_BLK_INLINE_ENCRYPTION */
134 void __bio_crypt_advance(struct bio
*bio
, unsigned int bytes
);
135 static inline void bio_crypt_advance(struct bio
*bio
, unsigned int bytes
)
137 if (bio_has_crypt_ctx(bio
))
138 __bio_crypt_advance(bio
, bytes
);
141 void __bio_crypt_free_ctx(struct bio
*bio
);
142 static inline void bio_crypt_free_ctx(struct bio
*bio
)
144 if (bio_has_crypt_ctx(bio
))
145 __bio_crypt_free_ctx(bio
);
148 static inline void bio_crypt_do_front_merge(struct request
*rq
,
151 #ifdef CONFIG_BLK_INLINE_ENCRYPTION
152 if (bio_has_crypt_ctx(bio
))
153 memcpy(rq
->crypt_ctx
->bc_dun
, bio
->bi_crypt_context
->bc_dun
,
154 sizeof(rq
->crypt_ctx
->bc_dun
));
158 bool __blk_crypto_bio_prep(struct bio
**bio_ptr
);
159 static inline bool blk_crypto_bio_prep(struct bio
**bio_ptr
)
161 if (bio_has_crypt_ctx(*bio_ptr
))
162 return __blk_crypto_bio_prep(bio_ptr
);
166 blk_status_t
__blk_crypto_rq_get_keyslot(struct request
*rq
);
167 static inline blk_status_t
blk_crypto_rq_get_keyslot(struct request
*rq
)
169 if (blk_crypto_rq_is_encrypted(rq
))
170 return __blk_crypto_rq_get_keyslot(rq
);
174 void __blk_crypto_rq_put_keyslot(struct request
*rq
);
175 static inline void blk_crypto_rq_put_keyslot(struct request
*rq
)
177 if (blk_crypto_rq_has_keyslot(rq
))
178 __blk_crypto_rq_put_keyslot(rq
);
181 void __blk_crypto_free_request(struct request
*rq
);
182 static inline void blk_crypto_free_request(struct request
*rq
)
184 if (blk_crypto_rq_is_encrypted(rq
))
185 __blk_crypto_free_request(rq
);
188 int __blk_crypto_rq_bio_prep(struct request
*rq
, struct bio
*bio
,
191 * blk_crypto_rq_bio_prep - Prepare a request's crypt_ctx when its first bio
193 * @rq: The request to prepare
194 * @bio: The first bio being inserted into the request
195 * @gfp_mask: Memory allocation flags
197 * Return: 0 on success, -ENOMEM if out of memory. -ENOMEM is only possible if
198 * @gfp_mask doesn't include %__GFP_DIRECT_RECLAIM.
200 static inline int blk_crypto_rq_bio_prep(struct request
*rq
, struct bio
*bio
,
203 if (bio_has_crypt_ctx(bio
))
204 return __blk_crypto_rq_bio_prep(rq
, bio
, gfp_mask
);
208 #ifdef CONFIG_BLK_INLINE_ENCRYPTION_FALLBACK
210 int blk_crypto_fallback_start_using_mode(enum blk_crypto_mode_num mode_num
);
212 bool blk_crypto_fallback_bio_prep(struct bio
**bio_ptr
);
214 int blk_crypto_fallback_evict_key(const struct blk_crypto_key
*key
);
216 #else /* CONFIG_BLK_INLINE_ENCRYPTION_FALLBACK */
219 blk_crypto_fallback_start_using_mode(enum blk_crypto_mode_num mode_num
)
221 pr_warn_once("crypto API fallback is disabled\n");
225 static inline bool blk_crypto_fallback_bio_prep(struct bio
**bio_ptr
)
227 pr_warn_once("crypto API fallback disabled; failing request.\n");
228 (*bio_ptr
)->bi_status
= BLK_STS_NOTSUPP
;
233 blk_crypto_fallback_evict_key(const struct blk_crypto_key
*key
)
238 #endif /* CONFIG_BLK_INLINE_ENCRYPTION_FALLBACK */
240 #endif /* __LINUX_BLK_CRYPTO_INTERNAL_H */