blob: 47a833f3a145a86112a58afcd9052d6b284e0cbc [file] [log] [blame]
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001/*******************************************************************************
2 * Filename: target_core_rd.c
3 *
4 * This file contains the Storage Engine <-> Ramdisk transport
5 * specific functions.
6 *
Nicholas Bellinger4c762512013-09-05 15:29:12 -07007 * (c) Copyright 2003-2013 Datera, Inc.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08008 *
9 * Nicholas A. Bellinger <nab@kernel.org>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 *
25 ******************************************************************************/
26
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080027#include <linux/string.h>
28#include <linux/parser.h>
29#include <linux/timer.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080030#include <linux/slab.h>
31#include <linux/spinlock.h>
Bart Van Asscheba929992015-05-08 10:11:12 +020032#include <scsi/scsi_proto.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080033
34#include <target/target_core_base.h>
Christoph Hellwigc4795fb2011-11-16 09:46:48 -050035#include <target/target_core_backend.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080036
37#include "target_core_rd.h"
38
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -040039static inline struct rd_dev *RD_DEV(struct se_device *dev)
40{
41 return container_of(dev, struct rd_dev, dev);
42}
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080043
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080044static int rd_attach_hba(struct se_hba *hba, u32 host_id)
45{
46 struct rd_host *rd_host;
47
48 rd_host = kzalloc(sizeof(struct rd_host), GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -070049 if (!rd_host) {
50 pr_err("Unable to allocate memory for struct rd_host\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080051 return -ENOMEM;
52 }
53
54 rd_host->rd_host_id = host_id;
55
Andy Grover5951146d2011-07-19 10:26:37 +000056 hba->hba_ptr = rd_host;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080057
Andy Grover6708bb22011-06-08 10:36:43 -070058 pr_debug("CORE_HBA[%d] - TCM Ramdisk HBA Driver %s on"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080059 " Generic Target Core Stack %s\n", hba->hba_id,
Christoph Hellwigce8dd252015-06-19 15:14:39 +020060 RD_HBA_VERSION, TARGET_CORE_VERSION);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080061
62 return 0;
63}
64
65static void rd_detach_hba(struct se_hba *hba)
66{
67 struct rd_host *rd_host = hba->hba_ptr;
68
Andy Grover6708bb22011-06-08 10:36:43 -070069 pr_debug("CORE_HBA[%d] - Detached Ramdisk HBA: %u from"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080070 " Generic Target Core\n", hba->hba_id, rd_host->rd_host_id);
71
72 kfree(rd_host);
73 hba->hba_ptr = NULL;
74}
75
Nicholas Bellinger4442dc82014-01-07 22:40:27 +000076static u32 rd_release_sgl_table(struct rd_dev *rd_dev, struct rd_dev_sg_table *sg_table,
77 u32 sg_table_count)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080078{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080079 struct page *pg;
80 struct scatterlist *sg;
Nicholas Bellinger4442dc82014-01-07 22:40:27 +000081 u32 i, j, page_count = 0, sg_per_table;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080082
Nicholas Bellinger4442dc82014-01-07 22:40:27 +000083 for (i = 0; i < sg_table_count; i++) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080084 sg = sg_table[i].sg_table;
85 sg_per_table = sg_table[i].rd_sg_count;
86
87 for (j = 0; j < sg_per_table; j++) {
88 pg = sg_page(&sg[j]);
Andy Grover6708bb22011-06-08 10:36:43 -070089 if (pg) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080090 __free_page(pg);
91 page_count++;
92 }
93 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080094 kfree(sg);
95 }
96
Nicholas Bellinger4442dc82014-01-07 22:40:27 +000097 kfree(sg_table);
98 return page_count;
99}
100
101static void rd_release_device_space(struct rd_dev *rd_dev)
102{
103 u32 page_count;
104
105 if (!rd_dev->sg_table_array || !rd_dev->sg_table_count)
106 return;
107
108 page_count = rd_release_sgl_table(rd_dev, rd_dev->sg_table_array,
109 rd_dev->sg_table_count);
110
Andy Grover6708bb22011-06-08 10:36:43 -0700111 pr_debug("CORE_RD[%u] - Released device space for Ramdisk"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800112 " Device ID: %u, pages %u in %u tables total bytes %lu\n",
113 rd_dev->rd_host->rd_host_id, rd_dev->rd_dev_id, page_count,
114 rd_dev->sg_table_count, (unsigned long)page_count * PAGE_SIZE);
115
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800116 rd_dev->sg_table_array = NULL;
117 rd_dev->sg_table_count = 0;
118}
119
120
121/* rd_build_device_space():
122 *
123 *
124 */
Nicholas Bellinger4442dc82014-01-07 22:40:27 +0000125static int rd_allocate_sgl_table(struct rd_dev *rd_dev, struct rd_dev_sg_table *sg_table,
126 u32 total_sg_needed, unsigned char init_payload)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800127{
Nicholas Bellinger4442dc82014-01-07 22:40:27 +0000128 u32 i = 0, j, page_offset = 0, sg_per_table;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800129 u32 max_sg_per_table = (RD_MAX_ALLOCATION_SIZE /
130 sizeof(struct scatterlist));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800131 struct page *pg;
132 struct scatterlist *sg;
Nicholas Bellinger4442dc82014-01-07 22:40:27 +0000133 unsigned char *p;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800134
135 while (total_sg_needed) {
Akinobu Mitabfd9a532015-04-11 13:17:31 +0900136 unsigned int chain_entry = 0;
137
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800138 sg_per_table = (total_sg_needed > max_sg_per_table) ?
139 max_sg_per_table : total_sg_needed;
140
Akinobu Mitabfd9a532015-04-11 13:17:31 +0900141 /*
142 * Reserve extra element for chain entry
143 */
144 if (sg_per_table < total_sg_needed)
145 chain_entry = 1;
146
Akinobu Mitabfd9a532015-04-11 13:17:31 +0900147 sg = kcalloc(sg_per_table + chain_entry, sizeof(*sg),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800148 GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -0700149 if (!sg) {
150 pr_err("Unable to allocate scatterlist array"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800151 " for struct rd_dev\n");
Dan Carpenter065f9712011-03-14 04:06:03 -0700152 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800153 }
154
Akinobu Mitabfd9a532015-04-11 13:17:31 +0900155 sg_init_table(sg, sg_per_table + chain_entry);
156
Akinobu Mitabfd9a532015-04-11 13:17:31 +0900157 if (i > 0) {
158 sg_chain(sg_table[i - 1].sg_table,
159 max_sg_per_table + 1, sg);
160 }
161
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800162 sg_table[i].sg_table = sg;
163 sg_table[i].rd_sg_count = sg_per_table;
164 sg_table[i].page_start_offset = page_offset;
165 sg_table[i++].page_end_offset = (page_offset + sg_per_table)
166 - 1;
167
168 for (j = 0; j < sg_per_table; j++) {
169 pg = alloc_pages(GFP_KERNEL, 0);
Andy Grover6708bb22011-06-08 10:36:43 -0700170 if (!pg) {
171 pr_err("Unable to allocate scatterlist"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800172 " pages for struct rd_dev_sg_table\n");
Dan Carpenter065f9712011-03-14 04:06:03 -0700173 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800174 }
175 sg_assign_page(&sg[j], pg);
176 sg[j].length = PAGE_SIZE;
Nicholas Bellinger4442dc82014-01-07 22:40:27 +0000177
178 p = kmap(pg);
179 memset(p, init_payload, PAGE_SIZE);
180 kunmap(pg);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800181 }
182
183 page_offset += sg_per_table;
184 total_sg_needed -= sg_per_table;
185 }
186
Nicholas Bellinger4442dc82014-01-07 22:40:27 +0000187 return 0;
188}
189
190static int rd_build_device_space(struct rd_dev *rd_dev)
191{
192 struct rd_dev_sg_table *sg_table;
193 u32 sg_tables, total_sg_needed;
194 u32 max_sg_per_table = (RD_MAX_ALLOCATION_SIZE /
195 sizeof(struct scatterlist));
196 int rc;
197
198 if (rd_dev->rd_page_count <= 0) {
199 pr_err("Illegal page count: %u for Ramdisk device\n",
200 rd_dev->rd_page_count);
201 return -EINVAL;
202 }
203
204 /* Don't need backing pages for NULLIO */
205 if (rd_dev->rd_flags & RDF_NULLIO)
206 return 0;
207
208 total_sg_needed = rd_dev->rd_page_count;
209
210 sg_tables = (total_sg_needed / max_sg_per_table) + 1;
211
212 sg_table = kzalloc(sg_tables * sizeof(struct rd_dev_sg_table), GFP_KERNEL);
213 if (!sg_table) {
214 pr_err("Unable to allocate memory for Ramdisk"
215 " scatterlist tables\n");
216 return -ENOMEM;
217 }
218
219 rd_dev->sg_table_array = sg_table;
220 rd_dev->sg_table_count = sg_tables;
221
222 rc = rd_allocate_sgl_table(rd_dev, sg_table, total_sg_needed, 0x00);
223 if (rc)
224 return rc;
225
Andy Grover6708bb22011-06-08 10:36:43 -0700226 pr_debug("CORE_RD[%u] - Built Ramdisk Device ID: %u space of"
Nicholas Bellinger4442dc82014-01-07 22:40:27 +0000227 " %u pages in %u tables\n", rd_dev->rd_host->rd_host_id,
228 rd_dev->rd_dev_id, rd_dev->rd_page_count,
229 rd_dev->sg_table_count);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800230
231 return 0;
232}
233
Nicholas Bellingerd7e8eb52014-01-07 23:24:14 +0000234static void rd_release_prot_space(struct rd_dev *rd_dev)
235{
236 u32 page_count;
237
238 if (!rd_dev->sg_prot_array || !rd_dev->sg_prot_count)
239 return;
240
241 page_count = rd_release_sgl_table(rd_dev, rd_dev->sg_prot_array,
242 rd_dev->sg_prot_count);
243
244 pr_debug("CORE_RD[%u] - Released protection space for Ramdisk"
245 " Device ID: %u, pages %u in %u tables total bytes %lu\n",
246 rd_dev->rd_host->rd_host_id, rd_dev->rd_dev_id, page_count,
247 rd_dev->sg_table_count, (unsigned long)page_count * PAGE_SIZE);
248
249 rd_dev->sg_prot_array = NULL;
250 rd_dev->sg_prot_count = 0;
251}
252
Quinn Tran9d2e59f2014-03-28 19:05:27 -0400253static int rd_build_prot_space(struct rd_dev *rd_dev, int prot_length, int block_size)
Nicholas Bellingerd7e8eb52014-01-07 23:24:14 +0000254{
255 struct rd_dev_sg_table *sg_table;
256 u32 total_sg_needed, sg_tables;
257 u32 max_sg_per_table = (RD_MAX_ALLOCATION_SIZE /
258 sizeof(struct scatterlist));
259 int rc;
260
261 if (rd_dev->rd_flags & RDF_NULLIO)
262 return 0;
Quinn Tran9d2e59f2014-03-28 19:05:27 -0400263 /*
264 * prot_length=8byte dif data
265 * tot sg needed = rd_page_count * (PGSZ/block_size) *
266 * (prot_length/block_size) + pad
267 * PGSZ canceled each other.
268 */
269 total_sg_needed = (rd_dev->rd_page_count * prot_length / block_size) + 1;
Nicholas Bellingerd7e8eb52014-01-07 23:24:14 +0000270
271 sg_tables = (total_sg_needed / max_sg_per_table) + 1;
272
273 sg_table = kzalloc(sg_tables * sizeof(struct rd_dev_sg_table), GFP_KERNEL);
274 if (!sg_table) {
275 pr_err("Unable to allocate memory for Ramdisk protection"
276 " scatterlist tables\n");
277 return -ENOMEM;
278 }
279
280 rd_dev->sg_prot_array = sg_table;
281 rd_dev->sg_prot_count = sg_tables;
282
283 rc = rd_allocate_sgl_table(rd_dev, sg_table, total_sg_needed, 0xff);
284 if (rc)
285 return rc;
286
287 pr_debug("CORE_RD[%u] - Built Ramdisk Device ID: %u prot space of"
288 " %u pages in %u tables\n", rd_dev->rd_host->rd_host_id,
289 rd_dev->rd_dev_id, total_sg_needed, rd_dev->sg_prot_count);
290
291 return 0;
292}
293
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400294static struct se_device *rd_alloc_device(struct se_hba *hba, const char *name)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800295{
296 struct rd_dev *rd_dev;
297 struct rd_host *rd_host = hba->hba_ptr;
298
299 rd_dev = kzalloc(sizeof(struct rd_dev), GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -0700300 if (!rd_dev) {
301 pr_err("Unable to allocate memory for struct rd_dev\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800302 return NULL;
303 }
304
305 rd_dev->rd_host = rd_host;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800306
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400307 return &rd_dev->dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800308}
309
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400310static int rd_configure_device(struct se_device *dev)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800311{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400312 struct rd_dev *rd_dev = RD_DEV(dev);
313 struct rd_host *rd_host = dev->se_hba->hba_ptr;
314 int ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800315
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400316 if (!(rd_dev->rd_flags & RDF_HAS_PAGE_COUNT)) {
317 pr_debug("Missing rd_pages= parameter\n");
318 return -EINVAL;
319 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800320
Dan Carpenter065f9712011-03-14 04:06:03 -0700321 ret = rd_build_device_space(rd_dev);
322 if (ret < 0)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800323 goto fail;
324
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400325 dev->dev_attrib.hw_block_size = RD_BLOCKSIZE;
326 dev->dev_attrib.hw_max_sectors = UINT_MAX;
327 dev->dev_attrib.hw_queue_depth = RD_MAX_DEVICE_QUEUE_DEPTH;
Sagi Grimberg5dacbfc2015-07-04 14:05:24 +0300328 dev->dev_attrib.is_nonrot = 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800329
330 rd_dev->rd_dev_id = rd_host->rd_host_dev_id_count++;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800331
Christoph Hellwig8feb58d2012-03-26 04:56:41 -0400332 pr_debug("CORE_RD[%u] - Added TCM MEMCPY Ramdisk Device ID: %u of"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800333 " %u pages in %u tables, %lu total bytes\n",
Christoph Hellwig8feb58d2012-03-26 04:56:41 -0400334 rd_host->rd_host_id, rd_dev->rd_dev_id, rd_dev->rd_page_count,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800335 rd_dev->sg_table_count,
336 (unsigned long)(rd_dev->rd_page_count * PAGE_SIZE));
337
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400338 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800339
340fail:
341 rd_release_device_space(rd_dev);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400342 return ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800343}
344
Nicholas Bellinger4cc987e2015-05-19 00:03:07 -0700345static void rd_dev_call_rcu(struct rcu_head *p)
346{
347 struct se_device *dev = container_of(p, struct se_device, rcu_head);
348 struct rd_dev *rd_dev = RD_DEV(dev);
349
350 kfree(rd_dev);
351}
352
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400353static void rd_free_device(struct se_device *dev)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800354{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400355 struct rd_dev *rd_dev = RD_DEV(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800356
357 rd_release_device_space(rd_dev);
Nicholas Bellinger4cc987e2015-05-19 00:03:07 -0700358 call_rcu(&dev->rcu_head, rd_dev_call_rcu);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800359}
360
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800361static struct rd_dev_sg_table *rd_get_sg_table(struct rd_dev *rd_dev, u32 page)
362{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800363 struct rd_dev_sg_table *sg_table;
Martin Svec8f678352013-01-15 12:43:35 -0800364 u32 i, sg_per_table = (RD_MAX_ALLOCATION_SIZE /
365 sizeof(struct scatterlist));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800366
Martin Svec8f678352013-01-15 12:43:35 -0800367 i = page / sg_per_table;
368 if (i < rd_dev->sg_table_count) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800369 sg_table = &rd_dev->sg_table_array[i];
370 if ((sg_table->page_start_offset <= page) &&
371 (sg_table->page_end_offset >= page))
372 return sg_table;
373 }
374
Andy Grover6708bb22011-06-08 10:36:43 -0700375 pr_err("Unable to locate struct rd_dev_sg_table for page: %u\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800376 page);
377
378 return NULL;
379}
380
Nicholas Bellinger6e611112014-01-08 12:06:30 +0000381static struct rd_dev_sg_table *rd_get_prot_table(struct rd_dev *rd_dev, u32 page)
382{
383 struct rd_dev_sg_table *sg_table;
384 u32 i, sg_per_table = (RD_MAX_ALLOCATION_SIZE /
385 sizeof(struct scatterlist));
386
387 i = page / sg_per_table;
388 if (i < rd_dev->sg_prot_count) {
389 sg_table = &rd_dev->sg_prot_array[i];
390 if ((sg_table->page_start_offset <= page) &&
391 (sg_table->page_end_offset >= page))
392 return sg_table;
393 }
394
395 pr_err("Unable to locate struct prot rd_dev_sg_table for page: %u\n",
396 page);
397
398 return NULL;
399}
400
Sagi Grimbergf75b6fa2015-04-19 20:27:19 +0300401static sense_reason_t rd_do_prot_rw(struct se_cmd *cmd, bool is_read)
Akinobu Mita6766cc82015-04-05 23:59:38 +0900402{
403 struct se_device *se_dev = cmd->se_dev;
404 struct rd_dev *dev = RD_DEV(se_dev);
405 struct rd_dev_sg_table *prot_table;
Akinobu Mitabfd9a532015-04-11 13:17:31 +0900406 bool need_to_release = false;
Akinobu Mita6766cc82015-04-05 23:59:38 +0900407 struct scatterlist *prot_sg;
408 u32 sectors = cmd->data_length / se_dev->dev_attrib.block_size;
409 u32 prot_offset, prot_page;
Akinobu Mitabfd9a532015-04-11 13:17:31 +0900410 u32 prot_npages __maybe_unused;
Akinobu Mita6766cc82015-04-05 23:59:38 +0900411 u64 tmp;
Akinobu Mitabfd9a532015-04-11 13:17:31 +0900412 sense_reason_t rc = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Akinobu Mita6766cc82015-04-05 23:59:38 +0900413
414 tmp = cmd->t_task_lba * se_dev->prot_length;
415 prot_offset = do_div(tmp, PAGE_SIZE);
416 prot_page = tmp;
417
418 prot_table = rd_get_prot_table(dev, prot_page);
419 if (!prot_table)
420 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
421
422 prot_sg = &prot_table->sg_table[prot_page -
423 prot_table->page_start_offset];
424
Sagi Grimbergf75b6fa2015-04-19 20:27:19 +0300425 if (is_read)
426 rc = sbc_dif_verify(cmd, cmd->t_task_lba, sectors, 0,
427 prot_sg, prot_offset);
428 else
429 rc = sbc_dif_verify(cmd, cmd->t_task_lba, sectors, 0,
430 cmd->t_prot_sg, 0);
431
432 if (!rc)
433 sbc_dif_copy_prot(cmd, sectors, is_read, prot_sg, prot_offset);
434
Akinobu Mitabfd9a532015-04-11 13:17:31 +0900435 if (need_to_release)
436 kfree(prot_sg);
Akinobu Mita6766cc82015-04-05 23:59:38 +0900437
438 return rc;
439}
440
Christoph Hellwigde103c92012-11-06 12:24:09 -0800441static sense_reason_t
Nicholas Bellingera82a9532013-08-19 23:57:30 -0700442rd_execute_rw(struct se_cmd *cmd, struct scatterlist *sgl, u32 sgl_nents,
443 enum dma_data_direction data_direction)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800444{
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400445 struct se_device *se_dev = cmd->se_dev;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400446 struct rd_dev *dev = RD_DEV(se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800447 struct rd_dev_sg_table *table;
Sebastian Andrzej Siewior65b0c782011-11-30 10:48:30 +0100448 struct scatterlist *rd_sg;
449 struct sg_mapping_iter m;
Christoph Hellwig8feb58d2012-03-26 04:56:41 -0400450 u32 rd_offset;
451 u32 rd_size;
452 u32 rd_page;
Sebastian Andrzej Siewior65b0c782011-11-30 10:48:30 +0100453 u32 src_len;
Christoph Hellwig8feb58d2012-03-26 04:56:41 -0400454 u64 tmp;
Nicholas Bellinger6e611112014-01-08 12:06:30 +0000455 sense_reason_t rc;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800456
Nicholas Bellinger52c07422013-05-11 16:16:49 -0700457 if (dev->rd_flags & RDF_NULLIO) {
458 target_complete_cmd(cmd, SAM_STAT_GOOD);
459 return 0;
460 }
461
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400462 tmp = cmd->t_task_lba * se_dev->dev_attrib.block_size;
Christoph Hellwig8feb58d2012-03-26 04:56:41 -0400463 rd_offset = do_div(tmp, PAGE_SIZE);
464 rd_page = tmp;
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400465 rd_size = cmd->data_length;
Christoph Hellwig8feb58d2012-03-26 04:56:41 -0400466
467 table = rd_get_sg_table(dev, rd_page);
Andy Grover6708bb22011-06-08 10:36:43 -0700468 if (!table)
Christoph Hellwigde103c92012-11-06 12:24:09 -0800469 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800470
Christoph Hellwig8feb58d2012-03-26 04:56:41 -0400471 rd_sg = &table->sg_table[rd_page - table->page_start_offset];
Andy Grover6708bb22011-06-08 10:36:43 -0700472
Sebastian Andrzej Siewior65b0c782011-11-30 10:48:30 +0100473 pr_debug("RD[%u]: %s LBA: %llu, Size: %u Page: %u, Offset: %u\n",
Christoph Hellwig8feb58d2012-03-26 04:56:41 -0400474 dev->rd_dev_id,
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400475 data_direction == DMA_FROM_DEVICE ? "Read" : "Write",
476 cmd->t_task_lba, rd_size, rd_page, rd_offset);
Andy Grover6708bb22011-06-08 10:36:43 -0700477
Nicholas Bellinger17627422015-03-27 23:15:04 -0700478 if (cmd->prot_type && se_dev->dev_attrib.pi_prot_type &&
479 data_direction == DMA_TO_DEVICE) {
Sagi Grimbergf75b6fa2015-04-19 20:27:19 +0300480 rc = rd_do_prot_rw(cmd, false);
Nicholas Bellinger6e611112014-01-08 12:06:30 +0000481 if (rc)
482 return rc;
483 }
484
Sebastian Andrzej Siewior65b0c782011-11-30 10:48:30 +0100485 src_len = PAGE_SIZE - rd_offset;
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400486 sg_miter_start(&m, sgl, sgl_nents,
487 data_direction == DMA_FROM_DEVICE ?
Christoph Hellwig8feb58d2012-03-26 04:56:41 -0400488 SG_MITER_TO_SG : SG_MITER_FROM_SG);
489 while (rd_size) {
Sebastian Andrzej Siewior65b0c782011-11-30 10:48:30 +0100490 u32 len;
491 void *rd_addr;
Andy Grover6708bb22011-06-08 10:36:43 -0700492
Sebastian Andrzej Siewior65b0c782011-11-30 10:48:30 +0100493 sg_miter_next(&m);
Hannes Reineckebbf344e2013-02-06 14:42:28 +0100494 if (!(u32)m.length) {
495 pr_debug("RD[%u]: invalid sgl %p len %zu\n",
496 dev->rd_dev_id, m.addr, m.length);
497 sg_miter_stop(&m);
498 return TCM_INCORRECT_AMOUNT_OF_DATA;
499 }
Sebastian Andrzej Siewior65b0c782011-11-30 10:48:30 +0100500 len = min((u32)m.length, src_len);
Hannes Reineckebbf344e2013-02-06 14:42:28 +0100501 if (len > rd_size) {
502 pr_debug("RD[%u]: size underrun page %d offset %d "
503 "size %d\n", dev->rd_dev_id,
504 rd_page, rd_offset, rd_size);
505 len = rd_size;
506 }
Sebastian Andrzej Siewior65b0c782011-11-30 10:48:30 +0100507 m.consumed = len;
Andy Grover6708bb22011-06-08 10:36:43 -0700508
Sebastian Andrzej Siewior65b0c782011-11-30 10:48:30 +0100509 rd_addr = sg_virt(rd_sg) + rd_offset;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800510
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400511 if (data_direction == DMA_FROM_DEVICE)
Sebastian Andrzej Siewior65b0c782011-11-30 10:48:30 +0100512 memcpy(m.addr, rd_addr, len);
513 else
514 memcpy(rd_addr, m.addr, len);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800515
Christoph Hellwig8feb58d2012-03-26 04:56:41 -0400516 rd_size -= len;
517 if (!rd_size)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800518 continue;
519
Sebastian Andrzej Siewior65b0c782011-11-30 10:48:30 +0100520 src_len -= len;
521 if (src_len) {
522 rd_offset += len;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800523 continue;
524 }
Andy Grover6708bb22011-06-08 10:36:43 -0700525
Sebastian Andrzej Siewior65b0c782011-11-30 10:48:30 +0100526 /* rd page completed, next one please */
Christoph Hellwig8feb58d2012-03-26 04:56:41 -0400527 rd_page++;
Sebastian Andrzej Siewior65b0c782011-11-30 10:48:30 +0100528 rd_offset = 0;
529 src_len = PAGE_SIZE;
Christoph Hellwig8feb58d2012-03-26 04:56:41 -0400530 if (rd_page <= table->page_end_offset) {
Sebastian Andrzej Siewior65b0c782011-11-30 10:48:30 +0100531 rd_sg++;
532 continue;
533 }
Andy Grover6708bb22011-06-08 10:36:43 -0700534
Christoph Hellwig8feb58d2012-03-26 04:56:41 -0400535 table = rd_get_sg_table(dev, rd_page);
Sebastian Andrzej Siewior65b0c782011-11-30 10:48:30 +0100536 if (!table) {
537 sg_miter_stop(&m);
Christoph Hellwigde103c92012-11-06 12:24:09 -0800538 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800539 }
540
Sebastian Andrzej Siewior65b0c782011-11-30 10:48:30 +0100541 /* since we increment, the first sg entry is correct */
542 rd_sg = table->sg_table;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800543 }
Sebastian Andrzej Siewior65b0c782011-11-30 10:48:30 +0100544 sg_miter_stop(&m);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800545
Nicholas Bellinger17627422015-03-27 23:15:04 -0700546 if (cmd->prot_type && se_dev->dev_attrib.pi_prot_type &&
547 data_direction == DMA_FROM_DEVICE) {
Sagi Grimbergf75b6fa2015-04-19 20:27:19 +0300548 rc = rd_do_prot_rw(cmd, true);
Nicholas Bellinger6e611112014-01-08 12:06:30 +0000549 if (rc)
550 return rc;
551 }
552
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400553 target_complete_cmd(cmd, SAM_STAT_GOOD);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -0700554 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800555}
556
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800557enum {
Nicholas Bellinger52c07422013-05-11 16:16:49 -0700558 Opt_rd_pages, Opt_rd_nullio, Opt_err
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800559};
560
561static match_table_t tokens = {
562 {Opt_rd_pages, "rd_pages=%d"},
Nicholas Bellinger52c07422013-05-11 16:16:49 -0700563 {Opt_rd_nullio, "rd_nullio=%d"},
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800564 {Opt_err, NULL}
565};
566
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400567static ssize_t rd_set_configfs_dev_params(struct se_device *dev,
568 const char *page, ssize_t count)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800569{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400570 struct rd_dev *rd_dev = RD_DEV(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800571 char *orig, *ptr, *opts;
572 substring_t args[MAX_OPT_ARGS];
573 int ret = 0, arg, token;
574
575 opts = kstrdup(page, GFP_KERNEL);
576 if (!opts)
577 return -ENOMEM;
578
579 orig = opts;
580
Sebastian Andrzej Siewior90c161b2011-11-23 20:53:17 +0100581 while ((ptr = strsep(&opts, ",\n")) != NULL) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800582 if (!*ptr)
583 continue;
584
585 token = match_token(ptr, tokens, args);
586 switch (token) {
587 case Opt_rd_pages:
588 match_int(args, &arg);
589 rd_dev->rd_page_count = arg;
Andy Grover6708bb22011-06-08 10:36:43 -0700590 pr_debug("RAMDISK: Referencing Page"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800591 " Count: %u\n", rd_dev->rd_page_count);
592 rd_dev->rd_flags |= RDF_HAS_PAGE_COUNT;
593 break;
Nicholas Bellinger52c07422013-05-11 16:16:49 -0700594 case Opt_rd_nullio:
595 match_int(args, &arg);
596 if (arg != 1)
597 break;
598
599 pr_debug("RAMDISK: Setting NULLIO flag: %d\n", arg);
600 rd_dev->rd_flags |= RDF_NULLIO;
601 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800602 default:
603 break;
604 }
605 }
606
607 kfree(orig);
608 return (!ret) ? count : ret;
609}
610
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400611static ssize_t rd_show_configfs_dev_params(struct se_device *dev, char *b)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800612{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400613 struct rd_dev *rd_dev = RD_DEV(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800614
Christoph Hellwig8feb58d2012-03-26 04:56:41 -0400615 ssize_t bl = sprintf(b, "TCM RamDisk ID: %u RamDisk Makeup: rd_mcp\n",
616 rd_dev->rd_dev_id);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800617 bl += sprintf(b + bl, " PAGES/PAGE_SIZE: %u*%lu"
Nicholas Bellinger52c07422013-05-11 16:16:49 -0700618 " SG_table_count: %u nullio: %d\n", rd_dev->rd_page_count,
619 PAGE_SIZE, rd_dev->sg_table_count,
620 !!(rd_dev->rd_flags & RDF_NULLIO));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800621 return bl;
622}
623
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800624static sector_t rd_get_blocks(struct se_device *dev)
625{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400626 struct rd_dev *rd_dev = RD_DEV(dev);
627
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800628 unsigned long long blocks_long = ((rd_dev->rd_page_count * PAGE_SIZE) /
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400629 dev->dev_attrib.block_size) - 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800630
631 return blocks_long;
632}
633
Nicholas Bellingerd7e8eb52014-01-07 23:24:14 +0000634static int rd_init_prot(struct se_device *dev)
635{
636 struct rd_dev *rd_dev = RD_DEV(dev);
637
638 if (!dev->dev_attrib.pi_prot_type)
639 return 0;
640
Quinn Tran9d2e59f2014-03-28 19:05:27 -0400641 return rd_build_prot_space(rd_dev, dev->prot_length,
642 dev->dev_attrib.block_size);
Nicholas Bellingerd7e8eb52014-01-07 23:24:14 +0000643}
644
645static void rd_free_prot(struct se_device *dev)
646{
647 struct rd_dev *rd_dev = RD_DEV(dev);
648
649 rd_release_prot_space(rd_dev);
650}
651
Christoph Hellwig9e999a62012-10-07 10:55:50 -0400652static struct sbc_ops rd_sbc_ops = {
Christoph Hellwig0c2ad7d2012-06-17 18:40:52 -0400653 .execute_rw = rd_execute_rw,
654};
655
Christoph Hellwigde103c92012-11-06 12:24:09 -0800656static sense_reason_t
657rd_parse_cdb(struct se_cmd *cmd)
Christoph Hellwig0c2ad7d2012-06-17 18:40:52 -0400658{
Christoph Hellwig9e999a62012-10-07 10:55:50 -0400659 return sbc_parse_cdb(cmd, &rd_sbc_ops);
Christoph Hellwig0c2ad7d2012-06-17 18:40:52 -0400660}
661
Christoph Hellwig0a06d432015-05-10 18:14:56 +0200662static const struct target_backend_ops rd_mcp_ops = {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800663 .name = "rd_mcp",
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400664 .inquiry_prod = "RAMDISK-MCP",
665 .inquiry_rev = RD_MCP_VERSION,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800666 .attach_hba = rd_attach_hba,
667 .detach_hba = rd_detach_hba,
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400668 .alloc_device = rd_alloc_device,
669 .configure_device = rd_configure_device,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800670 .free_device = rd_free_device,
Christoph Hellwig0c2ad7d2012-06-17 18:40:52 -0400671 .parse_cdb = rd_parse_cdb,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800672 .set_configfs_dev_params = rd_set_configfs_dev_params,
673 .show_configfs_dev_params = rd_show_configfs_dev_params,
Christoph Hellwig6f23ac82012-10-07 10:55:53 -0400674 .get_device_type = sbc_get_device_type,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800675 .get_blocks = rd_get_blocks,
Nicholas Bellingerd7e8eb52014-01-07 23:24:14 +0000676 .init_prot = rd_init_prot,
677 .free_prot = rd_free_prot,
Christoph Hellwig5873c4d2015-05-10 18:14:57 +0200678 .tb_dev_attrib_attrs = sbc_attrib_attrs,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800679};
680
681int __init rd_module_init(void)
682{
Christoph Hellwig0a06d432015-05-10 18:14:56 +0200683 return transport_backend_register(&rd_mcp_ops);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800684}
685
686void rd_module_exit(void)
687{
Christoph Hellwig0a06d432015-05-10 18:14:56 +0200688 target_backend_unregister(&rd_mcp_ops);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800689}