blob: 2aadabd053c28045b12d9c4a0a7ba0765b92b973 [file] [log] [blame]
Juergen Grossd9d660f2014-08-28 06:44:12 +02001/*
2 * Xen SCSI backend driver
3 *
4 * Copyright (c) 2008, FUJITSU Limited
5 *
6 * Based on the blkback driver code.
7 * Adaption to kernel taget core infrastructure taken from vhost/scsi.c
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License version 2
11 * as published by the Free Software Foundation; or, when distributed
12 * separately from the Linux kernel or incorporated into other
13 * software packages, subject to the following license:
14 *
15 * Permission is hereby granted, free of charge, to any person obtaining a copy
16 * of this source file (the "Software"), to deal in the Software without
17 * restriction, including without limitation the rights to use, copy, modify,
18 * merge, publish, distribute, sublicense, and/or sell copies of the Software,
19 * and to permit persons to whom the Software is furnished to do so, subject to
20 * the following conditions:
21 *
22 * The above copyright notice and this permission notice shall be included in
23 * all copies or substantial portions of the Software.
24 *
25 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
26 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
28 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
29 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
30 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
31 * IN THE SOFTWARE.
32 */
33
Tao Chen78574872015-03-10 20:49:18 +000034#define pr_fmt(fmt) "xen-pvscsi: " fmt
35
Juergen Grossd9d660f2014-08-28 06:44:12 +020036#include <stdarg.h>
37
38#include <linux/module.h>
39#include <linux/utsname.h>
40#include <linux/interrupt.h>
41#include <linux/slab.h>
42#include <linux/wait.h>
43#include <linux/sched.h>
44#include <linux/list.h>
45#include <linux/gfp.h>
46#include <linux/delay.h>
47#include <linux/spinlock.h>
48#include <linux/configfs.h>
49
50#include <generated/utsrelease.h>
51
Bart Van Asscheba929992015-05-08 10:11:12 +020052#include <scsi/scsi_host.h> /* SG_ALL */
Juergen Grossd9d660f2014-08-28 06:44:12 +020053
54#include <target/target_core_base.h>
55#include <target/target_core_fabric.h>
Juergen Grossd9d660f2014-08-28 06:44:12 +020056
57#include <asm/hypervisor.h>
58
59#include <xen/xen.h>
60#include <xen/balloon.h>
61#include <xen/events.h>
62#include <xen/xenbus.h>
63#include <xen/grant_table.h>
64#include <xen/page.h>
65
66#include <xen/interface/grant_table.h>
67#include <xen/interface/io/vscsiif.h>
68
Juergen Grossd9d660f2014-08-28 06:44:12 +020069#define VSCSI_VERSION "v0.1"
70#define VSCSI_NAMELEN 32
71
72struct ids_tuple {
73 unsigned int hst; /* host */
74 unsigned int chn; /* channel */
75 unsigned int tgt; /* target */
76 unsigned int lun; /* LUN */
77};
78
79struct v2p_entry {
80 struct ids_tuple v; /* translate from */
81 struct scsiback_tpg *tpg; /* translate to */
82 unsigned int lun;
83 struct kref kref;
84 struct list_head l;
85};
86
87struct vscsibk_info {
88 struct xenbus_device *dev;
89
90 domid_t domid;
91 unsigned int irq;
92
93 struct vscsiif_back_ring ring;
94 int ring_error;
95
96 spinlock_t ring_lock;
97 atomic_t nr_unreplied_reqs;
98
99 spinlock_t v2p_lock;
100 struct list_head v2p_entry_lists;
101
102 wait_queue_head_t waiting_to_free;
103};
104
105/* theoretical maximum of grants for one request */
106#define VSCSI_MAX_GRANTS (SG_ALL + VSCSIIF_SG_TABLESIZE)
107
108/*
109 * VSCSI_GRANT_BATCH is the maximum number of grants to be processed in one
110 * call to map/unmap grants. Don't choose it too large, as there are arrays
111 * with VSCSI_GRANT_BATCH elements allocated on the stack.
112 */
113#define VSCSI_GRANT_BATCH 16
114
115struct vscsibk_pend {
116 uint16_t rqid;
117
118 uint8_t cmnd[VSCSIIF_MAX_COMMAND_SIZE];
119 uint8_t cmd_len;
120
121 uint8_t sc_data_direction;
122 uint16_t n_sg; /* real length of SG list */
123 uint16_t n_grants; /* SG pages and potentially SG list */
124 uint32_t data_len;
125 uint32_t result;
126
127 struct vscsibk_info *info;
128 struct v2p_entry *v2p;
129 struct scatterlist *sgl;
130
131 uint8_t sense_buffer[VSCSIIF_SENSE_BUFFERSIZE];
132
133 grant_handle_t grant_handles[VSCSI_MAX_GRANTS];
134 struct page *pages[VSCSI_MAX_GRANTS];
135
136 struct se_cmd se_cmd;
Juergen Grossd9d660f2014-08-28 06:44:12 +0200137
Bart Van Asschee3eac122017-05-23 16:48:37 -0700138 struct completion tmr_done;
Juergen Grossd9d660f2014-08-28 06:44:12 +0200139};
140
Nicholas Bellinger2dbcdf32016-01-24 22:41:50 -0800141#define VSCSI_DEFAULT_SESSION_TAGS 128
142
Juergen Grossd9d660f2014-08-28 06:44:12 +0200143struct scsiback_nexus {
144 /* Pointer to TCM session for I_T Nexus */
145 struct se_session *tvn_se_sess;
146};
147
148struct scsiback_tport {
149 /* SCSI protocol the tport is providing */
150 u8 tport_proto_id;
151 /* Binary World Wide unique Port Name for pvscsi Target port */
152 u64 tport_wwpn;
153 /* ASCII formatted WWPN for pvscsi Target port */
154 char tport_name[VSCSI_NAMELEN];
155 /* Returned by scsiback_make_tport() */
156 struct se_wwn tport_wwn;
157};
158
159struct scsiback_tpg {
160 /* scsiback port target portal group tag for TCM */
161 u16 tport_tpgt;
162 /* track number of TPG Port/Lun Links wrt explicit I_T Nexus shutdown */
163 int tv_tpg_port_count;
164 /* xen-pvscsi references to tpg_nexus, protected by tv_tpg_mutex */
165 int tv_tpg_fe_count;
166 /* list for scsiback_list */
167 struct list_head tv_tpg_list;
168 /* Used to protect access for tpg_nexus */
169 struct mutex tv_tpg_mutex;
170 /* Pointer to the TCM pvscsi I_T Nexus for this TPG endpoint */
171 struct scsiback_nexus *tpg_nexus;
172 /* Pointer back to scsiback_tport */
173 struct scsiback_tport *tport;
174 /* Returned by scsiback_make_tpg() */
175 struct se_portal_group se_tpg;
176 /* alias used in xenstore */
177 char param_alias[VSCSI_NAMELEN];
178 /* list of info structures related to this target portal group */
179 struct list_head info_list;
180};
181
182#define SCSIBACK_INVALID_HANDLE (~0)
183
184static bool log_print_stat;
185module_param(log_print_stat, bool, 0644);
186
187static int scsiback_max_buffer_pages = 1024;
188module_param_named(max_buffer_pages, scsiback_max_buffer_pages, int, 0644);
189MODULE_PARM_DESC(max_buffer_pages,
190"Maximum number of free pages to keep in backend buffer");
191
Juergen Grossd9d660f2014-08-28 06:44:12 +0200192static DEFINE_SPINLOCK(free_pages_lock);
193static int free_pages_num;
194static LIST_HEAD(scsiback_free_pages);
195
196/* Global spinlock to protect scsiback TPG list */
197static DEFINE_MUTEX(scsiback_mutex);
198static LIST_HEAD(scsiback_list);
199
Juergen Grossd9d660f2014-08-28 06:44:12 +0200200static void scsiback_get(struct vscsibk_info *info)
201{
202 atomic_inc(&info->nr_unreplied_reqs);
203}
204
205static void scsiback_put(struct vscsibk_info *info)
206{
207 if (atomic_dec_and_test(&info->nr_unreplied_reqs))
208 wake_up(&info->waiting_to_free);
209}
210
211static void put_free_pages(struct page **page, int num)
212{
213 unsigned long flags;
214 int i = free_pages_num + num, n = num;
215
216 if (num == 0)
217 return;
218 if (i > scsiback_max_buffer_pages) {
219 n = min(num, i - scsiback_max_buffer_pages);
David Vrabelff4b1562015-01-08 18:06:01 +0000220 gnttab_free_pages(n, page + num - n);
Juergen Grossd9d660f2014-08-28 06:44:12 +0200221 n = num - n;
222 }
223 spin_lock_irqsave(&free_pages_lock, flags);
224 for (i = 0; i < n; i++)
225 list_add(&page[i]->lru, &scsiback_free_pages);
226 free_pages_num += n;
227 spin_unlock_irqrestore(&free_pages_lock, flags);
228}
229
230static int get_free_page(struct page **page)
231{
232 unsigned long flags;
233
234 spin_lock_irqsave(&free_pages_lock, flags);
235 if (list_empty(&scsiback_free_pages)) {
236 spin_unlock_irqrestore(&free_pages_lock, flags);
David Vrabelff4b1562015-01-08 18:06:01 +0000237 return gnttab_alloc_pages(1, page);
Juergen Grossd9d660f2014-08-28 06:44:12 +0200238 }
239 page[0] = list_first_entry(&scsiback_free_pages, struct page, lru);
240 list_del(&page[0]->lru);
241 free_pages_num--;
242 spin_unlock_irqrestore(&free_pages_lock, flags);
243 return 0;
244}
245
246static unsigned long vaddr_page(struct page *page)
247{
248 unsigned long pfn = page_to_pfn(page);
249
250 return (unsigned long)pfn_to_kaddr(pfn);
251}
252
253static unsigned long vaddr(struct vscsibk_pend *req, int seg)
254{
255 return vaddr_page(req->pages[seg]);
256}
257
258static void scsiback_print_status(char *sense_buffer, int errors,
259 struct vscsibk_pend *pending_req)
260{
261 struct scsiback_tpg *tpg = pending_req->v2p->tpg;
262
Tao Chen78574872015-03-10 20:49:18 +0000263 pr_err("[%s:%d] cmnd[0]=%02x -> st=%02x msg=%02x host=%02x drv=%02x\n",
Juergen Grossd9d660f2014-08-28 06:44:12 +0200264 tpg->tport->tport_name, pending_req->v2p->lun,
265 pending_req->cmnd[0], status_byte(errors), msg_byte(errors),
266 host_byte(errors), driver_byte(errors));
Juergen Grossd9d660f2014-08-28 06:44:12 +0200267}
268
269static void scsiback_fast_flush_area(struct vscsibk_pend *req)
270{
271 struct gnttab_unmap_grant_ref unmap[VSCSI_GRANT_BATCH];
272 struct page *pages[VSCSI_GRANT_BATCH];
273 unsigned int i, invcount = 0;
274 grant_handle_t handle;
275 int err;
276
277 kfree(req->sgl);
278 req->sgl = NULL;
279 req->n_sg = 0;
280
281 if (!req->n_grants)
282 return;
283
284 for (i = 0; i < req->n_grants; i++) {
285 handle = req->grant_handles[i];
286 if (handle == SCSIBACK_INVALID_HANDLE)
287 continue;
288 gnttab_set_unmap_op(&unmap[invcount], vaddr(req, i),
289 GNTMAP_host_map, handle);
290 req->grant_handles[i] = SCSIBACK_INVALID_HANDLE;
291 pages[invcount] = req->pages[i];
292 put_page(pages[invcount]);
293 invcount++;
294 if (invcount < VSCSI_GRANT_BATCH)
295 continue;
296 err = gnttab_unmap_refs(unmap, NULL, pages, invcount);
297 BUG_ON(err);
298 invcount = 0;
299 }
300
301 if (invcount) {
302 err = gnttab_unmap_refs(unmap, NULL, pages, invcount);
303 BUG_ON(err);
304 }
305
306 put_free_pages(req->pages, req->n_grants);
307 req->n_grants = 0;
308}
309
310static void scsiback_free_translation_entry(struct kref *kref)
311{
312 struct v2p_entry *entry = container_of(kref, struct v2p_entry, kref);
313 struct scsiback_tpg *tpg = entry->tpg;
314
315 mutex_lock(&tpg->tv_tpg_mutex);
316 tpg->tv_tpg_fe_count--;
317 mutex_unlock(&tpg->tv_tpg_mutex);
318
319 kfree(entry);
320}
321
Nicholas Bellinger2dbcdf32016-01-24 22:41:50 -0800322static void scsiback_send_response(struct vscsibk_info *info,
323 char *sense_buffer, int32_t result, uint32_t resid,
324 uint16_t rqid)
Juergen Grossd9d660f2014-08-28 06:44:12 +0200325{
326 struct vscsiif_response *ring_res;
Juergen Grossd9d660f2014-08-28 06:44:12 +0200327 int notify;
328 struct scsi_sense_hdr sshdr;
329 unsigned long flags;
330 unsigned len;
331
332 spin_lock_irqsave(&info->ring_lock, flags);
333
334 ring_res = RING_GET_RESPONSE(&info->ring, info->ring.rsp_prod_pvt);
335 info->ring.rsp_prod_pvt++;
336
337 ring_res->rslt = result;
Nicholas Bellinger2dbcdf32016-01-24 22:41:50 -0800338 ring_res->rqid = rqid;
Juergen Grossd9d660f2014-08-28 06:44:12 +0200339
340 if (sense_buffer != NULL &&
341 scsi_normalize_sense(sense_buffer, VSCSIIF_SENSE_BUFFERSIZE,
342 &sshdr)) {
343 len = min_t(unsigned, 8 + sense_buffer[7],
344 VSCSIIF_SENSE_BUFFERSIZE);
345 memcpy(ring_res->sense_buffer, sense_buffer, len);
346 ring_res->sense_len = len;
347 } else {
348 ring_res->sense_len = 0;
349 }
350
351 ring_res->residual_len = resid;
352
353 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&info->ring, notify);
354 spin_unlock_irqrestore(&info->ring_lock, flags);
355
356 if (notify)
357 notify_remote_via_irq(info->irq);
Nicholas Bellinger2dbcdf32016-01-24 22:41:50 -0800358}
359
360static void scsiback_do_resp_with_sense(char *sense_buffer, int32_t result,
361 uint32_t resid, struct vscsibk_pend *pending_req)
362{
363 scsiback_send_response(pending_req->info, sense_buffer, result,
364 resid, pending_req->rqid);
Juergen Grossd9d660f2014-08-28 06:44:12 +0200365
366 if (pending_req->v2p)
367 kref_put(&pending_req->v2p->kref,
368 scsiback_free_translation_entry);
369}
370
371static void scsiback_cmd_done(struct vscsibk_pend *pending_req)
372{
373 struct vscsibk_info *info = pending_req->info;
374 unsigned char *sense_buffer;
375 unsigned int resid;
376 int errors;
377
378 sense_buffer = pending_req->sense_buffer;
379 resid = pending_req->se_cmd.residual_count;
380 errors = pending_req->result;
381
382 if (errors && log_print_stat)
383 scsiback_print_status(sense_buffer, errors, pending_req);
384
385 scsiback_fast_flush_area(pending_req);
386 scsiback_do_resp_with_sense(sense_buffer, errors, resid, pending_req);
387 scsiback_put(info);
Nicholas Bellingerfa22e7b2016-01-24 22:44:38 -0800388 /*
389 * Drop the extra KREF_ACK reference taken by target_submit_cmd_map_sgls()
390 * ahead of scsiback_check_stop_free() -> transport_generic_free_cmd()
391 * final se_cmd->cmd_kref put.
392 */
393 target_put_sess_cmd(&pending_req->se_cmd);
Juergen Grossd9d660f2014-08-28 06:44:12 +0200394}
395
396static void scsiback_cmd_exec(struct vscsibk_pend *pending_req)
397{
398 struct se_cmd *se_cmd = &pending_req->se_cmd;
399 struct se_session *sess = pending_req->v2p->tpg->tpg_nexus->tvn_se_sess;
400 int rc;
401
Juergen Grossd9d660f2014-08-28 06:44:12 +0200402 scsiback_get(pending_req->info);
Bart Van Assche649ee052015-04-14 13:26:44 +0200403 se_cmd->tag = pending_req->rqid;
Juergen Grossd9d660f2014-08-28 06:44:12 +0200404 rc = target_submit_cmd_map_sgls(se_cmd, sess, pending_req->cmnd,
405 pending_req->sense_buffer, pending_req->v2p->lun,
406 pending_req->data_len, 0,
Nicholas Bellingerfa22e7b2016-01-24 22:44:38 -0800407 pending_req->sc_data_direction, TARGET_SCF_ACK_KREF,
Juergen Grossd9d660f2014-08-28 06:44:12 +0200408 pending_req->sgl, pending_req->n_sg,
409 NULL, 0, NULL, 0);
410 if (rc < 0) {
411 transport_send_check_condition_and_sense(se_cmd,
412 TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE, 0);
413 transport_generic_free_cmd(se_cmd, 0);
414 }
415}
416
417static int scsiback_gnttab_data_map_batch(struct gnttab_map_grant_ref *map,
418 struct page **pg, grant_handle_t *grant, int cnt)
419{
420 int err, i;
421
422 if (!cnt)
423 return 0;
424
425 err = gnttab_map_refs(map, NULL, pg, cnt);
426 BUG_ON(err);
427 for (i = 0; i < cnt; i++) {
428 if (unlikely(map[i].status != GNTST_okay)) {
Tao Chen78574872015-03-10 20:49:18 +0000429 pr_err("invalid buffer -- could not remap it\n");
Juergen Grossd9d660f2014-08-28 06:44:12 +0200430 map[i].handle = SCSIBACK_INVALID_HANDLE;
431 err = -ENOMEM;
432 } else {
433 get_page(pg[i]);
434 }
435 grant[i] = map[i].handle;
436 }
437 return err;
438}
439
440static int scsiback_gnttab_data_map_list(struct vscsibk_pend *pending_req,
441 struct scsiif_request_segment *seg, struct page **pg,
442 grant_handle_t *grant, int cnt, u32 flags)
443{
444 int mapcount = 0, i, err = 0;
445 struct gnttab_map_grant_ref map[VSCSI_GRANT_BATCH];
446 struct vscsibk_info *info = pending_req->info;
447
448 for (i = 0; i < cnt; i++) {
449 if (get_free_page(pg + mapcount)) {
450 put_free_pages(pg, mapcount);
Tao Chen78574872015-03-10 20:49:18 +0000451 pr_err("no grant page\n");
Juergen Grossd9d660f2014-08-28 06:44:12 +0200452 return -ENOMEM;
453 }
454 gnttab_set_map_op(&map[mapcount], vaddr_page(pg[mapcount]),
455 flags, seg[i].gref, info->domid);
456 mapcount++;
457 if (mapcount < VSCSI_GRANT_BATCH)
458 continue;
459 err = scsiback_gnttab_data_map_batch(map, pg, grant, mapcount);
460 pg += mapcount;
461 grant += mapcount;
462 pending_req->n_grants += mapcount;
463 if (err)
464 return err;
465 mapcount = 0;
466 }
467 err = scsiback_gnttab_data_map_batch(map, pg, grant, mapcount);
468 pending_req->n_grants += mapcount;
469 return err;
470}
471
472static int scsiback_gnttab_data_map(struct vscsiif_request *ring_req,
473 struct vscsibk_pend *pending_req)
474{
475 u32 flags;
476 int i, err, n_segs, i_seg = 0;
477 struct page **pg;
478 struct scsiif_request_segment *seg;
479 unsigned long end_seg = 0;
480 unsigned int nr_segments = (unsigned int)ring_req->nr_segments;
481 unsigned int nr_sgl = 0;
482 struct scatterlist *sg;
483 grant_handle_t *grant;
484
485 pending_req->n_sg = 0;
486 pending_req->n_grants = 0;
487 pending_req->data_len = 0;
488
489 nr_segments &= ~VSCSIIF_SG_GRANT;
490 if (!nr_segments)
491 return 0;
492
493 if (nr_segments > VSCSIIF_SG_TABLESIZE) {
Tao Chen78574872015-03-10 20:49:18 +0000494 pr_debug("invalid parameter nr_seg = %d\n",
Juergen Grossd9d660f2014-08-28 06:44:12 +0200495 ring_req->nr_segments);
496 return -EINVAL;
497 }
498
499 if (ring_req->nr_segments & VSCSIIF_SG_GRANT) {
500 err = scsiback_gnttab_data_map_list(pending_req, ring_req->seg,
501 pending_req->pages, pending_req->grant_handles,
502 nr_segments, GNTMAP_host_map | GNTMAP_readonly);
503 if (err)
504 return err;
505 nr_sgl = nr_segments;
506 nr_segments = 0;
507 for (i = 0; i < nr_sgl; i++) {
508 n_segs = ring_req->seg[i].length /
509 sizeof(struct scsiif_request_segment);
510 if ((unsigned)ring_req->seg[i].offset +
511 (unsigned)ring_req->seg[i].length > PAGE_SIZE ||
512 n_segs * sizeof(struct scsiif_request_segment) !=
513 ring_req->seg[i].length)
514 return -EINVAL;
515 nr_segments += n_segs;
516 }
517 if (nr_segments > SG_ALL) {
Tao Chen78574872015-03-10 20:49:18 +0000518 pr_debug("invalid nr_seg = %d\n", nr_segments);
Juergen Grossd9d660f2014-08-28 06:44:12 +0200519 return -EINVAL;
520 }
521 }
522
Tao Chen78574872015-03-10 20:49:18 +0000523 /* free of (sgl) in fast_flush_area() */
Juergen Grossd9d660f2014-08-28 06:44:12 +0200524 pending_req->sgl = kmalloc_array(nr_segments,
525 sizeof(struct scatterlist), GFP_KERNEL);
526 if (!pending_req->sgl)
527 return -ENOMEM;
528
529 sg_init_table(pending_req->sgl, nr_segments);
530 pending_req->n_sg = nr_segments;
531
532 flags = GNTMAP_host_map;
533 if (pending_req->sc_data_direction == DMA_TO_DEVICE)
534 flags |= GNTMAP_readonly;
535
536 pg = pending_req->pages + nr_sgl;
537 grant = pending_req->grant_handles + nr_sgl;
538 if (!nr_sgl) {
539 seg = ring_req->seg;
540 err = scsiback_gnttab_data_map_list(pending_req, seg,
541 pg, grant, nr_segments, flags);
542 if (err)
543 return err;
544 } else {
545 for (i = 0; i < nr_sgl; i++) {
546 seg = (struct scsiif_request_segment *)(
547 vaddr(pending_req, i) + ring_req->seg[i].offset);
548 n_segs = ring_req->seg[i].length /
549 sizeof(struct scsiif_request_segment);
550 err = scsiback_gnttab_data_map_list(pending_req, seg,
551 pg, grant, n_segs, flags);
552 if (err)
553 return err;
554 pg += n_segs;
555 grant += n_segs;
556 }
557 end_seg = vaddr(pending_req, 0) + ring_req->seg[0].offset;
558 seg = (struct scsiif_request_segment *)end_seg;
559 end_seg += ring_req->seg[0].length;
560 pg = pending_req->pages + nr_sgl;
561 }
562
563 for_each_sg(pending_req->sgl, sg, nr_segments, i) {
564 sg_set_page(sg, pg[i], seg->length, seg->offset);
565 pending_req->data_len += seg->length;
566 seg++;
567 if (nr_sgl && (unsigned long)seg >= end_seg) {
568 i_seg++;
569 end_seg = vaddr(pending_req, i_seg) +
570 ring_req->seg[i_seg].offset;
571 seg = (struct scsiif_request_segment *)end_seg;
572 end_seg += ring_req->seg[i_seg].length;
573 }
574 if (sg->offset >= PAGE_SIZE ||
575 sg->length > PAGE_SIZE ||
576 sg->offset + sg->length > PAGE_SIZE)
577 return -EINVAL;
578 }
579
580 return 0;
581}
582
583static void scsiback_disconnect(struct vscsibk_info *info)
584{
585 wait_event(info->waiting_to_free,
586 atomic_read(&info->nr_unreplied_reqs) == 0);
587
588 unbind_from_irqhandler(info->irq, info);
589 info->irq = 0;
590 xenbus_unmap_ring_vfree(info->dev, info->ring.sring);
591}
592
593static void scsiback_device_action(struct vscsibk_pend *pending_req,
594 enum tcm_tmreq_table act, int tag)
595{
Juergen Grossd9d660f2014-08-28 06:44:12 +0200596 struct scsiback_tpg *tpg = pending_req->v2p->tpg;
Nicholas Bellingerfa22e7b2016-01-24 22:44:38 -0800597 struct scsiback_nexus *nexus = tpg->tpg_nexus;
Juergen Grossd9d660f2014-08-28 06:44:12 +0200598 struct se_cmd *se_cmd = &pending_req->se_cmd;
Nicholas Bellingerfa22e7b2016-01-24 22:44:38 -0800599 u64 unpacked_lun = pending_req->v2p->lun;
600 int rc, err = FAILED;
Juergen Grossd9d660f2014-08-28 06:44:12 +0200601
Bart Van Asschee3eac122017-05-23 16:48:37 -0700602 init_completion(&pending_req->tmr_done);
Juergen Grossd9d660f2014-08-28 06:44:12 +0200603
Nicholas Bellingerfa22e7b2016-01-24 22:44:38 -0800604 rc = target_submit_tmr(&pending_req->se_cmd, nexus->tvn_se_sess,
605 &pending_req->sense_buffer[0],
Bart Van Assche9f4ab182017-05-23 16:48:36 -0700606 unpacked_lun, NULL, act, GFP_KERNEL,
Nicholas Bellingerfa22e7b2016-01-24 22:44:38 -0800607 tag, TARGET_SCF_ACK_KREF);
608 if (rc)
609 goto err;
Juergen Grossd9d660f2014-08-28 06:44:12 +0200610
Bart Van Asschee3eac122017-05-23 16:48:37 -0700611 wait_for_completion(&pending_req->tmr_done);
Juergen Grossd9d660f2014-08-28 06:44:12 +0200612
613 err = (se_cmd->se_tmr_req->response == TMR_FUNCTION_COMPLETE) ?
614 SUCCESS : FAILED;
615
Juergen Grossd9d660f2014-08-28 06:44:12 +0200616 scsiback_do_resp_with_sense(NULL, err, 0, pending_req);
Bart Van Asscheaf90e842017-05-23 16:48:38 -0700617 transport_generic_free_cmd(&pending_req->se_cmd, 0);
Nicholas Bellinger2dbcdf32016-01-24 22:41:50 -0800618 return;
Bart Van Assche9f4ab182017-05-23 16:48:36 -0700619
Nicholas Bellingerfa22e7b2016-01-24 22:44:38 -0800620err:
Nicholas Bellinger2dbcdf32016-01-24 22:41:50 -0800621 scsiback_do_resp_with_sense(NULL, err, 0, pending_req);
Juergen Grossd9d660f2014-08-28 06:44:12 +0200622}
623
624/*
625 Perform virtual to physical translation
626*/
627static struct v2p_entry *scsiback_do_translation(struct vscsibk_info *info,
628 struct ids_tuple *v)
629{
630 struct v2p_entry *entry;
631 struct list_head *head = &(info->v2p_entry_lists);
632 unsigned long flags;
633
634 spin_lock_irqsave(&info->v2p_lock, flags);
635 list_for_each_entry(entry, head, l) {
636 if ((entry->v.chn == v->chn) &&
637 (entry->v.tgt == v->tgt) &&
638 (entry->v.lun == v->lun)) {
639 kref_get(&entry->kref);
640 goto out;
641 }
642 }
643 entry = NULL;
644
645out:
646 spin_unlock_irqrestore(&info->v2p_lock, flags);
647 return entry;
648}
649
Nicholas Bellinger2dbcdf32016-01-24 22:41:50 -0800650static struct vscsibk_pend *scsiback_get_pend_req(struct vscsiif_back_ring *ring,
651 struct v2p_entry *v2p)
Juergen Grossd9d660f2014-08-28 06:44:12 +0200652{
Nicholas Bellinger2dbcdf32016-01-24 22:41:50 -0800653 struct scsiback_tpg *tpg = v2p->tpg;
654 struct scsiback_nexus *nexus = tpg->tpg_nexus;
655 struct se_session *se_sess = nexus->tvn_se_sess;
656 struct vscsibk_pend *req;
Matthew Wilcox10e9cbb2018-06-12 12:05:44 -0700657 int tag, cpu, i;
Nicholas Bellinger2dbcdf32016-01-24 22:41:50 -0800658
Matthew Wilcox10e9cbb2018-06-12 12:05:44 -0700659 tag = sbitmap_queue_get(&se_sess->sess_tag_pool, &cpu);
Nicholas Bellinger2dbcdf32016-01-24 22:41:50 -0800660 if (tag < 0) {
661 pr_err("Unable to obtain tag for vscsiif_request\n");
662 return ERR_PTR(-ENOMEM);
663 }
664
665 req = &((struct vscsibk_pend *)se_sess->sess_cmd_map)[tag];
666 memset(req, 0, sizeof(*req));
667 req->se_cmd.map_tag = tag;
Matthew Wilcox10e9cbb2018-06-12 12:05:44 -0700668 req->se_cmd.map_cpu = cpu;
Nicholas Bellinger2dbcdf32016-01-24 22:41:50 -0800669
670 for (i = 0; i < VSCSI_MAX_GRANTS; i++)
671 req->grant_handles[i] = SCSIBACK_INVALID_HANDLE;
672
673 return req;
674}
675
676static struct vscsibk_pend *prepare_pending_reqs(struct vscsibk_info *info,
677 struct vscsiif_back_ring *ring,
678 struct vscsiif_request *ring_req)
679{
680 struct vscsibk_pend *pending_req;
Juergen Grossd9d660f2014-08-28 06:44:12 +0200681 struct v2p_entry *v2p;
682 struct ids_tuple vir;
683
Nicholas Bellinger2dbcdf32016-01-24 22:41:50 -0800684 /* request range check from frontend */
685 if ((ring_req->sc_data_direction != DMA_BIDIRECTIONAL) &&
686 (ring_req->sc_data_direction != DMA_TO_DEVICE) &&
687 (ring_req->sc_data_direction != DMA_FROM_DEVICE) &&
688 (ring_req->sc_data_direction != DMA_NONE)) {
689 pr_debug("invalid parameter data_dir = %d\n",
690 ring_req->sc_data_direction);
691 return ERR_PTR(-EINVAL);
692 }
693 if (ring_req->cmd_len > VSCSIIF_MAX_COMMAND_SIZE) {
694 pr_debug("invalid parameter cmd_len = %d\n",
695 ring_req->cmd_len);
696 return ERR_PTR(-EINVAL);
697 }
Juergen Grossd9d660f2014-08-28 06:44:12 +0200698
699 vir.chn = ring_req->channel;
700 vir.tgt = ring_req->id;
701 vir.lun = ring_req->lun;
702
703 v2p = scsiback_do_translation(info, &vir);
704 if (!v2p) {
Tao Chen78574872015-03-10 20:49:18 +0000705 pr_debug("the v2p of (chn:%d, tgt:%d, lun:%d) doesn't exist.\n",
Nicholas Bellinger2dbcdf32016-01-24 22:41:50 -0800706 vir.chn, vir.tgt, vir.lun);
707 return ERR_PTR(-ENODEV);
Juergen Grossd9d660f2014-08-28 06:44:12 +0200708 }
Nicholas Bellinger2dbcdf32016-01-24 22:41:50 -0800709
710 pending_req = scsiback_get_pend_req(ring, v2p);
711 if (IS_ERR(pending_req)) {
712 kref_put(&v2p->kref, scsiback_free_translation_entry);
713 return ERR_PTR(-ENOMEM);
714 }
715 pending_req->rqid = ring_req->rqid;
716 pending_req->info = info;
Juergen Grossd9d660f2014-08-28 06:44:12 +0200717 pending_req->v2p = v2p;
Juergen Grossd9d660f2014-08-28 06:44:12 +0200718 pending_req->sc_data_direction = ring_req->sc_data_direction;
Juergen Grossd9d660f2014-08-28 06:44:12 +0200719 pending_req->cmd_len = ring_req->cmd_len;
Juergen Grossd9d660f2014-08-28 06:44:12 +0200720 memcpy(pending_req->cmnd, ring_req->cmnd, pending_req->cmd_len);
721
Nicholas Bellinger2dbcdf32016-01-24 22:41:50 -0800722 return pending_req;
Juergen Grossd9d660f2014-08-28 06:44:12 +0200723}
724
725static int scsiback_do_cmd_fn(struct vscsibk_info *info)
726{
727 struct vscsiif_back_ring *ring = &info->ring;
Juergen Grossfacb5732015-02-17 08:02:47 +0100728 struct vscsiif_request ring_req;
Juergen Grossd9d660f2014-08-28 06:44:12 +0200729 struct vscsibk_pend *pending_req;
730 RING_IDX rc, rp;
Nicholas Bellinger2dbcdf32016-01-24 22:41:50 -0800731 int more_to_do;
Juergen Grossd9d660f2014-08-28 06:44:12 +0200732 uint32_t result;
Juergen Grossd9d660f2014-08-28 06:44:12 +0200733
734 rc = ring->req_cons;
735 rp = ring->sring->req_prod;
736 rmb(); /* guest system is accessing ring, too */
737
738 if (RING_REQUEST_PROD_OVERFLOW(ring, rp)) {
739 rc = ring->rsp_prod_pvt;
Tao Chen78574872015-03-10 20:49:18 +0000740 pr_warn("Dom%d provided bogus ring requests (%#x - %#x = %u). Halting ring processing\n",
Juergen Grossd9d660f2014-08-28 06:44:12 +0200741 info->domid, rp, rc, rp - rc);
742 info->ring_error = 1;
743 return 0;
744 }
745
746 while ((rc != rp)) {
747 if (RING_REQUEST_CONS_OVERFLOW(ring, rc))
748 break;
Juergen Grossd9d660f2014-08-28 06:44:12 +0200749
David Vrabelbe697462015-11-16 18:02:32 +0000750 RING_COPY_REQUEST(ring, rc, &ring_req);
Juergen Grossd9d660f2014-08-28 06:44:12 +0200751 ring->req_cons = ++rc;
752
Nicholas Bellinger2dbcdf32016-01-24 22:41:50 -0800753 pending_req = prepare_pending_reqs(info, ring, &ring_req);
754 if (IS_ERR(pending_req)) {
755 switch (PTR_ERR(pending_req)) {
Juergen Grossd9d660f2014-08-28 06:44:12 +0200756 case -ENODEV:
757 result = DID_NO_CONNECT;
758 break;
759 default:
760 result = DRIVER_ERROR;
761 break;
762 }
Nicholas Bellinger2dbcdf32016-01-24 22:41:50 -0800763 scsiback_send_response(info, NULL, result << 24, 0,
764 ring_req.rqid);
Juergen Grossd9d660f2014-08-28 06:44:12 +0200765 return 1;
766 }
767
Juergen Grossfacb5732015-02-17 08:02:47 +0100768 switch (ring_req.act) {
Juergen Grossd9d660f2014-08-28 06:44:12 +0200769 case VSCSIIF_ACT_SCSI_CDB:
Juergen Grossfacb5732015-02-17 08:02:47 +0100770 if (scsiback_gnttab_data_map(&ring_req, pending_req)) {
Juergen Grossd9d660f2014-08-28 06:44:12 +0200771 scsiback_fast_flush_area(pending_req);
772 scsiback_do_resp_with_sense(NULL,
Nicholas Bellinger2dbcdf32016-01-24 22:41:50 -0800773 DRIVER_ERROR << 24, 0, pending_req);
774 transport_generic_free_cmd(&pending_req->se_cmd, 0);
Juergen Grossd9d660f2014-08-28 06:44:12 +0200775 } else {
776 scsiback_cmd_exec(pending_req);
777 }
778 break;
779 case VSCSIIF_ACT_SCSI_ABORT:
780 scsiback_device_action(pending_req, TMR_ABORT_TASK,
Juergen Grossfacb5732015-02-17 08:02:47 +0100781 ring_req.ref_rqid);
Juergen Grossd9d660f2014-08-28 06:44:12 +0200782 break;
783 case VSCSIIF_ACT_SCSI_RESET:
784 scsiback_device_action(pending_req, TMR_LUN_RESET, 0);
785 break;
786 default:
Tao Chen78574872015-03-10 20:49:18 +0000787 pr_err_ratelimited("invalid request\n");
Nicholas Bellinger2dbcdf32016-01-24 22:41:50 -0800788 scsiback_do_resp_with_sense(NULL, DRIVER_ERROR << 24, 0,
789 pending_req);
790 transport_generic_free_cmd(&pending_req->se_cmd, 0);
Juergen Grossd9d660f2014-08-28 06:44:12 +0200791 break;
792 }
793
794 /* Yield point for this unbounded loop. */
795 cond_resched();
796 }
797
798 RING_FINAL_CHECK_FOR_REQUESTS(&info->ring, more_to_do);
799 return more_to_do;
800}
801
802static irqreturn_t scsiback_irq_fn(int irq, void *dev_id)
803{
804 struct vscsibk_info *info = dev_id;
805
806 if (info->ring_error)
807 return IRQ_HANDLED;
808
809 while (scsiback_do_cmd_fn(info))
810 cond_resched();
811
812 return IRQ_HANDLED;
813}
814
815static int scsiback_init_sring(struct vscsibk_info *info, grant_ref_t ring_ref,
816 evtchn_port_t evtchn)
817{
818 void *area;
819 struct vscsiif_sring *sring;
820 int err;
821
822 if (info->irq)
823 return -1;
824
Wei Liuccc9d902015-04-03 14:44:59 +0800825 err = xenbus_map_ring_valloc(info->dev, &ring_ref, 1, &area);
Juergen Grossd9d660f2014-08-28 06:44:12 +0200826 if (err)
827 return err;
828
829 sring = (struct vscsiif_sring *)area;
830 BACK_RING_INIT(&info->ring, sring, PAGE_SIZE);
831
832 err = bind_interdomain_evtchn_to_irq(info->domid, evtchn);
833 if (err < 0)
834 goto unmap_page;
835
836 info->irq = err;
837
838 err = request_threaded_irq(info->irq, NULL, scsiback_irq_fn,
839 IRQF_ONESHOT, "vscsiif-backend", info);
840 if (err)
841 goto free_irq;
842
843 return 0;
844
845free_irq:
846 unbind_from_irqhandler(info->irq, info);
847 info->irq = 0;
848unmap_page:
849 xenbus_unmap_ring_vfree(info->dev, area);
850
851 return err;
852}
853
854static int scsiback_map(struct vscsibk_info *info)
855{
856 struct xenbus_device *dev = info->dev;
857 unsigned int ring_ref, evtchn;
858 int err;
859
860 err = xenbus_gather(XBT_NIL, dev->otherend,
861 "ring-ref", "%u", &ring_ref,
862 "event-channel", "%u", &evtchn, NULL);
863 if (err) {
864 xenbus_dev_fatal(dev, err, "reading %s ring", dev->otherend);
865 return err;
866 }
867
868 return scsiback_init_sring(info, ring_ref, evtchn);
869}
870
871/*
Juergen Grossc9e2f532016-02-08 15:30:19 +0100872 Check for a translation entry being present
873*/
874static struct v2p_entry *scsiback_chk_translation_entry(
875 struct vscsibk_info *info, struct ids_tuple *v)
876{
877 struct list_head *head = &(info->v2p_entry_lists);
878 struct v2p_entry *entry;
879
880 list_for_each_entry(entry, head, l)
881 if ((entry->v.chn == v->chn) &&
882 (entry->v.tgt == v->tgt) &&
883 (entry->v.lun == v->lun))
884 return entry;
885
886 return NULL;
887}
888
889/*
Juergen Grossd9d660f2014-08-28 06:44:12 +0200890 Add a new translation entry
891*/
892static int scsiback_add_translation_entry(struct vscsibk_info *info,
893 char *phy, struct ids_tuple *v)
894{
895 int err = 0;
Juergen Grossd9d660f2014-08-28 06:44:12 +0200896 struct v2p_entry *new;
Juergen Grossd9d660f2014-08-28 06:44:12 +0200897 unsigned long flags;
898 char *lunp;
Hannes Reinecke196e2e22015-06-10 08:41:23 +0200899 unsigned long long unpacked_lun;
Nicholas Bellinger6bb82612015-05-10 19:31:10 -0700900 struct se_lun *se_lun;
Juergen Grossd9d660f2014-08-28 06:44:12 +0200901 struct scsiback_tpg *tpg_entry, *tpg = NULL;
902 char *error = "doesn't exist";
903
904 lunp = strrchr(phy, ':');
905 if (!lunp) {
Tao Chen78574872015-03-10 20:49:18 +0000906 pr_err("illegal format of physical device %s\n", phy);
Juergen Grossd9d660f2014-08-28 06:44:12 +0200907 return -EINVAL;
908 }
909 *lunp = 0;
910 lunp++;
Hannes Reinecke196e2e22015-06-10 08:41:23 +0200911 err = kstrtoull(lunp, 10, &unpacked_lun);
912 if (err < 0) {
Tao Chen78574872015-03-10 20:49:18 +0000913 pr_err("lun number not valid: %s\n", lunp);
Hannes Reinecke196e2e22015-06-10 08:41:23 +0200914 return err;
Juergen Grossd9d660f2014-08-28 06:44:12 +0200915 }
916
917 mutex_lock(&scsiback_mutex);
918 list_for_each_entry(tpg_entry, &scsiback_list, tv_tpg_list) {
919 if (!strcmp(phy, tpg_entry->tport->tport_name) ||
920 !strcmp(phy, tpg_entry->param_alias)) {
Nicholas Bellinger6bb82612015-05-10 19:31:10 -0700921 mutex_lock(&tpg_entry->se_tpg.tpg_lun_mutex);
922 hlist_for_each_entry(se_lun, &tpg_entry->se_tpg.tpg_lun_hlist, link) {
923 if (se_lun->unpacked_lun == unpacked_lun) {
924 if (!tpg_entry->tpg_nexus)
925 error = "nexus undefined";
926 else
927 tpg = tpg_entry;
928 break;
929 }
Juergen Grossd9d660f2014-08-28 06:44:12 +0200930 }
Nicholas Bellinger6bb82612015-05-10 19:31:10 -0700931 mutex_unlock(&tpg_entry->se_tpg.tpg_lun_mutex);
Juergen Grossd9d660f2014-08-28 06:44:12 +0200932 break;
933 }
934 }
935 if (tpg) {
936 mutex_lock(&tpg->tv_tpg_mutex);
937 tpg->tv_tpg_fe_count++;
938 mutex_unlock(&tpg->tv_tpg_mutex);
939 }
940 mutex_unlock(&scsiback_mutex);
941
942 if (!tpg) {
Nicholas Bellinger0fb1f142015-06-16 00:37:16 -0700943 pr_err("%s:%llu %s\n", phy, unpacked_lun, error);
Juergen Grossd9d660f2014-08-28 06:44:12 +0200944 return -ENODEV;
945 }
946
947 new = kmalloc(sizeof(struct v2p_entry), GFP_KERNEL);
948 if (new == NULL) {
949 err = -ENOMEM;
950 goto out_free;
951 }
952
953 spin_lock_irqsave(&info->v2p_lock, flags);
954
955 /* Check double assignment to identical virtual ID */
Juergen Grossc9e2f532016-02-08 15:30:19 +0100956 if (scsiback_chk_translation_entry(info, v)) {
957 pr_warn("Virtual ID is already used. Assignment was not performed.\n");
958 err = -EEXIST;
959 goto out;
Juergen Grossd9d660f2014-08-28 06:44:12 +0200960 }
961
962 /* Create a new translation entry and add to the list */
963 kref_init(&new->kref);
964 new->v = *v;
965 new->tpg = tpg;
Nicholas Bellinger6bb82612015-05-10 19:31:10 -0700966 new->lun = unpacked_lun;
Juergen Grossc9e2f532016-02-08 15:30:19 +0100967 list_add_tail(&new->l, &info->v2p_entry_lists);
Juergen Grossd9d660f2014-08-28 06:44:12 +0200968
969out:
970 spin_unlock_irqrestore(&info->v2p_lock, flags);
971
972out_free:
Juergen Grossf285aa82016-02-08 15:30:18 +0100973 if (err) {
974 mutex_lock(&tpg->tv_tpg_mutex);
975 tpg->tv_tpg_fe_count--;
976 mutex_unlock(&tpg->tv_tpg_mutex);
Juergen Grossd9d660f2014-08-28 06:44:12 +0200977 kfree(new);
Juergen Grossf285aa82016-02-08 15:30:18 +0100978 }
Juergen Grossd9d660f2014-08-28 06:44:12 +0200979
980 return err;
981}
982
983static void __scsiback_del_translation_entry(struct v2p_entry *entry)
984{
985 list_del(&entry->l);
986 kref_put(&entry->kref, scsiback_free_translation_entry);
987}
988
989/*
Juergen Grossc9e2f532016-02-08 15:30:19 +0100990 Delete the translation entry specified
Juergen Grossd9d660f2014-08-28 06:44:12 +0200991*/
992static int scsiback_del_translation_entry(struct vscsibk_info *info,
993 struct ids_tuple *v)
994{
995 struct v2p_entry *entry;
Juergen Grossd9d660f2014-08-28 06:44:12 +0200996 unsigned long flags;
Juergen Grossc9e2f532016-02-08 15:30:19 +0100997 int ret = 0;
Juergen Grossd9d660f2014-08-28 06:44:12 +0200998
999 spin_lock_irqsave(&info->v2p_lock, flags);
1000 /* Find out the translation entry specified */
Juergen Grossc9e2f532016-02-08 15:30:19 +01001001 entry = scsiback_chk_translation_entry(info, v);
1002 if (entry)
1003 __scsiback_del_translation_entry(entry);
1004 else
1005 ret = -ENOENT;
Juergen Grossd9d660f2014-08-28 06:44:12 +02001006
1007 spin_unlock_irqrestore(&info->v2p_lock, flags);
Juergen Grossc9e2f532016-02-08 15:30:19 +01001008 return ret;
Juergen Grossd9d660f2014-08-28 06:44:12 +02001009}
1010
1011static void scsiback_do_add_lun(struct vscsibk_info *info, const char *state,
Juergen Gross169e6cf2015-02-17 08:02:48 +01001012 char *phy, struct ids_tuple *vir, int try)
Juergen Grossd9d660f2014-08-28 06:44:12 +02001013{
Juergen Grossc9e2f532016-02-08 15:30:19 +01001014 struct v2p_entry *entry;
1015 unsigned long flags;
1016
1017 if (try) {
1018 spin_lock_irqsave(&info->v2p_lock, flags);
1019 entry = scsiback_chk_translation_entry(info, vir);
1020 spin_unlock_irqrestore(&info->v2p_lock, flags);
1021 if (entry)
1022 return;
1023 }
Juergen Grossd9d660f2014-08-28 06:44:12 +02001024 if (!scsiback_add_translation_entry(info, phy, vir)) {
1025 if (xenbus_printf(XBT_NIL, info->dev->nodename, state,
1026 "%d", XenbusStateInitialised)) {
Tao Chen78574872015-03-10 20:49:18 +00001027 pr_err("xenbus_printf error %s\n", state);
Juergen Grossd9d660f2014-08-28 06:44:12 +02001028 scsiback_del_translation_entry(info, vir);
1029 }
Juergen Gross169e6cf2015-02-17 08:02:48 +01001030 } else if (!try) {
Juergen Grossd9d660f2014-08-28 06:44:12 +02001031 xenbus_printf(XBT_NIL, info->dev->nodename, state,
1032 "%d", XenbusStateClosed);
1033 }
1034}
1035
1036static void scsiback_do_del_lun(struct vscsibk_info *info, const char *state,
1037 struct ids_tuple *vir)
1038{
1039 if (!scsiback_del_translation_entry(info, vir)) {
1040 if (xenbus_printf(XBT_NIL, info->dev->nodename, state,
1041 "%d", XenbusStateClosed))
Tao Chen78574872015-03-10 20:49:18 +00001042 pr_err("xenbus_printf error %s\n", state);
Juergen Grossd9d660f2014-08-28 06:44:12 +02001043 }
1044}
1045
1046#define VSCSIBACK_OP_ADD_OR_DEL_LUN 1
1047#define VSCSIBACK_OP_UPDATEDEV_STATE 2
1048
1049static void scsiback_do_1lun_hotplug(struct vscsibk_info *info, int op,
1050 char *ent)
1051{
1052 int err;
1053 struct ids_tuple vir;
1054 char *val;
1055 int device_state;
1056 char phy[VSCSI_NAMELEN];
1057 char str[64];
1058 char state[64];
1059 struct xenbus_device *dev = info->dev;
1060
1061 /* read status */
1062 snprintf(state, sizeof(state), "vscsi-devs/%s/state", ent);
1063 err = xenbus_scanf(XBT_NIL, dev->nodename, state, "%u", &device_state);
1064 if (XENBUS_EXIST_ERR(err))
1065 return;
1066
1067 /* physical SCSI device */
1068 snprintf(str, sizeof(str), "vscsi-devs/%s/p-dev", ent);
1069 val = xenbus_read(XBT_NIL, dev->nodename, str, NULL);
1070 if (IS_ERR(val)) {
1071 xenbus_printf(XBT_NIL, dev->nodename, state,
1072 "%d", XenbusStateClosed);
1073 return;
1074 }
1075 strlcpy(phy, val, VSCSI_NAMELEN);
1076 kfree(val);
1077
1078 /* virtual SCSI device */
1079 snprintf(str, sizeof(str), "vscsi-devs/%s/v-dev", ent);
1080 err = xenbus_scanf(XBT_NIL, dev->nodename, str, "%u:%u:%u:%u",
1081 &vir.hst, &vir.chn, &vir.tgt, &vir.lun);
1082 if (XENBUS_EXIST_ERR(err)) {
1083 xenbus_printf(XBT_NIL, dev->nodename, state,
1084 "%d", XenbusStateClosed);
1085 return;
1086 }
1087
1088 switch (op) {
1089 case VSCSIBACK_OP_ADD_OR_DEL_LUN:
Juergen Gross169e6cf2015-02-17 08:02:48 +01001090 switch (device_state) {
1091 case XenbusStateInitialising:
1092 scsiback_do_add_lun(info, state, phy, &vir, 0);
1093 break;
1094 case XenbusStateConnected:
1095 scsiback_do_add_lun(info, state, phy, &vir, 1);
1096 break;
1097 case XenbusStateClosing:
Juergen Grossd9d660f2014-08-28 06:44:12 +02001098 scsiback_do_del_lun(info, state, &vir);
Juergen Gross169e6cf2015-02-17 08:02:48 +01001099 break;
1100 default:
1101 break;
1102 }
Juergen Grossd9d660f2014-08-28 06:44:12 +02001103 break;
1104
1105 case VSCSIBACK_OP_UPDATEDEV_STATE:
1106 if (device_state == XenbusStateInitialised) {
1107 /* modify vscsi-devs/dev-x/state */
1108 if (xenbus_printf(XBT_NIL, dev->nodename, state,
1109 "%d", XenbusStateConnected)) {
Tao Chen78574872015-03-10 20:49:18 +00001110 pr_err("xenbus_printf error %s\n", str);
Juergen Grossd9d660f2014-08-28 06:44:12 +02001111 scsiback_del_translation_entry(info, &vir);
1112 xenbus_printf(XBT_NIL, dev->nodename, state,
1113 "%d", XenbusStateClosed);
1114 }
1115 }
1116 break;
Tao Chen78574872015-03-10 20:49:18 +00001117 /* When it is necessary, processing is added here. */
Juergen Grossd9d660f2014-08-28 06:44:12 +02001118 default:
1119 break;
1120 }
1121}
1122
1123static void scsiback_do_lun_hotplug(struct vscsibk_info *info, int op)
1124{
1125 int i;
1126 char **dir;
1127 unsigned int ndir = 0;
1128
1129 dir = xenbus_directory(XBT_NIL, info->dev->nodename, "vscsi-devs",
1130 &ndir);
1131 if (IS_ERR(dir))
1132 return;
1133
1134 for (i = 0; i < ndir; i++)
1135 scsiback_do_1lun_hotplug(info, op, dir[i]);
1136
1137 kfree(dir);
1138}
1139
1140static void scsiback_frontend_changed(struct xenbus_device *dev,
1141 enum xenbus_state frontend_state)
1142{
1143 struct vscsibk_info *info = dev_get_drvdata(&dev->dev);
1144
1145 switch (frontend_state) {
1146 case XenbusStateInitialising:
1147 break;
1148
1149 case XenbusStateInitialised:
1150 if (scsiback_map(info))
1151 break;
1152
1153 scsiback_do_lun_hotplug(info, VSCSIBACK_OP_ADD_OR_DEL_LUN);
1154 xenbus_switch_state(dev, XenbusStateConnected);
1155 break;
1156
1157 case XenbusStateConnected:
1158 scsiback_do_lun_hotplug(info, VSCSIBACK_OP_UPDATEDEV_STATE);
1159
1160 if (dev->state == XenbusStateConnected)
1161 break;
1162
1163 xenbus_switch_state(dev, XenbusStateConnected);
1164 break;
1165
1166 case XenbusStateClosing:
1167 if (info->irq)
1168 scsiback_disconnect(info);
1169
1170 xenbus_switch_state(dev, XenbusStateClosing);
1171 break;
1172
1173 case XenbusStateClosed:
1174 xenbus_switch_state(dev, XenbusStateClosed);
1175 if (xenbus_dev_is_online(dev))
1176 break;
1177 /* fall through if not online */
1178 case XenbusStateUnknown:
1179 device_unregister(&dev->dev);
1180 break;
1181
1182 case XenbusStateReconfiguring:
1183 scsiback_do_lun_hotplug(info, VSCSIBACK_OP_ADD_OR_DEL_LUN);
1184 xenbus_switch_state(dev, XenbusStateReconfigured);
1185
1186 break;
1187
1188 default:
1189 xenbus_dev_fatal(dev, -EINVAL, "saw state %d at frontend",
1190 frontend_state);
1191 break;
1192 }
1193}
1194
1195/*
1196 Release the translation entry specfied
1197*/
1198static void scsiback_release_translation_entry(struct vscsibk_info *info)
1199{
1200 struct v2p_entry *entry, *tmp;
1201 struct list_head *head = &(info->v2p_entry_lists);
1202 unsigned long flags;
1203
1204 spin_lock_irqsave(&info->v2p_lock, flags);
1205
1206 list_for_each_entry_safe(entry, tmp, head, l)
1207 __scsiback_del_translation_entry(entry);
1208
1209 spin_unlock_irqrestore(&info->v2p_lock, flags);
1210}
1211
1212static int scsiback_remove(struct xenbus_device *dev)
1213{
1214 struct vscsibk_info *info = dev_get_drvdata(&dev->dev);
1215
1216 if (info->irq)
1217 scsiback_disconnect(info);
1218
1219 scsiback_release_translation_entry(info);
1220
1221 dev_set_drvdata(&dev->dev, NULL);
1222
1223 return 0;
1224}
1225
1226static int scsiback_probe(struct xenbus_device *dev,
1227 const struct xenbus_device_id *id)
1228{
1229 int err;
1230
1231 struct vscsibk_info *info = kzalloc(sizeof(struct vscsibk_info),
1232 GFP_KERNEL);
1233
Tao Chen78574872015-03-10 20:49:18 +00001234 pr_debug("%s %p %d\n", __func__, dev, dev->otherend_id);
Juergen Grossd9d660f2014-08-28 06:44:12 +02001235
1236 if (!info) {
1237 xenbus_dev_fatal(dev, -ENOMEM, "allocating backend structure");
1238 return -ENOMEM;
1239 }
1240 info->dev = dev;
1241 dev_set_drvdata(&dev->dev, info);
1242
1243 info->domid = dev->otherend_id;
1244 spin_lock_init(&info->ring_lock);
1245 info->ring_error = 0;
1246 atomic_set(&info->nr_unreplied_reqs, 0);
1247 init_waitqueue_head(&info->waiting_to_free);
1248 info->dev = dev;
1249 info->irq = 0;
1250 INIT_LIST_HEAD(&info->v2p_entry_lists);
1251 spin_lock_init(&info->v2p_lock);
1252
1253 err = xenbus_printf(XBT_NIL, dev->nodename, "feature-sg-grant", "%u",
1254 SG_ALL);
1255 if (err)
1256 xenbus_dev_error(dev, err, "writing feature-sg-grant");
1257
1258 err = xenbus_switch_state(dev, XenbusStateInitWait);
1259 if (err)
1260 goto fail;
1261
1262 return 0;
1263
1264fail:
Tao Chen78574872015-03-10 20:49:18 +00001265 pr_warn("%s failed\n", __func__);
Juergen Grossd9d660f2014-08-28 06:44:12 +02001266 scsiback_remove(dev);
1267
1268 return err;
1269}
1270
1271static char *scsiback_dump_proto_id(struct scsiback_tport *tport)
1272{
1273 switch (tport->tport_proto_id) {
1274 case SCSI_PROTOCOL_SAS:
1275 return "SAS";
1276 case SCSI_PROTOCOL_FCP:
1277 return "FCP";
1278 case SCSI_PROTOCOL_ISCSI:
1279 return "iSCSI";
1280 default:
1281 break;
1282 }
1283
1284 return "Unknown";
1285}
1286
Juergen Grossd9d660f2014-08-28 06:44:12 +02001287static char *scsiback_get_fabric_wwn(struct se_portal_group *se_tpg)
1288{
1289 struct scsiback_tpg *tpg = container_of(se_tpg,
1290 struct scsiback_tpg, se_tpg);
1291 struct scsiback_tport *tport = tpg->tport;
1292
1293 return &tport->tport_name[0];
1294}
1295
1296static u16 scsiback_get_tag(struct se_portal_group *se_tpg)
1297{
1298 struct scsiback_tpg *tpg = container_of(se_tpg,
1299 struct scsiback_tpg, se_tpg);
1300 return tpg->tport_tpgt;
1301}
1302
Juergen Grossd9d660f2014-08-28 06:44:12 +02001303static struct se_wwn *
1304scsiback_make_tport(struct target_fabric_configfs *tf,
1305 struct config_group *group,
1306 const char *name)
1307{
1308 struct scsiback_tport *tport;
1309 char *ptr;
1310 u64 wwpn = 0;
1311 int off = 0;
1312
1313 tport = kzalloc(sizeof(struct scsiback_tport), GFP_KERNEL);
1314 if (!tport)
1315 return ERR_PTR(-ENOMEM);
1316
1317 tport->tport_wwpn = wwpn;
1318 /*
1319 * Determine the emulated Protocol Identifier and Target Port Name
1320 * based on the incoming configfs directory name.
1321 */
1322 ptr = strstr(name, "naa.");
1323 if (ptr) {
1324 tport->tport_proto_id = SCSI_PROTOCOL_SAS;
1325 goto check_len;
1326 }
1327 ptr = strstr(name, "fc.");
1328 if (ptr) {
1329 tport->tport_proto_id = SCSI_PROTOCOL_FCP;
1330 off = 3; /* Skip over "fc." */
1331 goto check_len;
1332 }
1333 ptr = strstr(name, "iqn.");
1334 if (ptr) {
1335 tport->tport_proto_id = SCSI_PROTOCOL_ISCSI;
1336 goto check_len;
1337 }
1338
1339 pr_err("Unable to locate prefix for emulated Target Port: %s\n", name);
1340 kfree(tport);
1341 return ERR_PTR(-EINVAL);
1342
1343check_len:
1344 if (strlen(name) >= VSCSI_NAMELEN) {
1345 pr_err("Emulated %s Address: %s, exceeds max: %d\n", name,
1346 scsiback_dump_proto_id(tport), VSCSI_NAMELEN);
1347 kfree(tport);
1348 return ERR_PTR(-EINVAL);
1349 }
1350 snprintf(&tport->tport_name[0], VSCSI_NAMELEN, "%s", &name[off]);
1351
Tao Chen78574872015-03-10 20:49:18 +00001352 pr_debug("Allocated emulated Target %s Address: %s\n",
Juergen Grossd9d660f2014-08-28 06:44:12 +02001353 scsiback_dump_proto_id(tport), name);
1354
1355 return &tport->tport_wwn;
1356}
1357
1358static void scsiback_drop_tport(struct se_wwn *wwn)
1359{
1360 struct scsiback_tport *tport = container_of(wwn,
1361 struct scsiback_tport, tport_wwn);
1362
Tao Chen78574872015-03-10 20:49:18 +00001363 pr_debug("Deallocating emulated Target %s Address: %s\n",
Juergen Grossd9d660f2014-08-28 06:44:12 +02001364 scsiback_dump_proto_id(tport), tport->tport_name);
1365
1366 kfree(tport);
1367}
1368
Juergen Grossd9d660f2014-08-28 06:44:12 +02001369static u32 scsiback_tpg_get_inst_index(struct se_portal_group *se_tpg)
1370{
1371 return 1;
1372}
1373
1374static int scsiback_check_stop_free(struct se_cmd *se_cmd)
1375{
Nicholas Bellingerfa22e7b2016-01-24 22:44:38 -08001376 return transport_generic_free_cmd(se_cmd, 0);
Juergen Grossd9d660f2014-08-28 06:44:12 +02001377}
1378
1379static void scsiback_release_cmd(struct se_cmd *se_cmd)
1380{
Matthew Wilcox83c2b542018-06-12 12:05:43 -07001381 target_free_tag(se_cmd->se_sess, se_cmd);
Juergen Grossd9d660f2014-08-28 06:44:12 +02001382}
1383
Juergen Grossd9d660f2014-08-28 06:44:12 +02001384static u32 scsiback_sess_get_index(struct se_session *se_sess)
1385{
1386 return 0;
1387}
1388
1389static int scsiback_write_pending(struct se_cmd *se_cmd)
1390{
1391 /* Go ahead and process the write immediately */
1392 target_execute_cmd(se_cmd);
1393
1394 return 0;
1395}
1396
1397static int scsiback_write_pending_status(struct se_cmd *se_cmd)
1398{
1399 return 0;
1400}
1401
1402static void scsiback_set_default_node_attrs(struct se_node_acl *nacl)
1403{
1404}
1405
Juergen Grossd9d660f2014-08-28 06:44:12 +02001406static int scsiback_get_cmd_state(struct se_cmd *se_cmd)
1407{
1408 return 0;
1409}
1410
1411static int scsiback_queue_data_in(struct se_cmd *se_cmd)
1412{
1413 struct vscsibk_pend *pending_req = container_of(se_cmd,
1414 struct vscsibk_pend, se_cmd);
1415
1416 pending_req->result = SAM_STAT_GOOD;
1417 scsiback_cmd_done(pending_req);
1418 return 0;
1419}
1420
1421static int scsiback_queue_status(struct se_cmd *se_cmd)
1422{
1423 struct vscsibk_pend *pending_req = container_of(se_cmd,
1424 struct vscsibk_pend, se_cmd);
1425
1426 if (se_cmd->sense_buffer &&
1427 ((se_cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) ||
1428 (se_cmd->se_cmd_flags & SCF_EMULATED_TASK_SENSE)))
1429 pending_req->result = (DRIVER_SENSE << 24) |
1430 SAM_STAT_CHECK_CONDITION;
1431 else
1432 pending_req->result = se_cmd->scsi_status;
1433
1434 scsiback_cmd_done(pending_req);
1435 return 0;
1436}
1437
1438static void scsiback_queue_tm_rsp(struct se_cmd *se_cmd)
1439{
Bart Van Assche9f4ab182017-05-23 16:48:36 -07001440 struct vscsibk_pend *pending_req = container_of(se_cmd,
1441 struct vscsibk_pend, se_cmd);
Juergen Grossd9d660f2014-08-28 06:44:12 +02001442
Bart Van Asschee3eac122017-05-23 16:48:37 -07001443 complete(&pending_req->tmr_done);
Juergen Grossd9d660f2014-08-28 06:44:12 +02001444}
1445
1446static void scsiback_aborted_task(struct se_cmd *se_cmd)
1447{
1448}
1449
Christoph Hellwig2eafd722015-10-03 15:32:55 +02001450static ssize_t scsiback_tpg_param_alias_show(struct config_item *item,
Juergen Grossd9d660f2014-08-28 06:44:12 +02001451 char *page)
1452{
Christoph Hellwig2eafd722015-10-03 15:32:55 +02001453 struct se_portal_group *se_tpg = param_to_tpg(item);
Juergen Grossd9d660f2014-08-28 06:44:12 +02001454 struct scsiback_tpg *tpg = container_of(se_tpg, struct scsiback_tpg,
1455 se_tpg);
1456 ssize_t rb;
1457
1458 mutex_lock(&tpg->tv_tpg_mutex);
1459 rb = snprintf(page, PAGE_SIZE, "%s\n", tpg->param_alias);
1460 mutex_unlock(&tpg->tv_tpg_mutex);
1461
1462 return rb;
1463}
1464
Christoph Hellwig2eafd722015-10-03 15:32:55 +02001465static ssize_t scsiback_tpg_param_alias_store(struct config_item *item,
Juergen Grossd9d660f2014-08-28 06:44:12 +02001466 const char *page, size_t count)
1467{
Christoph Hellwig2eafd722015-10-03 15:32:55 +02001468 struct se_portal_group *se_tpg = param_to_tpg(item);
Juergen Grossd9d660f2014-08-28 06:44:12 +02001469 struct scsiback_tpg *tpg = container_of(se_tpg, struct scsiback_tpg,
1470 se_tpg);
1471 int len;
1472
1473 if (strlen(page) >= VSCSI_NAMELEN) {
1474 pr_err("param alias: %s, exceeds max: %d\n", page,
1475 VSCSI_NAMELEN);
1476 return -EINVAL;
1477 }
1478
1479 mutex_lock(&tpg->tv_tpg_mutex);
1480 len = snprintf(tpg->param_alias, VSCSI_NAMELEN, "%s", page);
1481 if (tpg->param_alias[len - 1] == '\n')
1482 tpg->param_alias[len - 1] = '\0';
1483 mutex_unlock(&tpg->tv_tpg_mutex);
1484
1485 return count;
1486}
1487
Christoph Hellwig2eafd722015-10-03 15:32:55 +02001488CONFIGFS_ATTR(scsiback_tpg_param_, alias);
Juergen Grossd9d660f2014-08-28 06:44:12 +02001489
1490static struct configfs_attribute *scsiback_param_attrs[] = {
Christoph Hellwig2eafd722015-10-03 15:32:55 +02001491 &scsiback_tpg_param_attr_alias,
Juergen Grossd9d660f2014-08-28 06:44:12 +02001492 NULL,
1493};
1494
Christoph Hellwigfb444abe2016-01-09 05:30:45 -08001495static int scsiback_alloc_sess_cb(struct se_portal_group *se_tpg,
1496 struct se_session *se_sess, void *p)
1497{
1498 struct scsiback_tpg *tpg = container_of(se_tpg,
1499 struct scsiback_tpg, se_tpg);
1500
1501 tpg->tpg_nexus = p;
1502 return 0;
1503}
1504
Juergen Grossd9d660f2014-08-28 06:44:12 +02001505static int scsiback_make_nexus(struct scsiback_tpg *tpg,
1506 const char *name)
1507{
Juergen Grossd9d660f2014-08-28 06:44:12 +02001508 struct scsiback_nexus *tv_nexus;
Christoph Hellwigfb444abe2016-01-09 05:30:45 -08001509 int ret = 0;
Juergen Grossd9d660f2014-08-28 06:44:12 +02001510
1511 mutex_lock(&tpg->tv_tpg_mutex);
1512 if (tpg->tpg_nexus) {
Juergen Grossd9d660f2014-08-28 06:44:12 +02001513 pr_debug("tpg->tpg_nexus already exists\n");
Christoph Hellwigfb444abe2016-01-09 05:30:45 -08001514 ret = -EEXIST;
1515 goto out_unlock;
Juergen Grossd9d660f2014-08-28 06:44:12 +02001516 }
Juergen Grossd9d660f2014-08-28 06:44:12 +02001517
1518 tv_nexus = kzalloc(sizeof(struct scsiback_nexus), GFP_KERNEL);
1519 if (!tv_nexus) {
Christoph Hellwigfb444abe2016-01-09 05:30:45 -08001520 ret = -ENOMEM;
1521 goto out_unlock;
Juergen Grossd9d660f2014-08-28 06:44:12 +02001522 }
Christoph Hellwigfb444abe2016-01-09 05:30:45 -08001523
Mike Christiefa834282018-08-02 12:12:23 -05001524 tv_nexus->tvn_se_sess = target_setup_session(&tpg->se_tpg,
Nicholas Bellinger2dbcdf32016-01-24 22:41:50 -08001525 VSCSI_DEFAULT_SESSION_TAGS,
1526 sizeof(struct vscsibk_pend),
Christoph Hellwigfb444abe2016-01-09 05:30:45 -08001527 TARGET_PROT_NORMAL, name,
1528 tv_nexus, scsiback_alloc_sess_cb);
Juergen Grossd9d660f2014-08-28 06:44:12 +02001529 if (IS_ERR(tv_nexus->tvn_se_sess)) {
Juergen Grossd9d660f2014-08-28 06:44:12 +02001530 kfree(tv_nexus);
Christoph Hellwigfb444abe2016-01-09 05:30:45 -08001531 ret = -ENOMEM;
1532 goto out_unlock;
Juergen Grossd9d660f2014-08-28 06:44:12 +02001533 }
Juergen Grossd9d660f2014-08-28 06:44:12 +02001534
Christoph Hellwigfb444abe2016-01-09 05:30:45 -08001535out_unlock:
Juergen Grossd9d660f2014-08-28 06:44:12 +02001536 mutex_unlock(&tpg->tv_tpg_mutex);
Christoph Hellwigfb444abe2016-01-09 05:30:45 -08001537 return ret;
Juergen Grossd9d660f2014-08-28 06:44:12 +02001538}
1539
1540static int scsiback_drop_nexus(struct scsiback_tpg *tpg)
1541{
1542 struct se_session *se_sess;
1543 struct scsiback_nexus *tv_nexus;
1544
1545 mutex_lock(&tpg->tv_tpg_mutex);
1546 tv_nexus = tpg->tpg_nexus;
1547 if (!tv_nexus) {
1548 mutex_unlock(&tpg->tv_tpg_mutex);
1549 return -ENODEV;
1550 }
1551
1552 se_sess = tv_nexus->tvn_se_sess;
1553 if (!se_sess) {
1554 mutex_unlock(&tpg->tv_tpg_mutex);
1555 return -ENODEV;
1556 }
1557
1558 if (tpg->tv_tpg_port_count != 0) {
1559 mutex_unlock(&tpg->tv_tpg_mutex);
1560 pr_err("Unable to remove xen-pvscsi I_T Nexus with active TPG port count: %d\n",
1561 tpg->tv_tpg_port_count);
1562 return -EBUSY;
1563 }
1564
1565 if (tpg->tv_tpg_fe_count != 0) {
1566 mutex_unlock(&tpg->tv_tpg_mutex);
1567 pr_err("Unable to remove xen-pvscsi I_T Nexus with active TPG frontend count: %d\n",
1568 tpg->tv_tpg_fe_count);
1569 return -EBUSY;
1570 }
1571
Tao Chen78574872015-03-10 20:49:18 +00001572 pr_debug("Removing I_T Nexus to emulated %s Initiator Port: %s\n",
Juergen Grossd9d660f2014-08-28 06:44:12 +02001573 scsiback_dump_proto_id(tpg->tport),
1574 tv_nexus->tvn_se_sess->se_node_acl->initiatorname);
1575
1576 /*
1577 * Release the SCSI I_T Nexus to the emulated xen-pvscsi Target Port
1578 */
Mike Christie25b88552018-08-02 12:12:27 -05001579 target_remove_session(se_sess);
Juergen Grossd9d660f2014-08-28 06:44:12 +02001580 tpg->tpg_nexus = NULL;
1581 mutex_unlock(&tpg->tv_tpg_mutex);
1582
1583 kfree(tv_nexus);
1584 return 0;
1585}
1586
Christoph Hellwig2eafd722015-10-03 15:32:55 +02001587static ssize_t scsiback_tpg_nexus_show(struct config_item *item, char *page)
Juergen Grossd9d660f2014-08-28 06:44:12 +02001588{
Christoph Hellwig2eafd722015-10-03 15:32:55 +02001589 struct se_portal_group *se_tpg = to_tpg(item);
Juergen Grossd9d660f2014-08-28 06:44:12 +02001590 struct scsiback_tpg *tpg = container_of(se_tpg,
1591 struct scsiback_tpg, se_tpg);
1592 struct scsiback_nexus *tv_nexus;
1593 ssize_t ret;
1594
1595 mutex_lock(&tpg->tv_tpg_mutex);
1596 tv_nexus = tpg->tpg_nexus;
1597 if (!tv_nexus) {
1598 mutex_unlock(&tpg->tv_tpg_mutex);
1599 return -ENODEV;
1600 }
1601 ret = snprintf(page, PAGE_SIZE, "%s\n",
1602 tv_nexus->tvn_se_sess->se_node_acl->initiatorname);
1603 mutex_unlock(&tpg->tv_tpg_mutex);
1604
1605 return ret;
1606}
1607
Christoph Hellwig2eafd722015-10-03 15:32:55 +02001608static ssize_t scsiback_tpg_nexus_store(struct config_item *item,
1609 const char *page, size_t count)
Juergen Grossd9d660f2014-08-28 06:44:12 +02001610{
Christoph Hellwig2eafd722015-10-03 15:32:55 +02001611 struct se_portal_group *se_tpg = to_tpg(item);
Juergen Grossd9d660f2014-08-28 06:44:12 +02001612 struct scsiback_tpg *tpg = container_of(se_tpg,
1613 struct scsiback_tpg, se_tpg);
1614 struct scsiback_tport *tport_wwn = tpg->tport;
1615 unsigned char i_port[VSCSI_NAMELEN], *ptr, *port_ptr;
1616 int ret;
1617 /*
Tao Chen78574872015-03-10 20:49:18 +00001618 * Shutdown the active I_T nexus if 'NULL' is passed.
Juergen Grossd9d660f2014-08-28 06:44:12 +02001619 */
1620 if (!strncmp(page, "NULL", 4)) {
1621 ret = scsiback_drop_nexus(tpg);
1622 return (!ret) ? count : ret;
1623 }
1624 /*
1625 * Otherwise make sure the passed virtual Initiator port WWN matches
1626 * the fabric protocol_id set in scsiback_make_tport(), and call
1627 * scsiback_make_nexus().
1628 */
1629 if (strlen(page) >= VSCSI_NAMELEN) {
1630 pr_err("Emulated NAA Sas Address: %s, exceeds max: %d\n",
1631 page, VSCSI_NAMELEN);
1632 return -EINVAL;
1633 }
1634 snprintf(&i_port[0], VSCSI_NAMELEN, "%s", page);
1635
1636 ptr = strstr(i_port, "naa.");
1637 if (ptr) {
1638 if (tport_wwn->tport_proto_id != SCSI_PROTOCOL_SAS) {
1639 pr_err("Passed SAS Initiator Port %s does not match target port protoid: %s\n",
1640 i_port, scsiback_dump_proto_id(tport_wwn));
1641 return -EINVAL;
1642 }
1643 port_ptr = &i_port[0];
1644 goto check_newline;
1645 }
1646 ptr = strstr(i_port, "fc.");
1647 if (ptr) {
1648 if (tport_wwn->tport_proto_id != SCSI_PROTOCOL_FCP) {
1649 pr_err("Passed FCP Initiator Port %s does not match target port protoid: %s\n",
1650 i_port, scsiback_dump_proto_id(tport_wwn));
1651 return -EINVAL;
1652 }
1653 port_ptr = &i_port[3]; /* Skip over "fc." */
1654 goto check_newline;
1655 }
1656 ptr = strstr(i_port, "iqn.");
1657 if (ptr) {
1658 if (tport_wwn->tport_proto_id != SCSI_PROTOCOL_ISCSI) {
1659 pr_err("Passed iSCSI Initiator Port %s does not match target port protoid: %s\n",
1660 i_port, scsiback_dump_proto_id(tport_wwn));
1661 return -EINVAL;
1662 }
1663 port_ptr = &i_port[0];
1664 goto check_newline;
1665 }
1666 pr_err("Unable to locate prefix for emulated Initiator Port: %s\n",
1667 i_port);
1668 return -EINVAL;
1669 /*
1670 * Clear any trailing newline for the NAA WWN
1671 */
1672check_newline:
1673 if (i_port[strlen(i_port) - 1] == '\n')
1674 i_port[strlen(i_port) - 1] = '\0';
1675
1676 ret = scsiback_make_nexus(tpg, port_ptr);
1677 if (ret < 0)
1678 return ret;
1679
1680 return count;
1681}
1682
Christoph Hellwig2eafd722015-10-03 15:32:55 +02001683CONFIGFS_ATTR(scsiback_tpg_, nexus);
Juergen Grossd9d660f2014-08-28 06:44:12 +02001684
1685static struct configfs_attribute *scsiback_tpg_attrs[] = {
Christoph Hellwig2eafd722015-10-03 15:32:55 +02001686 &scsiback_tpg_attr_nexus,
Juergen Grossd9d660f2014-08-28 06:44:12 +02001687 NULL,
1688};
1689
1690static ssize_t
Christoph Hellwig2eafd722015-10-03 15:32:55 +02001691scsiback_wwn_version_show(struct config_item *item, char *page)
Juergen Grossd9d660f2014-08-28 06:44:12 +02001692{
1693 return sprintf(page, "xen-pvscsi fabric module %s on %s/%s on "
1694 UTS_RELEASE"\n",
1695 VSCSI_VERSION, utsname()->sysname, utsname()->machine);
1696}
1697
Christoph Hellwig2eafd722015-10-03 15:32:55 +02001698CONFIGFS_ATTR_RO(scsiback_wwn_, version);
Juergen Grossd9d660f2014-08-28 06:44:12 +02001699
1700static struct configfs_attribute *scsiback_wwn_attrs[] = {
Christoph Hellwig2eafd722015-10-03 15:32:55 +02001701 &scsiback_wwn_attr_version,
Juergen Grossd9d660f2014-08-28 06:44:12 +02001702 NULL,
1703};
1704
1705static char *scsiback_get_fabric_name(void)
1706{
1707 return "xen-pvscsi";
1708}
1709
1710static int scsiback_port_link(struct se_portal_group *se_tpg,
1711 struct se_lun *lun)
1712{
1713 struct scsiback_tpg *tpg = container_of(se_tpg,
1714 struct scsiback_tpg, se_tpg);
1715
1716 mutex_lock(&tpg->tv_tpg_mutex);
1717 tpg->tv_tpg_port_count++;
1718 mutex_unlock(&tpg->tv_tpg_mutex);
1719
1720 return 0;
1721}
1722
1723static void scsiback_port_unlink(struct se_portal_group *se_tpg,
1724 struct se_lun *lun)
1725{
1726 struct scsiback_tpg *tpg = container_of(se_tpg,
1727 struct scsiback_tpg, se_tpg);
1728
1729 mutex_lock(&tpg->tv_tpg_mutex);
1730 tpg->tv_tpg_port_count--;
1731 mutex_unlock(&tpg->tv_tpg_mutex);
1732}
1733
1734static struct se_portal_group *
Bart Van Asscheaa090ea2018-06-22 14:53:02 -07001735scsiback_make_tpg(struct se_wwn *wwn, const char *name)
Juergen Grossd9d660f2014-08-28 06:44:12 +02001736{
1737 struct scsiback_tport *tport = container_of(wwn,
1738 struct scsiback_tport, tport_wwn);
1739
1740 struct scsiback_tpg *tpg;
Dan Carpenter495daef2014-09-08 14:17:35 +03001741 u16 tpgt;
Juergen Grossd9d660f2014-08-28 06:44:12 +02001742 int ret;
1743
1744 if (strstr(name, "tpgt_") != name)
1745 return ERR_PTR(-EINVAL);
Dan Carpenter495daef2014-09-08 14:17:35 +03001746 ret = kstrtou16(name + 5, 10, &tpgt);
1747 if (ret)
1748 return ERR_PTR(ret);
Juergen Grossd9d660f2014-08-28 06:44:12 +02001749
1750 tpg = kzalloc(sizeof(struct scsiback_tpg), GFP_KERNEL);
1751 if (!tpg)
1752 return ERR_PTR(-ENOMEM);
1753
1754 mutex_init(&tpg->tv_tpg_mutex);
1755 INIT_LIST_HEAD(&tpg->tv_tpg_list);
1756 INIT_LIST_HEAD(&tpg->info_list);
1757 tpg->tport = tport;
1758 tpg->tport_tpgt = tpgt;
1759
Nicholas Bellingerbc0c94b2015-05-20 21:48:03 -07001760 ret = core_tpg_register(wwn, &tpg->se_tpg, tport->tport_proto_id);
Juergen Grossd9d660f2014-08-28 06:44:12 +02001761 if (ret < 0) {
1762 kfree(tpg);
1763 return NULL;
1764 }
1765 mutex_lock(&scsiback_mutex);
1766 list_add_tail(&tpg->tv_tpg_list, &scsiback_list);
1767 mutex_unlock(&scsiback_mutex);
1768
1769 return &tpg->se_tpg;
1770}
1771
1772static void scsiback_drop_tpg(struct se_portal_group *se_tpg)
1773{
1774 struct scsiback_tpg *tpg = container_of(se_tpg,
1775 struct scsiback_tpg, se_tpg);
1776
1777 mutex_lock(&scsiback_mutex);
1778 list_del(&tpg->tv_tpg_list);
1779 mutex_unlock(&scsiback_mutex);
1780 /*
1781 * Release the virtual I_T Nexus for this xen-pvscsi TPG
1782 */
1783 scsiback_drop_nexus(tpg);
1784 /*
Tao Chen78574872015-03-10 20:49:18 +00001785 * Deregister the se_tpg from TCM.
Juergen Grossd9d660f2014-08-28 06:44:12 +02001786 */
1787 core_tpg_deregister(se_tpg);
1788 kfree(tpg);
1789}
1790
1791static int scsiback_check_true(struct se_portal_group *se_tpg)
1792{
1793 return 1;
1794}
1795
1796static int scsiback_check_false(struct se_portal_group *se_tpg)
1797{
1798 return 0;
1799}
1800
Christoph Hellwig9ac89282015-04-08 20:01:35 +02001801static const struct target_core_fabric_ops scsiback_ops = {
1802 .module = THIS_MODULE,
1803 .name = "xen-pvscsi",
Juergen Grossd9d660f2014-08-28 06:44:12 +02001804 .get_fabric_name = scsiback_get_fabric_name,
Juergen Grossd9d660f2014-08-28 06:44:12 +02001805 .tpg_get_wwn = scsiback_get_fabric_wwn,
1806 .tpg_get_tag = scsiback_get_tag,
Juergen Grossd9d660f2014-08-28 06:44:12 +02001807 .tpg_check_demo_mode = scsiback_check_true,
1808 .tpg_check_demo_mode_cache = scsiback_check_true,
1809 .tpg_check_demo_mode_write_protect = scsiback_check_false,
1810 .tpg_check_prod_mode_write_protect = scsiback_check_false,
Juergen Grossd9d660f2014-08-28 06:44:12 +02001811 .tpg_get_inst_index = scsiback_tpg_get_inst_index,
1812 .check_stop_free = scsiback_check_stop_free,
1813 .release_cmd = scsiback_release_cmd,
Juergen Grossd9d660f2014-08-28 06:44:12 +02001814 .sess_get_index = scsiback_sess_get_index,
1815 .sess_get_initiator_sid = NULL,
1816 .write_pending = scsiback_write_pending,
1817 .write_pending_status = scsiback_write_pending_status,
1818 .set_default_node_attributes = scsiback_set_default_node_attrs,
Juergen Grossd9d660f2014-08-28 06:44:12 +02001819 .get_cmd_state = scsiback_get_cmd_state,
1820 .queue_data_in = scsiback_queue_data_in,
1821 .queue_status = scsiback_queue_status,
1822 .queue_tm_rsp = scsiback_queue_tm_rsp,
1823 .aborted_task = scsiback_aborted_task,
1824 /*
1825 * Setup callers for generic logic in target_core_fabric_configfs.c
1826 */
1827 .fabric_make_wwn = scsiback_make_tport,
1828 .fabric_drop_wwn = scsiback_drop_tport,
1829 .fabric_make_tpg = scsiback_make_tpg,
1830 .fabric_drop_tpg = scsiback_drop_tpg,
1831 .fabric_post_link = scsiback_port_link,
1832 .fabric_pre_unlink = scsiback_port_unlink,
Juergen Grossd9d660f2014-08-28 06:44:12 +02001833
Christoph Hellwig9ac89282015-04-08 20:01:35 +02001834 .tfc_wwn_attrs = scsiback_wwn_attrs,
1835 .tfc_tpg_base_attrs = scsiback_tpg_attrs,
1836 .tfc_tpg_param_attrs = scsiback_param_attrs,
Juergen Grossd9d660f2014-08-28 06:44:12 +02001837};
1838
1839static const struct xenbus_device_id scsiback_ids[] = {
1840 { "vscsi" },
1841 { "" }
1842};
1843
David Vrabel95afae42014-09-08 17:30:41 +01001844static struct xenbus_driver scsiback_driver = {
1845 .ids = scsiback_ids,
Juergen Grossd9d660f2014-08-28 06:44:12 +02001846 .probe = scsiback_probe,
1847 .remove = scsiback_remove,
1848 .otherend_changed = scsiback_frontend_changed
David Vrabel95afae42014-09-08 17:30:41 +01001849};
Juergen Grossd9d660f2014-08-28 06:44:12 +02001850
Juergen Grossd9d660f2014-08-28 06:44:12 +02001851static int __init scsiback_init(void)
1852{
1853 int ret;
1854
1855 if (!xen_domain())
1856 return -ENODEV;
1857
Christoph Hellwig9ac89282015-04-08 20:01:35 +02001858 pr_debug("xen-pvscsi: fabric module %s on %s/%s on "UTS_RELEASE"\n",
1859 VSCSI_VERSION, utsname()->sysname, utsname()->machine);
1860
Juergen Grossd9d660f2014-08-28 06:44:12 +02001861 ret = xenbus_register_backend(&scsiback_driver);
1862 if (ret)
Nicholas Bellinger2dbcdf32016-01-24 22:41:50 -08001863 goto out;
Juergen Grossd9d660f2014-08-28 06:44:12 +02001864
Christoph Hellwig9ac89282015-04-08 20:01:35 +02001865 ret = target_register_template(&scsiback_ops);
Juergen Grossd9d660f2014-08-28 06:44:12 +02001866 if (ret)
1867 goto out_unregister_xenbus;
1868
1869 return 0;
1870
1871out_unregister_xenbus:
1872 xenbus_unregister_driver(&scsiback_driver);
Nicholas Bellinger2dbcdf32016-01-24 22:41:50 -08001873out:
Tao Chen78574872015-03-10 20:49:18 +00001874 pr_err("%s: error %d\n", __func__, ret);
Juergen Grossd9d660f2014-08-28 06:44:12 +02001875 return ret;
1876}
1877
1878static void __exit scsiback_exit(void)
1879{
1880 struct page *page;
1881
1882 while (free_pages_num) {
1883 if (get_free_page(&page))
1884 BUG();
David Vrabelff4b1562015-01-08 18:06:01 +00001885 gnttab_free_pages(1, &page);
Juergen Grossd9d660f2014-08-28 06:44:12 +02001886 }
Christoph Hellwig9ac89282015-04-08 20:01:35 +02001887 target_unregister_template(&scsiback_ops);
Juergen Grossd9d660f2014-08-28 06:44:12 +02001888 xenbus_unregister_driver(&scsiback_driver);
Juergen Grossd9d660f2014-08-28 06:44:12 +02001889}
1890
1891module_init(scsiback_init);
1892module_exit(scsiback_exit);
1893
1894MODULE_DESCRIPTION("Xen SCSI backend driver");
1895MODULE_LICENSE("Dual BSD/GPL");
1896MODULE_ALIAS("xen-backend:vscsi");
1897MODULE_AUTHOR("Juergen Gross <jgross@suse.com>");