blob: 25a52a2a09a885023b66a54777c262fc1f30b355 [file] [log] [blame]
Christoph Hellwig8c165672019-04-30 14:42:39 -04001// SPDX-License-Identifier: GPL-2.0
Martin K. Petersen2341c2f82014-09-26 19:20:07 -04002/*
3 * t10_pi.c - Functions for generating and verifying T10 Protection
4 * Information.
Martin K. Petersen2341c2f82014-09-26 19:20:07 -04005 */
6
7#include <linux/t10-pi.h>
Christoph Hellwigfe45e632021-09-20 14:33:27 +02008#include <linux/blk-integrity.h>
Martin K. Petersen2341c2f82014-09-26 19:20:07 -04009#include <linux/crc-t10dif.h>
Herbert Xua754bd52019-12-23 16:13:51 +080010#include <linux/module.h>
Martin K. Petersen2341c2f82014-09-26 19:20:07 -040011#include <net/checksum.h>
12
13typedef __be16 (csum_fn) (void *, unsigned int);
14
Martin K. Petersen2341c2f82014-09-26 19:20:07 -040015static __be16 t10_pi_crc_fn(void *data, unsigned int len)
16{
17 return cpu_to_be16(crc_t10dif(data, len));
18}
19
20static __be16 t10_pi_ip_fn(void *data, unsigned int len)
21{
22 return (__force __be16)ip_compute_csum(data, len);
23}
24
25/*
26 * Type 1 and Type 2 protection use the same format: 16 bit guard tag,
27 * 16 bit app tag, 32 bit reference tag. Type 3 does not define the ref
28 * tag.
29 */
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +020030static blk_status_t t10_pi_generate(struct blk_integrity_iter *iter,
Max Gurtovoy5eaed682019-09-16 18:44:28 +030031 csum_fn *fn, enum t10_dif_type type)
Martin K. Petersen2341c2f82014-09-26 19:20:07 -040032{
33 unsigned int i;
34
35 for (i = 0 ; i < iter->data_size ; i += iter->interval) {
36 struct t10_pi_tuple *pi = iter->prot_buf;
37
38 pi->guard_tag = fn(iter->data_buf, iter->interval);
39 pi->app_tag = 0;
40
Max Gurtovoy5eaed682019-09-16 18:44:28 +030041 if (type == T10_PI_TYPE1_PROTECTION)
Martin K. Petersen2341c2f82014-09-26 19:20:07 -040042 pi->ref_tag = cpu_to_be32(lower_32_bits(iter->seed));
43 else
44 pi->ref_tag = 0;
45
46 iter->data_buf += iter->interval;
47 iter->prot_buf += sizeof(struct t10_pi_tuple);
48 iter->seed++;
49 }
50
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +020051 return BLK_STS_OK;
Martin K. Petersen2341c2f82014-09-26 19:20:07 -040052}
53
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +020054static blk_status_t t10_pi_verify(struct blk_integrity_iter *iter,
Max Gurtovoy5eaed682019-09-16 18:44:28 +030055 csum_fn *fn, enum t10_dif_type type)
Martin K. Petersen2341c2f82014-09-26 19:20:07 -040056{
57 unsigned int i;
58
Max Gurtovoybe216832019-09-22 12:46:55 +030059 BUG_ON(type == T10_PI_TYPE0_PROTECTION);
60
Martin K. Petersen2341c2f82014-09-26 19:20:07 -040061 for (i = 0 ; i < iter->data_size ; i += iter->interval) {
62 struct t10_pi_tuple *pi = iter->prot_buf;
63 __be16 csum;
64
Max Gurtovoybe216832019-09-22 12:46:55 +030065 if (type == T10_PI_TYPE1_PROTECTION ||
66 type == T10_PI_TYPE2_PROTECTION) {
Dmitry Monakhov128b6f92017-06-29 11:31:12 -070067 if (pi->app_tag == T10_PI_APP_ESCAPE)
Martin K. Petersen2341c2f82014-09-26 19:20:07 -040068 goto next;
69
70 if (be32_to_cpu(pi->ref_tag) !=
71 lower_32_bits(iter->seed)) {
72 pr_err("%s: ref tag error at location %llu " \
73 "(rcvd %u)\n", iter->disk_name,
74 (unsigned long long)
75 iter->seed, be32_to_cpu(pi->ref_tag));
Bart Van Asschea462b952017-06-13 08:07:33 -070076 return BLK_STS_PROTECTION;
Martin K. Petersen2341c2f82014-09-26 19:20:07 -040077 }
Max Gurtovoybe216832019-09-22 12:46:55 +030078 } else if (type == T10_PI_TYPE3_PROTECTION) {
Dmitry Monakhov128b6f92017-06-29 11:31:12 -070079 if (pi->app_tag == T10_PI_APP_ESCAPE &&
80 pi->ref_tag == T10_PI_REF_ESCAPE)
Martin K. Petersen2341c2f82014-09-26 19:20:07 -040081 goto next;
Martin K. Petersen2341c2f82014-09-26 19:20:07 -040082 }
83
84 csum = fn(iter->data_buf, iter->interval);
85
86 if (pi->guard_tag != csum) {
87 pr_err("%s: guard tag error at sector %llu " \
88 "(rcvd %04x, want %04x)\n", iter->disk_name,
89 (unsigned long long)iter->seed,
90 be16_to_cpu(pi->guard_tag), be16_to_cpu(csum));
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +020091 return BLK_STS_PROTECTION;
Martin K. Petersen2341c2f82014-09-26 19:20:07 -040092 }
93
94next:
95 iter->data_buf += iter->interval;
96 iter->prot_buf += sizeof(struct t10_pi_tuple);
97 iter->seed++;
98 }
99
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200100 return BLK_STS_OK;
Martin K. Petersen2341c2f82014-09-26 19:20:07 -0400101}
102
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200103static blk_status_t t10_pi_type1_generate_crc(struct blk_integrity_iter *iter)
Martin K. Petersen2341c2f82014-09-26 19:20:07 -0400104{
Max Gurtovoy5eaed682019-09-16 18:44:28 +0300105 return t10_pi_generate(iter, t10_pi_crc_fn, T10_PI_TYPE1_PROTECTION);
Martin K. Petersen2341c2f82014-09-26 19:20:07 -0400106}
107
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200108static blk_status_t t10_pi_type1_generate_ip(struct blk_integrity_iter *iter)
Martin K. Petersen2341c2f82014-09-26 19:20:07 -0400109{
Max Gurtovoy5eaed682019-09-16 18:44:28 +0300110 return t10_pi_generate(iter, t10_pi_ip_fn, T10_PI_TYPE1_PROTECTION);
Martin K. Petersen2341c2f82014-09-26 19:20:07 -0400111}
112
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200113static blk_status_t t10_pi_type1_verify_crc(struct blk_integrity_iter *iter)
Martin K. Petersen2341c2f82014-09-26 19:20:07 -0400114{
Max Gurtovoy5eaed682019-09-16 18:44:28 +0300115 return t10_pi_verify(iter, t10_pi_crc_fn, T10_PI_TYPE1_PROTECTION);
Martin K. Petersen2341c2f82014-09-26 19:20:07 -0400116}
117
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200118static blk_status_t t10_pi_type1_verify_ip(struct blk_integrity_iter *iter)
Martin K. Petersen2341c2f82014-09-26 19:20:07 -0400119{
Max Gurtovoy5eaed682019-09-16 18:44:28 +0300120 return t10_pi_verify(iter, t10_pi_ip_fn, T10_PI_TYPE1_PROTECTION);
Martin K. Petersen2341c2f82014-09-26 19:20:07 -0400121}
122
Max Gurtovoy10c41dd2018-07-30 00:15:32 +0300123/**
Max Gurtovoy54d4e6a2019-09-16 18:44:29 +0300124 * t10_pi_type1_prepare - prepare PI prior submitting request to device
Max Gurtovoy10c41dd2018-07-30 00:15:32 +0300125 * @rq: request with PI that should be prepared
Max Gurtovoy10c41dd2018-07-30 00:15:32 +0300126 *
127 * For Type 1/Type 2, the virtual start sector is the one that was
128 * originally submitted by the block layer for the ref_tag usage. Due to
129 * partitioning, MD/DM cloning, etc. the actual physical start sector is
130 * likely to be different. Remap protection information to match the
131 * physical LBA.
Max Gurtovoy10c41dd2018-07-30 00:15:32 +0300132 */
Max Gurtovoy54d4e6a2019-09-16 18:44:29 +0300133static void t10_pi_type1_prepare(struct request *rq)
Max Gurtovoy10c41dd2018-07-30 00:15:32 +0300134{
135 const int tuple_sz = rq->q->integrity.tuple_size;
136 u32 ref_tag = t10_pi_ref_tag(rq);
137 struct bio *bio;
138
Max Gurtovoy10c41dd2018-07-30 00:15:32 +0300139 __rq_for_each_bio(bio, rq) {
140 struct bio_integrity_payload *bip = bio_integrity(bio);
141 u32 virt = bip_get_seed(bip) & 0xffffffff;
142 struct bio_vec iv;
143 struct bvec_iter iter;
144
145 /* Already remapped? */
146 if (bip->bip_flags & BIP_MAPPED_INTEGRITY)
147 break;
148
149 bip_for_each_vec(iv, bip, iter) {
Max Gurtovoy10c41dd2018-07-30 00:15:32 +0300150 unsigned int j;
Christoph Hellwig8aec1202021-07-27 07:56:45 +0200151 void *p;
Max Gurtovoy10c41dd2018-07-30 00:15:32 +0300152
Christoph Hellwig8aec1202021-07-27 07:56:45 +0200153 p = bvec_kmap_local(&iv);
Max Gurtovoy10c41dd2018-07-30 00:15:32 +0300154 for (j = 0; j < iv.bv_len; j += tuple_sz) {
155 struct t10_pi_tuple *pi = p;
156
157 if (be32_to_cpu(pi->ref_tag) == virt)
158 pi->ref_tag = cpu_to_be32(ref_tag);
159 virt++;
160 ref_tag++;
161 p += tuple_sz;
162 }
Christoph Hellwig8aec1202021-07-27 07:56:45 +0200163 kunmap_local(p);
Max Gurtovoy10c41dd2018-07-30 00:15:32 +0300164 }
165
166 bip->bip_flags |= BIP_MAPPED_INTEGRITY;
167 }
168}
Max Gurtovoy10c41dd2018-07-30 00:15:32 +0300169
170/**
Max Gurtovoy54d4e6a2019-09-16 18:44:29 +0300171 * t10_pi_type1_complete - prepare PI prior returning request to the blk layer
Max Gurtovoy10c41dd2018-07-30 00:15:32 +0300172 * @rq: request with PI that should be prepared
Max Gurtovoy54d4e6a2019-09-16 18:44:29 +0300173 * @nr_bytes: total bytes to prepare
Max Gurtovoy10c41dd2018-07-30 00:15:32 +0300174 *
175 * For Type 1/Type 2, the virtual start sector is the one that was
176 * originally submitted by the block layer for the ref_tag usage. Due to
177 * partitioning, MD/DM cloning, etc. the actual physical start sector is
178 * likely to be different. Since the physical start sector was submitted
179 * to the device, we should remap it back to virtual values expected by the
180 * block layer.
Max Gurtovoy10c41dd2018-07-30 00:15:32 +0300181 */
Max Gurtovoy54d4e6a2019-09-16 18:44:29 +0300182static void t10_pi_type1_complete(struct request *rq, unsigned int nr_bytes)
Max Gurtovoy10c41dd2018-07-30 00:15:32 +0300183{
Max Gurtovoy54d4e6a2019-09-16 18:44:29 +0300184 unsigned intervals = nr_bytes >> rq->q->integrity.interval_exp;
Max Gurtovoy10c41dd2018-07-30 00:15:32 +0300185 const int tuple_sz = rq->q->integrity.tuple_size;
186 u32 ref_tag = t10_pi_ref_tag(rq);
187 struct bio *bio;
188
Max Gurtovoy10c41dd2018-07-30 00:15:32 +0300189 __rq_for_each_bio(bio, rq) {
190 struct bio_integrity_payload *bip = bio_integrity(bio);
191 u32 virt = bip_get_seed(bip) & 0xffffffff;
192 struct bio_vec iv;
193 struct bvec_iter iter;
194
195 bip_for_each_vec(iv, bip, iter) {
Max Gurtovoy10c41dd2018-07-30 00:15:32 +0300196 unsigned int j;
Christoph Hellwig8aec1202021-07-27 07:56:45 +0200197 void *p;
Max Gurtovoy10c41dd2018-07-30 00:15:32 +0300198
Christoph Hellwig8aec1202021-07-27 07:56:45 +0200199 p = bvec_kmap_local(&iv);
Max Gurtovoy10c41dd2018-07-30 00:15:32 +0300200 for (j = 0; j < iv.bv_len && intervals; j += tuple_sz) {
201 struct t10_pi_tuple *pi = p;
202
203 if (be32_to_cpu(pi->ref_tag) == ref_tag)
204 pi->ref_tag = cpu_to_be32(virt);
205 virt++;
206 ref_tag++;
207 intervals--;
208 p += tuple_sz;
209 }
Christoph Hellwig8aec1202021-07-27 07:56:45 +0200210 kunmap_local(p);
Max Gurtovoy10c41dd2018-07-30 00:15:32 +0300211 }
212 }
213}
Max Gurtovoy54d4e6a2019-09-16 18:44:29 +0300214
215static blk_status_t t10_pi_type3_generate_crc(struct blk_integrity_iter *iter)
216{
217 return t10_pi_generate(iter, t10_pi_crc_fn, T10_PI_TYPE3_PROTECTION);
218}
219
220static blk_status_t t10_pi_type3_generate_ip(struct blk_integrity_iter *iter)
221{
222 return t10_pi_generate(iter, t10_pi_ip_fn, T10_PI_TYPE3_PROTECTION);
223}
224
225static blk_status_t t10_pi_type3_verify_crc(struct blk_integrity_iter *iter)
226{
227 return t10_pi_verify(iter, t10_pi_crc_fn, T10_PI_TYPE3_PROTECTION);
228}
229
230static blk_status_t t10_pi_type3_verify_ip(struct blk_integrity_iter *iter)
231{
232 return t10_pi_verify(iter, t10_pi_ip_fn, T10_PI_TYPE3_PROTECTION);
233}
234
Bart Van Assche98e54402019-09-30 16:00:40 -0700235/* Type 3 does not have a reference tag so no remapping is required. */
Max Gurtovoy54d4e6a2019-09-16 18:44:29 +0300236static void t10_pi_type3_prepare(struct request *rq)
237{
238}
239
Bart Van Assche98e54402019-09-30 16:00:40 -0700240/* Type 3 does not have a reference tag so no remapping is required. */
Max Gurtovoy54d4e6a2019-09-16 18:44:29 +0300241static void t10_pi_type3_complete(struct request *rq, unsigned int nr_bytes)
242{
243}
244
245const struct blk_integrity_profile t10_pi_type1_crc = {
246 .name = "T10-DIF-TYPE1-CRC",
247 .generate_fn = t10_pi_type1_generate_crc,
248 .verify_fn = t10_pi_type1_verify_crc,
249 .prepare_fn = t10_pi_type1_prepare,
250 .complete_fn = t10_pi_type1_complete,
251};
252EXPORT_SYMBOL(t10_pi_type1_crc);
253
254const struct blk_integrity_profile t10_pi_type1_ip = {
255 .name = "T10-DIF-TYPE1-IP",
256 .generate_fn = t10_pi_type1_generate_ip,
257 .verify_fn = t10_pi_type1_verify_ip,
258 .prepare_fn = t10_pi_type1_prepare,
259 .complete_fn = t10_pi_type1_complete,
260};
261EXPORT_SYMBOL(t10_pi_type1_ip);
262
263const struct blk_integrity_profile t10_pi_type3_crc = {
264 .name = "T10-DIF-TYPE3-CRC",
265 .generate_fn = t10_pi_type3_generate_crc,
266 .verify_fn = t10_pi_type3_verify_crc,
267 .prepare_fn = t10_pi_type3_prepare,
268 .complete_fn = t10_pi_type3_complete,
269};
270EXPORT_SYMBOL(t10_pi_type3_crc);
271
272const struct blk_integrity_profile t10_pi_type3_ip = {
273 .name = "T10-DIF-TYPE3-IP",
274 .generate_fn = t10_pi_type3_generate_ip,
275 .verify_fn = t10_pi_type3_verify_ip,
276 .prepare_fn = t10_pi_type3_prepare,
277 .complete_fn = t10_pi_type3_complete,
278};
279EXPORT_SYMBOL(t10_pi_type3_ip);
Herbert Xua754bd52019-12-23 16:13:51 +0800280
281MODULE_LICENSE("GPL");