]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - drivers/vhost/scsi.c
Merge tag 'xfs-for-linus-4.2-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git...
[mirror_ubuntu-zesty-kernel.git] / drivers / vhost / scsi.c
CommitLineData
057cbf49
NB
1/*******************************************************************************
2 * Vhost kernel TCM fabric driver for virtio SCSI initiators
3 *
4c76251e 4 * (C) Copyright 2010-2013 Datera, Inc.
057cbf49
NB
5 * (C) Copyright 2010-2012 IBM Corp.
6 *
7 * Licensed to the Linux Foundation under the General Public License (GPL) version 2.
8 *
4c76251e 9 * Authors: Nicholas A. Bellinger <nab@daterainc.com>
057cbf49
NB
10 * Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 ****************************************************************************/
23
24#include <linux/module.h>
25#include <linux/moduleparam.h>
26#include <generated/utsrelease.h>
27#include <linux/utsname.h>
28#include <linux/init.h>
29#include <linux/slab.h>
30#include <linux/kthread.h>
31#include <linux/types.h>
32#include <linux/string.h>
33#include <linux/configfs.h>
34#include <linux/ctype.h>
35#include <linux/compat.h>
36#include <linux/eventfd.h>
057cbf49 37#include <linux/fs.h>
5538d294 38#include <linux/vmalloc.h>
057cbf49
NB
39#include <linux/miscdevice.h>
40#include <asm/unaligned.h>
ba929992
BVA
41#include <scsi/scsi_common.h>
42#include <scsi/scsi_proto.h>
057cbf49
NB
43#include <target/target_core_base.h>
44#include <target/target_core_fabric.h>
45#include <target/target_core_fabric_configfs.h>
46#include <target/target_core_configfs.h>
47#include <target/configfs_macros.h>
48#include <linux/vhost.h>
057cbf49 49#include <linux/virtio_scsi.h>
9d6064a3 50#include <linux/llist.h>
1b7f390e 51#include <linux/bitmap.h>
4824d3bf 52#include <linux/percpu_ida.h>
057cbf49 53
057cbf49 54#include "vhost.h"
5012a3a3 55
1a1ff825
NB
56#define VHOST_SCSI_VERSION "v0.1"
57#define VHOST_SCSI_NAMELEN 256
58#define VHOST_SCSI_MAX_CDB_SIZE 32
59#define VHOST_SCSI_DEFAULT_TAGS 256
60#define VHOST_SCSI_PREALLOC_SGLS 2048
61#define VHOST_SCSI_PREALLOC_UPAGES 2048
62#define VHOST_SCSI_PREALLOC_PROT_SGLS 512
5012a3a3
MT
63
64struct vhost_scsi_inflight {
65 /* Wait for the flush operation to finish */
66 struct completion comp;
67 /* Refcount for the inflight reqs */
68 struct kref kref;
69};
70
1a1ff825 71struct vhost_scsi_cmd {
5012a3a3
MT
72 /* Descriptor from vhost_get_vq_desc() for virt_queue segment */
73 int tvc_vq_desc;
74 /* virtio-scsi initiator task attribute */
75 int tvc_task_attr;
79c14141
NB
76 /* virtio-scsi response incoming iovecs */
77 int tvc_in_iovs;
5012a3a3
MT
78 /* virtio-scsi initiator data direction */
79 enum dma_data_direction tvc_data_direction;
80 /* Expected data transfer length from virtio-scsi header */
81 u32 tvc_exp_data_len;
82 /* The Tag from include/linux/virtio_scsi.h:struct virtio_scsi_cmd_req */
83 u64 tvc_tag;
84 /* The number of scatterlists associated with this cmd */
85 u32 tvc_sgl_count;
e31885dd 86 u32 tvc_prot_sgl_count;
1a1ff825 87 /* Saved unpacked SCSI LUN for vhost_scsi_submission_work() */
5012a3a3
MT
88 u32 tvc_lun;
89 /* Pointer to the SGL formatted memory from virtio-scsi */
90 struct scatterlist *tvc_sgl;
b1935f68 91 struct scatterlist *tvc_prot_sgl;
3aee26b4 92 struct page **tvc_upages;
79c14141
NB
93 /* Pointer to response header iovec */
94 struct iovec *tvc_resp_iov;
5012a3a3
MT
95 /* Pointer to vhost_scsi for our device */
96 struct vhost_scsi *tvc_vhost;
97 /* Pointer to vhost_virtqueue for the cmd */
98 struct vhost_virtqueue *tvc_vq;
99 /* Pointer to vhost nexus memory */
1a1ff825 100 struct vhost_scsi_nexus *tvc_nexus;
5012a3a3
MT
101 /* The TCM I/O descriptor that is accessed via container_of() */
102 struct se_cmd tvc_se_cmd;
1a1ff825 103 /* work item used for cmwq dispatch to vhost_scsi_submission_work() */
5012a3a3
MT
104 struct work_struct work;
105 /* Copy of the incoming SCSI command descriptor block (CDB) */
1a1ff825 106 unsigned char tvc_cdb[VHOST_SCSI_MAX_CDB_SIZE];
5012a3a3
MT
107 /* Sense buffer that will be mapped into outgoing status */
108 unsigned char tvc_sense_buf[TRANSPORT_SENSE_BUFFER];
109 /* Completed commands list, serviced from vhost worker thread */
110 struct llist_node tvc_completion_list;
111 /* Used to track inflight cmd */
112 struct vhost_scsi_inflight *inflight;
113};
114
1a1ff825 115struct vhost_scsi_nexus {
5012a3a3
MT
116 /* Pointer to TCM session for I_T Nexus */
117 struct se_session *tvn_se_sess;
118};
119
1a1ff825 120struct vhost_scsi_nacl {
5012a3a3
MT
121 /* Binary World Wide unique Port Name for Vhost Initiator port */
122 u64 iport_wwpn;
123 /* ASCII formatted WWPN for Sas Initiator port */
1a1ff825
NB
124 char iport_name[VHOST_SCSI_NAMELEN];
125 /* Returned by vhost_scsi_make_nodeacl() */
5012a3a3
MT
126 struct se_node_acl se_node_acl;
127};
128
1a1ff825 129struct vhost_scsi_tpg {
5012a3a3
MT
130 /* Vhost port target portal group tag for TCM */
131 u16 tport_tpgt;
132 /* Used to track number of TPG Port/Lun Links wrt to explict I_T Nexus shutdown */
133 int tv_tpg_port_count;
134 /* Used for vhost_scsi device reference to tpg_nexus, protected by tv_tpg_mutex */
135 int tv_tpg_vhost_count;
b1d75fe5
NB
136 /* Used for enabling T10-PI with legacy devices */
137 int tv_fabric_prot_type;
1a1ff825 138 /* list for vhost_scsi_list */
5012a3a3
MT
139 struct list_head tv_tpg_list;
140 /* Used to protect access for tpg_nexus */
141 struct mutex tv_tpg_mutex;
142 /* Pointer to the TCM VHost I_T Nexus for this TPG endpoint */
1a1ff825
NB
143 struct vhost_scsi_nexus *tpg_nexus;
144 /* Pointer back to vhost_scsi_tport */
145 struct vhost_scsi_tport *tport;
146 /* Returned by vhost_scsi_make_tpg() */
5012a3a3
MT
147 struct se_portal_group se_tpg;
148 /* Pointer back to vhost_scsi, protected by tv_tpg_mutex */
149 struct vhost_scsi *vhost_scsi;
150};
151
1a1ff825 152struct vhost_scsi_tport {
5012a3a3
MT
153 /* SCSI protocol the tport is providing */
154 u8 tport_proto_id;
155 /* Binary World Wide unique Port Name for Vhost Target port */
156 u64 tport_wwpn;
157 /* ASCII formatted WWPN for Vhost Target port */
1a1ff825
NB
158 char tport_name[VHOST_SCSI_NAMELEN];
159 /* Returned by vhost_scsi_make_tport() */
5012a3a3
MT
160 struct se_wwn tport_wwn;
161};
162
1a1ff825 163struct vhost_scsi_evt {
5012a3a3
MT
164 /* event to be sent to guest */
165 struct virtio_scsi_event event;
166 /* event list, serviced from vhost worker thread */
167 struct llist_node list;
168};
057cbf49 169
101998f6
NB
170enum {
171 VHOST_SCSI_VQ_CTL = 0,
172 VHOST_SCSI_VQ_EVT = 1,
173 VHOST_SCSI_VQ_IO = 2,
174};
175
e72fd72e 176/* Note: can't set VIRTIO_F_VERSION_1 yet, since that implies ANY_LAYOUT. */
5dade710 177enum {
95e7c434 178 VHOST_SCSI_FEATURES = VHOST_FEATURES | (1ULL << VIRTIO_SCSI_F_HOTPLUG) |
664ed90e
NB
179 (1ULL << VIRTIO_SCSI_F_T10_PI) |
180 (1ULL << VIRTIO_F_ANY_LAYOUT) |
181 (1ULL << VIRTIO_F_VERSION_1)
5dade710
NB
182};
183
1b7f390e
AH
184#define VHOST_SCSI_MAX_TARGET 256
185#define VHOST_SCSI_MAX_VQ 128
a6c9af87 186#define VHOST_SCSI_MAX_EVENT 128
67e18cf9 187
3ab2e420
AH
188struct vhost_scsi_virtqueue {
189 struct vhost_virtqueue vq;
3dfbff32
MT
190 /*
191 * Reference counting for inflight reqs, used for flush operation. At
192 * each time, one reference tracks new commands submitted, while we
193 * wait for another one to reach 0.
194 */
f2f0173d 195 struct vhost_scsi_inflight inflights[2];
3dfbff32
MT
196 /*
197 * Indicate current inflight in use, protected by vq->mutex.
198 * Writers must also take dev mutex and flush under it.
199 */
f2f0173d 200 int inflight_idx;
3ab2e420
AH
201};
202
057cbf49 203struct vhost_scsi {
67e18cf9 204 /* Protected by vhost_scsi->dev.mutex */
1a1ff825 205 struct vhost_scsi_tpg **vs_tpg;
67e18cf9 206 char vs_vhost_wwpn[TRANSPORT_IQN_LEN];
67e18cf9 207
057cbf49 208 struct vhost_dev dev;
3ab2e420 209 struct vhost_scsi_virtqueue vqs[VHOST_SCSI_MAX_VQ];
057cbf49
NB
210
211 struct vhost_work vs_completion_work; /* cmd completion work item */
9d6064a3 212 struct llist_head vs_completion_list; /* cmd completion queue */
a6c9af87
AH
213
214 struct vhost_work vs_event_work; /* evt injection work item */
215 struct llist_head vs_event_list; /* evt injection queue */
216
217 bool vs_events_missed; /* any missed events, protected by vq->mutex */
218 int vs_events_nr; /* num of pending events, protected by vq->mutex */
057cbf49
NB
219};
220
9ac8928e 221static struct target_core_fabric_ops vhost_scsi_ops;
1a1ff825 222static struct workqueue_struct *vhost_scsi_workqueue;
057cbf49 223
1a1ff825
NB
224/* Global spinlock to protect vhost_scsi TPG list for vhost IOCTL access */
225static DEFINE_MUTEX(vhost_scsi_mutex);
226static LIST_HEAD(vhost_scsi_list);
057cbf49 227
b4078b5f 228static int iov_num_pages(void __user *iov_base, size_t iov_len)
765b34fd 229{
b4078b5f
NB
230 return (PAGE_ALIGN((unsigned long)iov_base + iov_len) -
231 ((unsigned long)iov_base & PAGE_MASK)) >> PAGE_SHIFT;
765b34fd
AH
232}
233
1a1ff825 234static void vhost_scsi_done_inflight(struct kref *kref)
f2f0173d
AH
235{
236 struct vhost_scsi_inflight *inflight;
237
238 inflight = container_of(kref, struct vhost_scsi_inflight, kref);
239 complete(&inflight->comp);
240}
241
1a1ff825 242static void vhost_scsi_init_inflight(struct vhost_scsi *vs,
f2f0173d
AH
243 struct vhost_scsi_inflight *old_inflight[])
244{
245 struct vhost_scsi_inflight *new_inflight;
246 struct vhost_virtqueue *vq;
247 int idx, i;
248
249 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++) {
250 vq = &vs->vqs[i].vq;
251
252 mutex_lock(&vq->mutex);
253
254 /* store old infight */
255 idx = vs->vqs[i].inflight_idx;
256 if (old_inflight)
257 old_inflight[i] = &vs->vqs[i].inflights[idx];
258
259 /* setup new infight */
260 vs->vqs[i].inflight_idx = idx ^ 1;
261 new_inflight = &vs->vqs[i].inflights[idx ^ 1];
262 kref_init(&new_inflight->kref);
263 init_completion(&new_inflight->comp);
264
265 mutex_unlock(&vq->mutex);
266 }
267}
268
269static struct vhost_scsi_inflight *
1a1ff825 270vhost_scsi_get_inflight(struct vhost_virtqueue *vq)
f2f0173d
AH
271{
272 struct vhost_scsi_inflight *inflight;
273 struct vhost_scsi_virtqueue *svq;
274
275 svq = container_of(vq, struct vhost_scsi_virtqueue, vq);
276 inflight = &svq->inflights[svq->inflight_idx];
277 kref_get(&inflight->kref);
278
279 return inflight;
280}
281
1a1ff825 282static void vhost_scsi_put_inflight(struct vhost_scsi_inflight *inflight)
f2f0173d 283{
1a1ff825 284 kref_put(&inflight->kref, vhost_scsi_done_inflight);
f2f0173d
AH
285}
286
1a1ff825 287static int vhost_scsi_check_true(struct se_portal_group *se_tpg)
057cbf49
NB
288{
289 return 1;
290}
291
1a1ff825 292static int vhost_scsi_check_false(struct se_portal_group *se_tpg)
057cbf49
NB
293{
294 return 0;
295}
296
1a1ff825 297static char *vhost_scsi_get_fabric_name(void)
057cbf49
NB
298{
299 return "vhost";
300}
301
1a1ff825 302static u8 vhost_scsi_get_fabric_proto_ident(struct se_portal_group *se_tpg)
057cbf49 303{
1a1ff825
NB
304 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
305 struct vhost_scsi_tpg, se_tpg);
306 struct vhost_scsi_tport *tport = tpg->tport;
057cbf49
NB
307
308 switch (tport->tport_proto_id) {
309 case SCSI_PROTOCOL_SAS:
310 return sas_get_fabric_proto_ident(se_tpg);
311 case SCSI_PROTOCOL_FCP:
312 return fc_get_fabric_proto_ident(se_tpg);
313 case SCSI_PROTOCOL_ISCSI:
314 return iscsi_get_fabric_proto_ident(se_tpg);
315 default:
316 pr_err("Unknown tport_proto_id: 0x%02x, using"
317 " SAS emulation\n", tport->tport_proto_id);
318 break;
319 }
320
321 return sas_get_fabric_proto_ident(se_tpg);
322}
323
1a1ff825 324static char *vhost_scsi_get_fabric_wwn(struct se_portal_group *se_tpg)
057cbf49 325{
1a1ff825
NB
326 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
327 struct vhost_scsi_tpg, se_tpg);
328 struct vhost_scsi_tport *tport = tpg->tport;
057cbf49
NB
329
330 return &tport->tport_name[0];
331}
332
1a1ff825 333static u16 vhost_scsi_get_tpgt(struct se_portal_group *se_tpg)
057cbf49 334{
1a1ff825
NB
335 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
336 struct vhost_scsi_tpg, se_tpg);
057cbf49
NB
337 return tpg->tport_tpgt;
338}
339
1a1ff825 340static u32 vhost_scsi_get_default_depth(struct se_portal_group *se_tpg)
057cbf49
NB
341{
342 return 1;
343}
344
683bd967 345static u32
1a1ff825 346vhost_scsi_get_pr_transport_id(struct se_portal_group *se_tpg,
683bd967
AH
347 struct se_node_acl *se_nacl,
348 struct t10_pr_registration *pr_reg,
349 int *format_code,
350 unsigned char *buf)
057cbf49 351{
1a1ff825
NB
352 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
353 struct vhost_scsi_tpg, se_tpg);
354 struct vhost_scsi_tport *tport = tpg->tport;
057cbf49
NB
355
356 switch (tport->tport_proto_id) {
357 case SCSI_PROTOCOL_SAS:
358 return sas_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
359 format_code, buf);
360 case SCSI_PROTOCOL_FCP:
361 return fc_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
362 format_code, buf);
363 case SCSI_PROTOCOL_ISCSI:
364 return iscsi_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
365 format_code, buf);
366 default:
367 pr_err("Unknown tport_proto_id: 0x%02x, using"
368 " SAS emulation\n", tport->tport_proto_id);
369 break;
370 }
371
372 return sas_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
373 format_code, buf);
374}
375
683bd967 376static u32
1a1ff825 377vhost_scsi_get_pr_transport_id_len(struct se_portal_group *se_tpg,
683bd967
AH
378 struct se_node_acl *se_nacl,
379 struct t10_pr_registration *pr_reg,
380 int *format_code)
057cbf49 381{
1a1ff825
NB
382 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
383 struct vhost_scsi_tpg, se_tpg);
384 struct vhost_scsi_tport *tport = tpg->tport;
057cbf49
NB
385
386 switch (tport->tport_proto_id) {
387 case SCSI_PROTOCOL_SAS:
388 return sas_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
389 format_code);
390 case SCSI_PROTOCOL_FCP:
391 return fc_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
392 format_code);
393 case SCSI_PROTOCOL_ISCSI:
394 return iscsi_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
395 format_code);
396 default:
397 pr_err("Unknown tport_proto_id: 0x%02x, using"
398 " SAS emulation\n", tport->tport_proto_id);
399 break;
400 }
401
402 return sas_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
403 format_code);
404}
405
683bd967 406static char *
1a1ff825 407vhost_scsi_parse_pr_out_transport_id(struct se_portal_group *se_tpg,
683bd967
AH
408 const char *buf,
409 u32 *out_tid_len,
410 char **port_nexus_ptr)
057cbf49 411{
1a1ff825
NB
412 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
413 struct vhost_scsi_tpg, se_tpg);
414 struct vhost_scsi_tport *tport = tpg->tport;
057cbf49
NB
415
416 switch (tport->tport_proto_id) {
417 case SCSI_PROTOCOL_SAS:
418 return sas_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
419 port_nexus_ptr);
420 case SCSI_PROTOCOL_FCP:
421 return fc_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
422 port_nexus_ptr);
423 case SCSI_PROTOCOL_ISCSI:
424 return iscsi_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
425 port_nexus_ptr);
426 default:
427 pr_err("Unknown tport_proto_id: 0x%02x, using"
428 " SAS emulation\n", tport->tport_proto_id);
429 break;
430 }
431
432 return sas_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
433 port_nexus_ptr);
434}
435
b1d75fe5
NB
436static int vhost_scsi_check_prot_fabric_only(struct se_portal_group *se_tpg)
437{
438 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
439 struct vhost_scsi_tpg, se_tpg);
440
441 return tpg->tv_fabric_prot_type;
442}
443
683bd967 444static struct se_node_acl *
1a1ff825 445vhost_scsi_alloc_fabric_acl(struct se_portal_group *se_tpg)
057cbf49 446{
1a1ff825 447 struct vhost_scsi_nacl *nacl;
057cbf49 448
1a1ff825 449 nacl = kzalloc(sizeof(struct vhost_scsi_nacl), GFP_KERNEL);
057cbf49 450 if (!nacl) {
1a1ff825 451 pr_err("Unable to allocate struct vhost_scsi_nacl\n");
057cbf49
NB
452 return NULL;
453 }
454
455 return &nacl->se_node_acl;
456}
457
683bd967 458static void
1a1ff825 459vhost_scsi_release_fabric_acl(struct se_portal_group *se_tpg,
683bd967 460 struct se_node_acl *se_nacl)
057cbf49 461{
1a1ff825
NB
462 struct vhost_scsi_nacl *nacl = container_of(se_nacl,
463 struct vhost_scsi_nacl, se_node_acl);
057cbf49
NB
464 kfree(nacl);
465}
466
1a1ff825 467static u32 vhost_scsi_tpg_get_inst_index(struct se_portal_group *se_tpg)
057cbf49
NB
468{
469 return 1;
470}
471
1a1ff825 472static void vhost_scsi_release_cmd(struct se_cmd *se_cmd)
057cbf49 473{
1a1ff825
NB
474 struct vhost_scsi_cmd *tv_cmd = container_of(se_cmd,
475 struct vhost_scsi_cmd, tvc_se_cmd);
de1419e4 476 struct se_session *se_sess = tv_cmd->tvc_nexus->tvn_se_sess;
e31885dd 477 int i;
084ed45b
NB
478
479 if (tv_cmd->tvc_sgl_count) {
084ed45b
NB
480 for (i = 0; i < tv_cmd->tvc_sgl_count; i++)
481 put_page(sg_page(&tv_cmd->tvc_sgl[i]));
d3d665a6 482 }
e31885dd
NB
483 if (tv_cmd->tvc_prot_sgl_count) {
484 for (i = 0; i < tv_cmd->tvc_prot_sgl_count; i++)
485 put_page(sg_page(&tv_cmd->tvc_prot_sgl[i]));
486 }
084ed45b 487
1a1ff825 488 vhost_scsi_put_inflight(tv_cmd->inflight);
4824d3bf 489 percpu_ida_free(&se_sess->sess_tag_pool, se_cmd->map_tag);
057cbf49
NB
490}
491
1a1ff825 492static int vhost_scsi_shutdown_session(struct se_session *se_sess)
057cbf49
NB
493{
494 return 0;
495}
496
1a1ff825 497static void vhost_scsi_close_session(struct se_session *se_sess)
057cbf49
NB
498{
499 return;
500}
501
1a1ff825 502static u32 vhost_scsi_sess_get_index(struct se_session *se_sess)
057cbf49
NB
503{
504 return 0;
505}
506
1a1ff825 507static int vhost_scsi_write_pending(struct se_cmd *se_cmd)
057cbf49
NB
508{
509 /* Go ahead and process the write immediately */
510 target_execute_cmd(se_cmd);
511 return 0;
512}
513
1a1ff825 514static int vhost_scsi_write_pending_status(struct se_cmd *se_cmd)
057cbf49
NB
515{
516 return 0;
517}
518
1a1ff825 519static void vhost_scsi_set_default_node_attrs(struct se_node_acl *nacl)
057cbf49
NB
520{
521 return;
522}
523
1a1ff825 524static u32 vhost_scsi_get_task_tag(struct se_cmd *se_cmd)
057cbf49
NB
525{
526 return 0;
527}
528
1a1ff825 529static int vhost_scsi_get_cmd_state(struct se_cmd *se_cmd)
057cbf49
NB
530{
531 return 0;
532}
533
1a1ff825 534static void vhost_scsi_complete_cmd(struct vhost_scsi_cmd *cmd)
101998f6 535{
3c63f66a 536 struct vhost_scsi *vs = cmd->tvc_vhost;
101998f6 537
3c63f66a 538 llist_add(&cmd->tvc_completion_list, &vs->vs_completion_list);
101998f6
NB
539
540 vhost_work_queue(&vs->dev, &vs->vs_completion_work);
541}
057cbf49 542
1a1ff825 543static int vhost_scsi_queue_data_in(struct se_cmd *se_cmd)
057cbf49 544{
1a1ff825
NB
545 struct vhost_scsi_cmd *cmd = container_of(se_cmd,
546 struct vhost_scsi_cmd, tvc_se_cmd);
3c63f66a 547 vhost_scsi_complete_cmd(cmd);
057cbf49
NB
548 return 0;
549}
550
1a1ff825 551static int vhost_scsi_queue_status(struct se_cmd *se_cmd)
057cbf49 552{
1a1ff825
NB
553 struct vhost_scsi_cmd *cmd = container_of(se_cmd,
554 struct vhost_scsi_cmd, tvc_se_cmd);
3c63f66a 555 vhost_scsi_complete_cmd(cmd);
057cbf49
NB
556 return 0;
557}
558
1a1ff825 559static void vhost_scsi_queue_tm_rsp(struct se_cmd *se_cmd)
057cbf49 560{
b79fafac 561 return;
057cbf49
NB
562}
563
1a1ff825 564static void vhost_scsi_aborted_task(struct se_cmd *se_cmd)
131e6abc
NB
565{
566 return;
567}
568
1a1ff825 569static void vhost_scsi_free_evt(struct vhost_scsi *vs, struct vhost_scsi_evt *evt)
a6c9af87
AH
570{
571 vs->vs_events_nr--;
572 kfree(evt);
573}
574
1a1ff825
NB
575static struct vhost_scsi_evt *
576vhost_scsi_allocate_evt(struct vhost_scsi *vs,
683bd967 577 u32 event, u32 reason)
a6c9af87 578{
3ab2e420 579 struct vhost_virtqueue *vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
1a1ff825 580 struct vhost_scsi_evt *evt;
a6c9af87
AH
581
582 if (vs->vs_events_nr > VHOST_SCSI_MAX_EVENT) {
583 vs->vs_events_missed = true;
584 return NULL;
585 }
586
587 evt = kzalloc(sizeof(*evt), GFP_KERNEL);
588 if (!evt) {
1a1ff825 589 vq_err(vq, "Failed to allocate vhost_scsi_evt\n");
a6c9af87
AH
590 vs->vs_events_missed = true;
591 return NULL;
592 }
593
e72fd72e
MT
594 evt->event.event = cpu_to_vhost32(vq, event);
595 evt->event.reason = cpu_to_vhost32(vq, reason);
a6c9af87
AH
596 vs->vs_events_nr++;
597
598 return evt;
599}
600
1a1ff825 601static void vhost_scsi_free_cmd(struct vhost_scsi_cmd *cmd)
057cbf49 602{
3c63f66a 603 struct se_cmd *se_cmd = &cmd->tvc_se_cmd;
057cbf49
NB
604
605 /* TODO locking against target/backend threads? */
6c131d0c 606 transport_generic_free_cmd(se_cmd, 0);
057cbf49 607
084ed45b 608}
f2f0173d 609
084ed45b
NB
610static int vhost_scsi_check_stop_free(struct se_cmd *se_cmd)
611{
612 return target_put_sess_cmd(se_cmd->se_sess, se_cmd);
057cbf49
NB
613}
614
683bd967 615static void
1a1ff825 616vhost_scsi_do_evt_work(struct vhost_scsi *vs, struct vhost_scsi_evt *evt)
a6c9af87 617{
3ab2e420 618 struct vhost_virtqueue *vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
a6c9af87
AH
619 struct virtio_scsi_event *event = &evt->event;
620 struct virtio_scsi_event __user *eventp;
621 unsigned out, in;
622 int head, ret;
623
624 if (!vq->private_data) {
625 vs->vs_events_missed = true;
626 return;
627 }
628
629again:
630 vhost_disable_notify(&vs->dev, vq);
47283bef 631 head = vhost_get_vq_desc(vq, vq->iov,
a6c9af87
AH
632 ARRAY_SIZE(vq->iov), &out, &in,
633 NULL, NULL);
634 if (head < 0) {
635 vs->vs_events_missed = true;
636 return;
637 }
638 if (head == vq->num) {
639 if (vhost_enable_notify(&vs->dev, vq))
640 goto again;
641 vs->vs_events_missed = true;
642 return;
643 }
644
645 if ((vq->iov[out].iov_len != sizeof(struct virtio_scsi_event))) {
646 vq_err(vq, "Expecting virtio_scsi_event, got %zu bytes\n",
647 vq->iov[out].iov_len);
648 vs->vs_events_missed = true;
649 return;
650 }
651
652 if (vs->vs_events_missed) {
e72fd72e 653 event->event |= cpu_to_vhost32(vq, VIRTIO_SCSI_T_EVENTS_MISSED);
a6c9af87
AH
654 vs->vs_events_missed = false;
655 }
656
657 eventp = vq->iov[out].iov_base;
658 ret = __copy_to_user(eventp, event, sizeof(*event));
659 if (!ret)
660 vhost_add_used_and_signal(&vs->dev, vq, head, 0);
661 else
1a1ff825 662 vq_err(vq, "Faulted on vhost_scsi_send_event\n");
a6c9af87
AH
663}
664
1a1ff825 665static void vhost_scsi_evt_work(struct vhost_work *work)
a6c9af87
AH
666{
667 struct vhost_scsi *vs = container_of(work, struct vhost_scsi,
668 vs_event_work);
3ab2e420 669 struct vhost_virtqueue *vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
1a1ff825 670 struct vhost_scsi_evt *evt;
a6c9af87
AH
671 struct llist_node *llnode;
672
673 mutex_lock(&vq->mutex);
674 llnode = llist_del_all(&vs->vs_event_list);
675 while (llnode) {
1a1ff825 676 evt = llist_entry(llnode, struct vhost_scsi_evt, list);
a6c9af87 677 llnode = llist_next(llnode);
1a1ff825
NB
678 vhost_scsi_do_evt_work(vs, evt);
679 vhost_scsi_free_evt(vs, evt);
a6c9af87
AH
680 }
681 mutex_unlock(&vq->mutex);
682}
683
057cbf49
NB
684/* Fill in status and signal that we are done processing this command
685 *
686 * This is scheduled in the vhost work queue so we are called with the owner
687 * process mm and can access the vring.
688 */
689static void vhost_scsi_complete_cmd_work(struct vhost_work *work)
690{
691 struct vhost_scsi *vs = container_of(work, struct vhost_scsi,
692 vs_completion_work);
1b7f390e 693 DECLARE_BITMAP(signal, VHOST_SCSI_MAX_VQ);
9d6064a3 694 struct virtio_scsi_cmd_resp v_rsp;
1a1ff825 695 struct vhost_scsi_cmd *cmd;
9d6064a3
AH
696 struct llist_node *llnode;
697 struct se_cmd *se_cmd;
79c14141 698 struct iov_iter iov_iter;
1b7f390e 699 int ret, vq;
057cbf49 700
1b7f390e 701 bitmap_zero(signal, VHOST_SCSI_MAX_VQ);
9d6064a3
AH
702 llnode = llist_del_all(&vs->vs_completion_list);
703 while (llnode) {
1a1ff825 704 cmd = llist_entry(llnode, struct vhost_scsi_cmd,
9d6064a3
AH
705 tvc_completion_list);
706 llnode = llist_next(llnode);
3c63f66a 707 se_cmd = &cmd->tvc_se_cmd;
057cbf49
NB
708
709 pr_debug("%s tv_cmd %p resid %u status %#02x\n", __func__,
3c63f66a 710 cmd, se_cmd->residual_count, se_cmd->scsi_status);
057cbf49
NB
711
712 memset(&v_rsp, 0, sizeof(v_rsp));
e72fd72e 713 v_rsp.resid = cpu_to_vhost32(cmd->tvc_vq, se_cmd->residual_count);
057cbf49
NB
714 /* TODO is status_qualifier field needed? */
715 v_rsp.status = se_cmd->scsi_status;
e72fd72e
MT
716 v_rsp.sense_len = cpu_to_vhost32(cmd->tvc_vq,
717 se_cmd->scsi_sense_length);
3c63f66a 718 memcpy(v_rsp.sense, cmd->tvc_sense_buf,
e72fd72e 719 se_cmd->scsi_sense_length);
79c14141
NB
720
721 iov_iter_init(&iov_iter, READ, cmd->tvc_resp_iov,
722 cmd->tvc_in_iovs, sizeof(v_rsp));
723 ret = copy_to_iter(&v_rsp, sizeof(v_rsp), &iov_iter);
724 if (likely(ret == sizeof(v_rsp))) {
3ab2e420 725 struct vhost_scsi_virtqueue *q;
3c63f66a
AH
726 vhost_add_used(cmd->tvc_vq, cmd->tvc_vq_desc, 0);
727 q = container_of(cmd->tvc_vq, struct vhost_scsi_virtqueue, vq);
3ab2e420 728 vq = q - vs->vqs;
1b7f390e
AH
729 __set_bit(vq, signal);
730 } else
057cbf49
NB
731 pr_err("Faulted on virtio_scsi_cmd_resp\n");
732
3c63f66a 733 vhost_scsi_free_cmd(cmd);
057cbf49
NB
734 }
735
1b7f390e
AH
736 vq = -1;
737 while ((vq = find_next_bit(signal, VHOST_SCSI_MAX_VQ, vq + 1))
738 < VHOST_SCSI_MAX_VQ)
3ab2e420 739 vhost_signal(&vs->dev, &vs->vqs[vq].vq);
057cbf49
NB
740}
741
1a1ff825
NB
742static struct vhost_scsi_cmd *
743vhost_scsi_get_tag(struct vhost_virtqueue *vq, struct vhost_scsi_tpg *tpg,
95e7c434
NB
744 unsigned char *cdb, u64 scsi_tag, u16 lun, u8 task_attr,
745 u32 exp_data_len, int data_direction)
057cbf49 746{
1a1ff825
NB
747 struct vhost_scsi_cmd *cmd;
748 struct vhost_scsi_nexus *tv_nexus;
4824d3bf 749 struct se_session *se_sess;
b1935f68 750 struct scatterlist *sg, *prot_sg;
3aee26b4 751 struct page **pages;
4824d3bf 752 int tag;
057cbf49 753
98718312 754 tv_nexus = tpg->tpg_nexus;
057cbf49 755 if (!tv_nexus) {
1a1ff825 756 pr_err("Unable to locate active struct vhost_scsi_nexus\n");
057cbf49
NB
757 return ERR_PTR(-EIO);
758 }
4824d3bf 759 se_sess = tv_nexus->tvn_se_sess;
057cbf49 760
6f6b5d1e 761 tag = percpu_ida_alloc(&se_sess->sess_tag_pool, TASK_RUNNING);
4a47d3a1 762 if (tag < 0) {
1a1ff825 763 pr_err("Unable to obtain tag for vhost_scsi_cmd\n");
4a47d3a1
NB
764 return ERR_PTR(-ENOMEM);
765 }
766
1a1ff825 767 cmd = &((struct vhost_scsi_cmd *)se_sess->sess_cmd_map)[tag];
3aee26b4 768 sg = cmd->tvc_sgl;
b1935f68 769 prot_sg = cmd->tvc_prot_sgl;
3aee26b4 770 pages = cmd->tvc_upages;
1a1ff825 771 memset(cmd, 0, sizeof(struct vhost_scsi_cmd));
4824d3bf 772
3aee26b4 773 cmd->tvc_sgl = sg;
b1935f68 774 cmd->tvc_prot_sgl = prot_sg;
3aee26b4 775 cmd->tvc_upages = pages;
4824d3bf 776 cmd->tvc_se_cmd.map_tag = tag;
95e7c434
NB
777 cmd->tvc_tag = scsi_tag;
778 cmd->tvc_lun = lun;
779 cmd->tvc_task_attr = task_attr;
3c63f66a
AH
780 cmd->tvc_exp_data_len = exp_data_len;
781 cmd->tvc_data_direction = data_direction;
782 cmd->tvc_nexus = tv_nexus;
1a1ff825 783 cmd->inflight = vhost_scsi_get_inflight(vq);
3c63f66a 784
1a1ff825 785 memcpy(cmd->tvc_cdb, cdb, VHOST_SCSI_MAX_CDB_SIZE);
95e7c434 786
3c63f66a 787 return cmd;
057cbf49
NB
788}
789
790/*
791 * Map a user memory range into a scatterlist
792 *
793 * Returns the number of scatterlist entries used or -errno on error.
794 */
683bd967 795static int
1a1ff825 796vhost_scsi_map_to_sgl(struct vhost_scsi_cmd *cmd,
b4078b5f
NB
797 void __user *ptr,
798 size_t len,
3aee26b4 799 struct scatterlist *sgl,
5a01d082 800 bool write)
057cbf49 801{
b4078b5f
NB
802 unsigned int npages = 0, offset, nbytes;
803 unsigned int pages_nr = iov_num_pages(ptr, len);
057cbf49 804 struct scatterlist *sg = sgl;
b4078b5f 805 struct page **pages = cmd->tvc_upages;
1810053e 806 int ret, i;
057cbf49 807
1a1ff825 808 if (pages_nr > VHOST_SCSI_PREALLOC_UPAGES) {
3aee26b4 809 pr_err("vhost_scsi_map_to_sgl() pages_nr: %u greater than"
1a1ff825
NB
810 " preallocated VHOST_SCSI_PREALLOC_UPAGES: %u\n",
811 pages_nr, VHOST_SCSI_PREALLOC_UPAGES);
3aee26b4
NB
812 return -ENOBUFS;
813 }
814
1810053e
AH
815 ret = get_user_pages_fast((unsigned long)ptr, pages_nr, write, pages);
816 /* No pages were pinned */
817 if (ret < 0)
818 goto out;
819 /* Less pages pinned than wanted */
820 if (ret != pages_nr) {
821 for (i = 0; i < ret; i++)
822 put_page(pages[i]);
823 ret = -EFAULT;
824 goto out;
825 }
826
827 while (len > 0) {
828 offset = (uintptr_t)ptr & ~PAGE_MASK;
829 nbytes = min_t(unsigned int, PAGE_SIZE - offset, len);
830 sg_set_page(sg, pages[npages], nbytes, offset);
057cbf49
NB
831 ptr += nbytes;
832 len -= nbytes;
833 sg++;
834 npages++;
835 }
057cbf49 836
1810053e 837out:
057cbf49
NB
838 return ret;
839}
840
683bd967 841static int
e8de56b5 842vhost_scsi_calc_sgls(struct iov_iter *iter, size_t bytes, int max_sgls)
057cbf49 843{
e8de56b5 844 int sgl_count = 0;
057cbf49 845
e8de56b5
NB
846 if (!iter || !iter->iov) {
847 pr_err("%s: iter->iov is NULL, but expected bytes: %zu"
848 " present\n", __func__, bytes);
849 return -EINVAL;
850 }
f3158f36 851
e8de56b5
NB
852 sgl_count = iov_iter_npages(iter, 0xffff);
853 if (sgl_count > max_sgls) {
854 pr_err("%s: requested sgl_count: %d exceeds pre-allocated"
855 " max_sgls: %d\n", __func__, sgl_count, max_sgls);
856 return -EINVAL;
5a01d082 857 }
e8de56b5
NB
858 return sgl_count;
859}
057cbf49 860
e8de56b5 861static int
1a1ff825
NB
862vhost_scsi_iov_to_sgl(struct vhost_scsi_cmd *cmd, bool write,
863 struct iov_iter *iter,
864 struct scatterlist *sg, int sg_count)
e8de56b5
NB
865{
866 size_t off = iter->iov_offset;
867 int i, ret;
057cbf49 868
e8de56b5
NB
869 for (i = 0; i < iter->nr_segs; i++) {
870 void __user *base = iter->iov[i].iov_base + off;
871 size_t len = iter->iov[i].iov_len - off;
5a01d082 872
e8de56b5 873 ret = vhost_scsi_map_to_sgl(cmd, base, len, sg, write);
057cbf49 874 if (ret < 0) {
e8de56b5
NB
875 for (i = 0; i < sg_count; i++) {
876 struct page *page = sg_page(&sg[i]);
877 if (page)
878 put_page(page);
879 }
057cbf49
NB
880 return ret;
881 }
057cbf49 882 sg += ret;
e8de56b5 883 off = 0;
057cbf49
NB
884 }
885 return 0;
886}
887
e31885dd 888static int
1a1ff825 889vhost_scsi_mapal(struct vhost_scsi_cmd *cmd,
e8de56b5
NB
890 size_t prot_bytes, struct iov_iter *prot_iter,
891 size_t data_bytes, struct iov_iter *data_iter)
892{
893 int sgl_count, ret;
894 bool write = (cmd->tvc_data_direction == DMA_FROM_DEVICE);
895
896 if (prot_bytes) {
897 sgl_count = vhost_scsi_calc_sgls(prot_iter, prot_bytes,
1a1ff825 898 VHOST_SCSI_PREALLOC_PROT_SGLS);
e8de56b5
NB
899 if (sgl_count < 0)
900 return sgl_count;
901
902 sg_init_table(cmd->tvc_prot_sgl, sgl_count);
903 cmd->tvc_prot_sgl_count = sgl_count;
904 pr_debug("%s prot_sg %p prot_sgl_count %u\n", __func__,
905 cmd->tvc_prot_sgl, cmd->tvc_prot_sgl_count);
906
907 ret = vhost_scsi_iov_to_sgl(cmd, write, prot_iter,
908 cmd->tvc_prot_sgl,
909 cmd->tvc_prot_sgl_count);
e31885dd 910 if (ret < 0) {
e31885dd
NB
911 cmd->tvc_prot_sgl_count = 0;
912 return ret;
913 }
e8de56b5
NB
914 }
915 sgl_count = vhost_scsi_calc_sgls(data_iter, data_bytes,
1a1ff825 916 VHOST_SCSI_PREALLOC_SGLS);
e8de56b5
NB
917 if (sgl_count < 0)
918 return sgl_count;
919
920 sg_init_table(cmd->tvc_sgl, sgl_count);
921 cmd->tvc_sgl_count = sgl_count;
922 pr_debug("%s data_sg %p data_sgl_count %u\n", __func__,
923 cmd->tvc_sgl, cmd->tvc_sgl_count);
924
925 ret = vhost_scsi_iov_to_sgl(cmd, write, data_iter,
926 cmd->tvc_sgl, cmd->tvc_sgl_count);
927 if (ret < 0) {
928 cmd->tvc_sgl_count = 0;
929 return ret;
e31885dd
NB
930 }
931 return 0;
932}
933
46243860
NB
934static int vhost_scsi_to_tcm_attr(int attr)
935{
936 switch (attr) {
937 case VIRTIO_SCSI_S_SIMPLE:
938 return TCM_SIMPLE_TAG;
939 case VIRTIO_SCSI_S_ORDERED:
940 return TCM_ORDERED_TAG;
941 case VIRTIO_SCSI_S_HEAD:
942 return TCM_HEAD_TAG;
943 case VIRTIO_SCSI_S_ACA:
944 return TCM_ACA_TAG;
945 default:
946 break;
947 }
948 return TCM_SIMPLE_TAG;
949}
950
1a1ff825 951static void vhost_scsi_submission_work(struct work_struct *work)
057cbf49 952{
1a1ff825
NB
953 struct vhost_scsi_cmd *cmd =
954 container_of(work, struct vhost_scsi_cmd, work);
955 struct vhost_scsi_nexus *tv_nexus;
3c63f66a 956 struct se_cmd *se_cmd = &cmd->tvc_se_cmd;
95e7c434
NB
957 struct scatterlist *sg_ptr, *sg_prot_ptr = NULL;
958 int rc;
057cbf49 959
95e7c434 960 /* FIXME: BIDI operation */
3c63f66a
AH
961 if (cmd->tvc_sgl_count) {
962 sg_ptr = cmd->tvc_sgl;
95e7c434
NB
963
964 if (cmd->tvc_prot_sgl_count)
965 sg_prot_ptr = cmd->tvc_prot_sgl;
966 else
967 se_cmd->prot_pto = true;
057cbf49
NB
968 } else {
969 sg_ptr = NULL;
970 }
3c63f66a 971 tv_nexus = cmd->tvc_nexus;
9f0abc15
NB
972
973 rc = target_submit_cmd_map_sgls(se_cmd, tv_nexus->tvn_se_sess,
3c63f66a
AH
974 cmd->tvc_cdb, &cmd->tvc_sense_buf[0],
975 cmd->tvc_lun, cmd->tvc_exp_data_len,
46243860
NB
976 vhost_scsi_to_tcm_attr(cmd->tvc_task_attr),
977 cmd->tvc_data_direction, TARGET_SCF_ACK_KREF,
978 sg_ptr, cmd->tvc_sgl_count, NULL, 0, sg_prot_ptr,
979 cmd->tvc_prot_sgl_count);
057cbf49
NB
980 if (rc < 0) {
981 transport_send_check_condition_and_sense(se_cmd,
9f0abc15 982 TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE, 0);
057cbf49 983 transport_generic_free_cmd(se_cmd, 0);
057cbf49 984 }
057cbf49
NB
985}
986
683bd967
AH
987static void
988vhost_scsi_send_bad_target(struct vhost_scsi *vs,
989 struct vhost_virtqueue *vq,
990 int head, unsigned out)
637ab21e
AH
991{
992 struct virtio_scsi_cmd_resp __user *resp;
993 struct virtio_scsi_cmd_resp rsp;
994 int ret;
995
996 memset(&rsp, 0, sizeof(rsp));
997 rsp.response = VIRTIO_SCSI_S_BAD_TARGET;
998 resp = vq->iov[out].iov_base;
999 ret = __copy_to_user(resp, &rsp, sizeof(rsp));
1000 if (!ret)
1001 vhost_add_used_and_signal(&vs->dev, vq, head, 0);
1002 else
1003 pr_err("Faulted on virtio_scsi_cmd_resp\n");
1004}
1005
683bd967
AH
1006static void
1007vhost_scsi_handle_vq(struct vhost_scsi *vs, struct vhost_virtqueue *vq)
057cbf49 1008{
1a1ff825 1009 struct vhost_scsi_tpg **vs_tpg, *tpg;
057cbf49 1010 struct virtio_scsi_cmd_req v_req;
95e7c434 1011 struct virtio_scsi_cmd_req_pi v_req_pi;
1a1ff825 1012 struct vhost_scsi_cmd *cmd;
09b13fa8 1013 struct iov_iter out_iter, in_iter, prot_iter, data_iter;
95e7c434 1014 u64 tag;
09b13fa8
NB
1015 u32 exp_data_len, data_direction;
1016 unsigned out, in;
1017 int head, ret, prot_bytes;
1018 size_t req_size, rsp_size = sizeof(struct virtio_scsi_cmd_resp);
1019 size_t out_size, in_size;
95e7c434
NB
1020 u16 lun;
1021 u8 *target, *lunp, task_attr;
09b13fa8 1022 bool t10_pi = vhost_has_feature(vq, VIRTIO_SCSI_F_T10_PI);
95e7c434 1023 void *req, *cdb;
057cbf49 1024
e7802212 1025 mutex_lock(&vq->mutex);
4f7f46d3
AH
1026 /*
1027 * We can handle the vq only after the endpoint is setup by calling the
1028 * VHOST_SCSI_SET_ENDPOINT ioctl.
4f7f46d3 1029 */
e7802212 1030 vs_tpg = vq->private_data;
4f7f46d3 1031 if (!vs_tpg)
e7802212 1032 goto out;
057cbf49 1033
057cbf49
NB
1034 vhost_disable_notify(&vs->dev, vq);
1035
1036 for (;;) {
47283bef 1037 head = vhost_get_vq_desc(vq, vq->iov,
09b13fa8
NB
1038 ARRAY_SIZE(vq->iov), &out, &in,
1039 NULL, NULL);
057cbf49 1040 pr_debug("vhost_get_vq_desc: head: %d, out: %u in: %u\n",
09b13fa8 1041 head, out, in);
057cbf49
NB
1042 /* On error, stop handling until the next kick. */
1043 if (unlikely(head < 0))
1044 break;
1045 /* Nothing new? Wait for eventfd to tell us they refilled. */
1046 if (head == vq->num) {
1047 if (unlikely(vhost_enable_notify(&vs->dev, vq))) {
1048 vhost_disable_notify(&vs->dev, vq);
1049 continue;
1050 }
1051 break;
1052 }
057cbf49 1053 /*
09b13fa8
NB
1054 * Check for a sane response buffer so we can report early
1055 * errors back to the guest.
057cbf49 1056 */
09b13fa8
NB
1057 if (unlikely(vq->iov[out].iov_len < rsp_size)) {
1058 vq_err(vq, "Expecting at least virtio_scsi_cmd_resp"
1059 " size, got %zu bytes\n", vq->iov[out].iov_len);
057cbf49
NB
1060 break;
1061 }
09b13fa8
NB
1062 /*
1063 * Setup pointers and values based upon different virtio-scsi
1064 * request header if T10_PI is enabled in KVM guest.
1065 */
1066 if (t10_pi) {
95e7c434 1067 req = &v_req_pi;
09b13fa8 1068 req_size = sizeof(v_req_pi);
95e7c434
NB
1069 lunp = &v_req_pi.lun[0];
1070 target = &v_req_pi.lun[1];
95e7c434
NB
1071 } else {
1072 req = &v_req;
09b13fa8 1073 req_size = sizeof(v_req);
95e7c434
NB
1074 lunp = &v_req.lun[0];
1075 target = &v_req.lun[1];
95e7c434 1076 }
09b13fa8
NB
1077 /*
1078 * FIXME: Not correct for BIDI operation
1079 */
1080 out_size = iov_length(vq->iov, out);
1081 in_size = iov_length(&vq->iov[out], in);
95e7c434 1082
09b13fa8
NB
1083 /*
1084 * Copy over the virtio-scsi request header, which for a
1085 * ANY_LAYOUT enabled guest may span multiple iovecs, or a
1086 * single iovec may contain both the header + outgoing
1087 * WRITE payloads.
1088 *
1089 * copy_from_iter() will advance out_iter, so that it will
1090 * point at the start of the outgoing WRITE payload, if
1091 * DMA_TO_DEVICE is set.
1092 */
1093 iov_iter_init(&out_iter, WRITE, vq->iov, out, out_size);
057cbf49 1094
09b13fa8
NB
1095 ret = copy_from_iter(req, req_size, &out_iter);
1096 if (unlikely(ret != req_size)) {
1097 vq_err(vq, "Faulted on copy_from_iter\n");
de1419e4
NB
1098 vhost_scsi_send_bad_target(vs, vq, head, out);
1099 continue;
057cbf49 1100 }
7fe412d0 1101 /* virtio-scsi spec requires byte 0 of the lun to be 1 */
95e7c434 1102 if (unlikely(*lunp != 1)) {
09b13fa8 1103 vq_err(vq, "Illegal virtio-scsi lun: %u\n", *lunp);
7fe412d0
VS
1104 vhost_scsi_send_bad_target(vs, vq, head, out);
1105 continue;
1106 }
1107
95e7c434 1108 tpg = ACCESS_ONCE(vs_tpg[*target]);
98718312 1109 if (unlikely(!tpg)) {
09b13fa8 1110 /* Target does not exist, fail the request */
637ab21e 1111 vhost_scsi_send_bad_target(vs, vq, head, out);
67e18cf9
AH
1112 continue;
1113 }
95e7c434 1114 /*
09b13fa8
NB
1115 * Determine data_direction by calculating the total outgoing
1116 * iovec sizes + incoming iovec sizes vs. virtio-scsi request +
1117 * response headers respectively.
95e7c434 1118 *
09b13fa8
NB
1119 * For DMA_TO_DEVICE this is out_iter, which is already pointing
1120 * to the right place.
1121 *
1122 * For DMA_FROM_DEVICE, the iovec will be just past the end
1123 * of the virtio-scsi response header in either the same
1124 * or immediately following iovec.
95e7c434 1125 *
09b13fa8
NB
1126 * Any associated T10_PI bytes for the outgoing / incoming
1127 * payloads are included in calculation of exp_data_len here.
95e7c434 1128 */
09b13fa8
NB
1129 prot_bytes = 0;
1130
1131 if (out_size > req_size) {
1132 data_direction = DMA_TO_DEVICE;
1133 exp_data_len = out_size - req_size;
1134 data_iter = out_iter;
1135 } else if (in_size > rsp_size) {
1136 data_direction = DMA_FROM_DEVICE;
1137 exp_data_len = in_size - rsp_size;
1138
1139 iov_iter_init(&in_iter, READ, &vq->iov[out], in,
1140 rsp_size + exp_data_len);
1141 iov_iter_advance(&in_iter, rsp_size);
1142 data_iter = in_iter;
1143 } else {
1144 data_direction = DMA_NONE;
1145 exp_data_len = 0;
1146 }
1147 /*
1148 * If T10_PI header + payload is present, setup prot_iter values
1149 * and recalculate data_iter for vhost_scsi_mapal() mapping to
1150 * host scatterlists via get_user_pages_fast().
95e7c434 1151 */
09b13fa8 1152 if (t10_pi) {
95e7c434
NB
1153 if (v_req_pi.pi_bytesout) {
1154 if (data_direction != DMA_TO_DEVICE) {
09b13fa8
NB
1155 vq_err(vq, "Received non zero pi_bytesout,"
1156 " but wrong data_direction\n");
de1419e4
NB
1157 vhost_scsi_send_bad_target(vs, vq, head, out);
1158 continue;
95e7c434 1159 }
e72fd72e 1160 prot_bytes = vhost32_to_cpu(vq, v_req_pi.pi_bytesout);
95e7c434
NB
1161 } else if (v_req_pi.pi_bytesin) {
1162 if (data_direction != DMA_FROM_DEVICE) {
09b13fa8
NB
1163 vq_err(vq, "Received non zero pi_bytesin,"
1164 " but wrong data_direction\n");
de1419e4
NB
1165 vhost_scsi_send_bad_target(vs, vq, head, out);
1166 continue;
95e7c434 1167 }
e72fd72e 1168 prot_bytes = vhost32_to_cpu(vq, v_req_pi.pi_bytesin);
95e7c434 1169 }
09b13fa8
NB
1170 /*
1171 * Set prot_iter to data_iter, and advance past any
1172 * preceeding prot_bytes that may be present.
1173 *
1174 * Also fix up the exp_data_len to reflect only the
1175 * actual data payload length.
1176 */
95e7c434 1177 if (prot_bytes) {
09b13fa8
NB
1178 exp_data_len -= prot_bytes;
1179 prot_iter = data_iter;
1180 iov_iter_advance(&data_iter, prot_bytes);
95e7c434 1181 }
e72fd72e 1182 tag = vhost64_to_cpu(vq, v_req_pi.tag);
95e7c434
NB
1183 task_attr = v_req_pi.task_attr;
1184 cdb = &v_req_pi.cdb[0];
1185 lun = ((v_req_pi.lun[2] << 8) | v_req_pi.lun[3]) & 0x3FFF;
1186 } else {
e72fd72e 1187 tag = vhost64_to_cpu(vq, v_req.tag);
95e7c434
NB
1188 task_attr = v_req.task_attr;
1189 cdb = &v_req.cdb[0];
1190 lun = ((v_req.lun[2] << 8) | v_req.lun[3]) & 0x3FFF;
1191 }
95e7c434 1192 /*
09b13fa8
NB
1193 * Check that the received CDB size does not exceeded our
1194 * hardcoded max for vhost-scsi, then get a pre-allocated
1195 * cmd descriptor for the new virtio-scsi tag.
95e7c434
NB
1196 *
1197 * TODO what if cdb was too small for varlen cdb header?
1198 */
1a1ff825 1199 if (unlikely(scsi_command_size(cdb) > VHOST_SCSI_MAX_CDB_SIZE)) {
95e7c434
NB
1200 vq_err(vq, "Received SCSI CDB with command_size: %d that"
1201 " exceeds SCSI_MAX_VARLEN_CDB_SIZE: %d\n",
1a1ff825 1202 scsi_command_size(cdb), VHOST_SCSI_MAX_CDB_SIZE);
de1419e4
NB
1203 vhost_scsi_send_bad_target(vs, vq, head, out);
1204 continue;
95e7c434 1205 }
95e7c434 1206 cmd = vhost_scsi_get_tag(vq, tpg, cdb, tag, lun, task_attr,
9f977ef7
NB
1207 exp_data_len + prot_bytes,
1208 data_direction);
3c63f66a 1209 if (IS_ERR(cmd)) {
4824d3bf 1210 vq_err(vq, "vhost_scsi_get_tag failed %ld\n",
09b13fa8 1211 PTR_ERR(cmd));
de1419e4
NB
1212 vhost_scsi_send_bad_target(vs, vq, head, out);
1213 continue;
057cbf49 1214 }
3c63f66a
AH
1215 cmd->tvc_vhost = vs;
1216 cmd->tvc_vq = vq;
79c14141
NB
1217 cmd->tvc_resp_iov = &vq->iov[out];
1218 cmd->tvc_in_iovs = in;
057cbf49 1219
057cbf49 1220 pr_debug("vhost_scsi got command opcode: %#02x, lun: %d\n",
09b13fa8
NB
1221 cmd->tvc_cdb[0], cmd->tvc_lun);
1222 pr_debug("cmd: %p exp_data_len: %d, prot_bytes: %d data_direction:"
1223 " %d\n", cmd, exp_data_len, prot_bytes, data_direction);
057cbf49
NB
1224
1225 if (data_direction != DMA_NONE) {
09b13fa8
NB
1226 ret = vhost_scsi_mapal(cmd,
1227 prot_bytes, &prot_iter,
1228 exp_data_len, &data_iter);
057cbf49
NB
1229 if (unlikely(ret)) {
1230 vq_err(vq, "Failed to map iov to sgl\n");
1a1ff825 1231 vhost_scsi_release_cmd(&cmd->tvc_se_cmd);
de1419e4
NB
1232 vhost_scsi_send_bad_target(vs, vq, head, out);
1233 continue;
057cbf49
NB
1234 }
1235 }
057cbf49
NB
1236 /*
1237 * Save the descriptor from vhost_get_vq_desc() to be used to
1238 * complete the virtio-scsi request in TCM callback context via
09b13fa8 1239 * vhost_scsi_queue_data_in() and vhost_scsi_queue_status()
057cbf49 1240 */
3c63f66a 1241 cmd->tvc_vq_desc = head;
057cbf49 1242 /*
09b13fa8
NB
1243 * Dispatch cmd descriptor for cmwq execution in process
1244 * context provided by vhost_scsi_workqueue. This also ensures
1245 * cmd is executed on the same kworker CPU as this vhost
1246 * thread to gain positive L2 cache locality effects.
057cbf49 1247 */
1a1ff825
NB
1248 INIT_WORK(&cmd->work, vhost_scsi_submission_work);
1249 queue_work(vhost_scsi_workqueue, &cmd->work);
057cbf49 1250 }
e7802212 1251out:
7ea206cf 1252 mutex_unlock(&vq->mutex);
057cbf49
NB
1253}
1254
1255static void vhost_scsi_ctl_handle_kick(struct vhost_work *work)
1256{
101998f6 1257 pr_debug("%s: The handling func for control queue.\n", __func__);
057cbf49
NB
1258}
1259
683bd967 1260static void
1a1ff825
NB
1261vhost_scsi_send_evt(struct vhost_scsi *vs,
1262 struct vhost_scsi_tpg *tpg,
683bd967
AH
1263 struct se_lun *lun,
1264 u32 event,
1265 u32 reason)
a6c9af87 1266{
1a1ff825 1267 struct vhost_scsi_evt *evt;
a6c9af87 1268
1a1ff825 1269 evt = vhost_scsi_allocate_evt(vs, event, reason);
a6c9af87
AH
1270 if (!evt)
1271 return;
1272
1273 if (tpg && lun) {
1274 /* TODO: share lun setup code with virtio-scsi.ko */
1275 /*
1276 * Note: evt->event is zeroed when we allocate it and
1277 * lun[4-7] need to be zero according to virtio-scsi spec.
1278 */
1279 evt->event.lun[0] = 0x01;
59c816c1 1280 evt->event.lun[1] = tpg->tport_tpgt;
a6c9af87
AH
1281 if (lun->unpacked_lun >= 256)
1282 evt->event.lun[2] = lun->unpacked_lun >> 8 | 0x40 ;
1283 evt->event.lun[3] = lun->unpacked_lun & 0xFF;
1284 }
1285
1286 llist_add(&evt->list, &vs->vs_event_list);
1287 vhost_work_queue(&vs->dev, &vs->vs_event_work);
1288}
1289
057cbf49
NB
1290static void vhost_scsi_evt_handle_kick(struct vhost_work *work)
1291{
a6c9af87
AH
1292 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
1293 poll.work);
1294 struct vhost_scsi *vs = container_of(vq->dev, struct vhost_scsi, dev);
1295
1296 mutex_lock(&vq->mutex);
1297 if (!vq->private_data)
1298 goto out;
1299
1300 if (vs->vs_events_missed)
1a1ff825 1301 vhost_scsi_send_evt(vs, NULL, NULL, VIRTIO_SCSI_T_NO_EVENT, 0);
a6c9af87
AH
1302out:
1303 mutex_unlock(&vq->mutex);
057cbf49
NB
1304}
1305
1306static void vhost_scsi_handle_kick(struct vhost_work *work)
1307{
1308 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
1309 poll.work);
1310 struct vhost_scsi *vs = container_of(vq->dev, struct vhost_scsi, dev);
1311
1b7f390e 1312 vhost_scsi_handle_vq(vs, vq);
057cbf49
NB
1313}
1314
4f7f46d3
AH
1315static void vhost_scsi_flush_vq(struct vhost_scsi *vs, int index)
1316{
3ab2e420 1317 vhost_poll_flush(&vs->vqs[index].vq.poll);
4f7f46d3
AH
1318}
1319
3dfbff32 1320/* Callers must hold dev mutex */
4f7f46d3
AH
1321static void vhost_scsi_flush(struct vhost_scsi *vs)
1322{
f2f0173d 1323 struct vhost_scsi_inflight *old_inflight[VHOST_SCSI_MAX_VQ];
4f7f46d3
AH
1324 int i;
1325
f2f0173d 1326 /* Init new inflight and remember the old inflight */
1a1ff825 1327 vhost_scsi_init_inflight(vs, old_inflight);
f2f0173d
AH
1328
1329 /*
1330 * The inflight->kref was initialized to 1. We decrement it here to
1331 * indicate the start of the flush operation so that it will reach 0
1332 * when all the reqs are finished.
1333 */
1334 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++)
1a1ff825 1335 kref_put(&old_inflight[i]->kref, vhost_scsi_done_inflight);
f2f0173d
AH
1336
1337 /* Flush both the vhost poll and vhost work */
4f7f46d3
AH
1338 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++)
1339 vhost_scsi_flush_vq(vs, i);
1340 vhost_work_flush(&vs->dev, &vs->vs_completion_work);
a6c9af87 1341 vhost_work_flush(&vs->dev, &vs->vs_event_work);
f2f0173d
AH
1342
1343 /* Wait for all reqs issued before the flush to be finished */
1344 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++)
1345 wait_for_completion(&old_inflight[i]->comp);
4f7f46d3
AH
1346}
1347
057cbf49
NB
1348/*
1349 * Called from vhost_scsi_ioctl() context to walk the list of available
1a1ff825 1350 * vhost_scsi_tpg with an active struct vhost_scsi_nexus
f2b7daf5
AH
1351 *
1352 * The lock nesting rule is:
1a1ff825 1353 * vhost_scsi_mutex -> vs->dev.mutex -> tpg->tv_tpg_mutex -> vq->mutex
057cbf49 1354 */
683bd967
AH
1355static int
1356vhost_scsi_set_endpoint(struct vhost_scsi *vs,
1357 struct vhost_scsi_target *t)
057cbf49 1358{
ab8edab1 1359 struct se_portal_group *se_tpg;
1a1ff825
NB
1360 struct vhost_scsi_tport *tv_tport;
1361 struct vhost_scsi_tpg *tpg;
1362 struct vhost_scsi_tpg **vs_tpg;
4f7f46d3
AH
1363 struct vhost_virtqueue *vq;
1364 int index, ret, i, len;
67e18cf9 1365 bool match = false;
057cbf49 1366
1a1ff825 1367 mutex_lock(&vhost_scsi_mutex);
057cbf49 1368 mutex_lock(&vs->dev.mutex);
f2b7daf5 1369
057cbf49
NB
1370 /* Verify that ring has been setup correctly. */
1371 for (index = 0; index < vs->dev.nvqs; ++index) {
1372 /* Verify that ring has been setup correctly. */
3ab2e420 1373 if (!vhost_vq_access_ok(&vs->vqs[index].vq)) {
f2b7daf5
AH
1374 ret = -EFAULT;
1375 goto out;
057cbf49
NB
1376 }
1377 }
057cbf49 1378
4f7f46d3
AH
1379 len = sizeof(vs_tpg[0]) * VHOST_SCSI_MAX_TARGET;
1380 vs_tpg = kzalloc(len, GFP_KERNEL);
1381 if (!vs_tpg) {
f2b7daf5
AH
1382 ret = -ENOMEM;
1383 goto out;
4f7f46d3
AH
1384 }
1385 if (vs->vs_tpg)
1386 memcpy(vs_tpg, vs->vs_tpg, len);
1387
1a1ff825 1388 list_for_each_entry(tpg, &vhost_scsi_list, tv_tpg_list) {
98718312
AH
1389 mutex_lock(&tpg->tv_tpg_mutex);
1390 if (!tpg->tpg_nexus) {
1391 mutex_unlock(&tpg->tv_tpg_mutex);
057cbf49
NB
1392 continue;
1393 }
98718312
AH
1394 if (tpg->tv_tpg_vhost_count != 0) {
1395 mutex_unlock(&tpg->tv_tpg_mutex);
057cbf49
NB
1396 continue;
1397 }
98718312 1398 tv_tport = tpg->tport;
057cbf49 1399
67e18cf9 1400 if (!strcmp(tv_tport->tport_name, t->vhost_wwpn)) {
98718312 1401 if (vs->vs_tpg && vs->vs_tpg[tpg->tport_tpgt]) {
4f7f46d3 1402 kfree(vs_tpg);
98718312 1403 mutex_unlock(&tpg->tv_tpg_mutex);
f2b7daf5
AH
1404 ret = -EEXIST;
1405 goto out;
101998f6 1406 }
ab8edab1
NB
1407 /*
1408 * In order to ensure individual vhost-scsi configfs
1409 * groups cannot be removed while in use by vhost ioctl,
1410 * go ahead and take an explicit se_tpg->tpg_group.cg_item
1411 * dependency now.
1412 */
1413 se_tpg = &tpg->se_tpg;
d588cf8f 1414 ret = target_depend_item(&se_tpg->tpg_group.cg_item);
ab8edab1
NB
1415 if (ret) {
1416 pr_warn("configfs_depend_item() failed: %d\n", ret);
1417 kfree(vs_tpg);
1418 mutex_unlock(&tpg->tv_tpg_mutex);
1419 goto out;
1420 }
98718312
AH
1421 tpg->tv_tpg_vhost_count++;
1422 tpg->vhost_scsi = vs;
1423 vs_tpg[tpg->tport_tpgt] = tpg;
4e857c58 1424 smp_mb__after_atomic();
67e18cf9 1425 match = true;
057cbf49 1426 }
98718312 1427 mutex_unlock(&tpg->tv_tpg_mutex);
057cbf49 1428 }
67e18cf9
AH
1429
1430 if (match) {
1431 memcpy(vs->vs_vhost_wwpn, t->vhost_wwpn,
1432 sizeof(vs->vs_vhost_wwpn));
4f7f46d3 1433 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++) {
3ab2e420 1434 vq = &vs->vqs[i].vq;
4f7f46d3 1435 mutex_lock(&vq->mutex);
22fa90c7 1436 vq->private_data = vs_tpg;
dfd5d569 1437 vhost_init_used(vq);
4f7f46d3
AH
1438 mutex_unlock(&vq->mutex);
1439 }
67e18cf9
AH
1440 ret = 0;
1441 } else {
1442 ret = -EEXIST;
1443 }
1444
4f7f46d3
AH
1445 /*
1446 * Act as synchronize_rcu to make sure access to
1447 * old vs->vs_tpg is finished.
1448 */
1449 vhost_scsi_flush(vs);
1450 kfree(vs->vs_tpg);
1451 vs->vs_tpg = vs_tpg;
1452
f2b7daf5 1453out:
67e18cf9 1454 mutex_unlock(&vs->dev.mutex);
1a1ff825 1455 mutex_unlock(&vhost_scsi_mutex);
67e18cf9 1456 return ret;
057cbf49
NB
1457}
1458
683bd967
AH
1459static int
1460vhost_scsi_clear_endpoint(struct vhost_scsi *vs,
1461 struct vhost_scsi_target *t)
057cbf49 1462{
ab8edab1 1463 struct se_portal_group *se_tpg;
1a1ff825
NB
1464 struct vhost_scsi_tport *tv_tport;
1465 struct vhost_scsi_tpg *tpg;
4f7f46d3
AH
1466 struct vhost_virtqueue *vq;
1467 bool match = false;
67e18cf9
AH
1468 int index, ret, i;
1469 u8 target;
057cbf49 1470
1a1ff825 1471 mutex_lock(&vhost_scsi_mutex);
057cbf49
NB
1472 mutex_lock(&vs->dev.mutex);
1473 /* Verify that ring has been setup correctly. */
1474 for (index = 0; index < vs->dev.nvqs; ++index) {
3ab2e420 1475 if (!vhost_vq_access_ok(&vs->vqs[index].vq)) {
101998f6 1476 ret = -EFAULT;
038e0af4 1477 goto err_dev;
057cbf49
NB
1478 }
1479 }
4f7f46d3
AH
1480
1481 if (!vs->vs_tpg) {
f2b7daf5
AH
1482 ret = 0;
1483 goto err_dev;
4f7f46d3
AH
1484 }
1485
67e18cf9
AH
1486 for (i = 0; i < VHOST_SCSI_MAX_TARGET; i++) {
1487 target = i;
98718312
AH
1488 tpg = vs->vs_tpg[target];
1489 if (!tpg)
67e18cf9
AH
1490 continue;
1491
98718312
AH
1492 mutex_lock(&tpg->tv_tpg_mutex);
1493 tv_tport = tpg->tport;
67e18cf9
AH
1494 if (!tv_tport) {
1495 ret = -ENODEV;
038e0af4 1496 goto err_tpg;
67e18cf9
AH
1497 }
1498
1499 if (strcmp(tv_tport->tport_name, t->vhost_wwpn)) {
98718312 1500 pr_warn("tv_tport->tport_name: %s, tpg->tport_tpgt: %hu"
67e18cf9 1501 " does not match t->vhost_wwpn: %s, t->vhost_tpgt: %hu\n",
98718312 1502 tv_tport->tport_name, tpg->tport_tpgt,
67e18cf9
AH
1503 t->vhost_wwpn, t->vhost_tpgt);
1504 ret = -EINVAL;
038e0af4 1505 goto err_tpg;
67e18cf9 1506 }
98718312
AH
1507 tpg->tv_tpg_vhost_count--;
1508 tpg->vhost_scsi = NULL;
67e18cf9 1509 vs->vs_tpg[target] = NULL;
4f7f46d3 1510 match = true;
98718312 1511 mutex_unlock(&tpg->tv_tpg_mutex);
ab8edab1
NB
1512 /*
1513 * Release se_tpg->tpg_group.cg_item configfs dependency now
1514 * to allow vhost-scsi WWPN se_tpg->tpg_group shutdown to occur.
1515 */
1516 se_tpg = &tpg->se_tpg;
d588cf8f 1517 target_undepend_item(&se_tpg->tpg_group.cg_item);
057cbf49 1518 }
4f7f46d3
AH
1519 if (match) {
1520 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++) {
3ab2e420 1521 vq = &vs->vqs[i].vq;
4f7f46d3 1522 mutex_lock(&vq->mutex);
22fa90c7 1523 vq->private_data = NULL;
4f7f46d3
AH
1524 mutex_unlock(&vq->mutex);
1525 }
1526 }
1527 /*
1528 * Act as synchronize_rcu to make sure access to
1529 * old vs->vs_tpg is finished.
1530 */
1531 vhost_scsi_flush(vs);
1532 kfree(vs->vs_tpg);
1533 vs->vs_tpg = NULL;
a6c9af87 1534 WARN_ON(vs->vs_events_nr);
057cbf49 1535 mutex_unlock(&vs->dev.mutex);
1a1ff825 1536 mutex_unlock(&vhost_scsi_mutex);
057cbf49 1537 return 0;
101998f6 1538
038e0af4 1539err_tpg:
98718312 1540 mutex_unlock(&tpg->tv_tpg_mutex);
038e0af4 1541err_dev:
101998f6 1542 mutex_unlock(&vs->dev.mutex);
1a1ff825 1543 mutex_unlock(&vhost_scsi_mutex);
101998f6 1544 return ret;
057cbf49
NB
1545}
1546
4f7f46d3
AH
1547static int vhost_scsi_set_features(struct vhost_scsi *vs, u64 features)
1548{
ea16c514
MT
1549 struct vhost_virtqueue *vq;
1550 int i;
1551
4f7f46d3
AH
1552 if (features & ~VHOST_SCSI_FEATURES)
1553 return -EOPNOTSUPP;
1554
1555 mutex_lock(&vs->dev.mutex);
1556 if ((features & (1 << VHOST_F_LOG_ALL)) &&
1557 !vhost_log_access_ok(&vs->dev)) {
1558 mutex_unlock(&vs->dev.mutex);
1559 return -EFAULT;
1560 }
ea16c514
MT
1561
1562 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++) {
1563 vq = &vs->vqs[i].vq;
1564 mutex_lock(&vq->mutex);
1565 vq->acked_features = features;
1566 mutex_unlock(&vq->mutex);
1567 }
4f7f46d3
AH
1568 mutex_unlock(&vs->dev.mutex);
1569 return 0;
1570}
1571
057cbf49
NB
1572static int vhost_scsi_open(struct inode *inode, struct file *f)
1573{
c7289312 1574 struct vhost_scsi *vs;
3ab2e420 1575 struct vhost_virtqueue **vqs;
595cb754 1576 int r = -ENOMEM, i;
057cbf49 1577
595cb754
MT
1578 vs = kzalloc(sizeof(*vs), GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
1579 if (!vs) {
1580 vs = vzalloc(sizeof(*vs));
1581 if (!vs)
1582 goto err_vs;
1583 }
057cbf49 1584
3ab2e420 1585 vqs = kmalloc(VHOST_SCSI_MAX_VQ * sizeof(*vqs), GFP_KERNEL);
595cb754
MT
1586 if (!vqs)
1587 goto err_vqs;
3ab2e420 1588
c7289312 1589 vhost_work_init(&vs->vs_completion_work, vhost_scsi_complete_cmd_work);
1a1ff825 1590 vhost_work_init(&vs->vs_event_work, vhost_scsi_evt_work);
a6c9af87 1591
c7289312
AH
1592 vs->vs_events_nr = 0;
1593 vs->vs_events_missed = false;
057cbf49 1594
c7289312
AH
1595 vqs[VHOST_SCSI_VQ_CTL] = &vs->vqs[VHOST_SCSI_VQ_CTL].vq;
1596 vqs[VHOST_SCSI_VQ_EVT] = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
1597 vs->vqs[VHOST_SCSI_VQ_CTL].vq.handle_kick = vhost_scsi_ctl_handle_kick;
1598 vs->vqs[VHOST_SCSI_VQ_EVT].vq.handle_kick = vhost_scsi_evt_handle_kick;
3ab2e420 1599 for (i = VHOST_SCSI_VQ_IO; i < VHOST_SCSI_MAX_VQ; i++) {
c7289312
AH
1600 vqs[i] = &vs->vqs[i].vq;
1601 vs->vqs[i].vq.handle_kick = vhost_scsi_handle_kick;
3ab2e420 1602 }
59566b6e 1603 vhost_dev_init(&vs->dev, vqs, VHOST_SCSI_MAX_VQ);
f2f0173d 1604
1a1ff825 1605 vhost_scsi_init_inflight(vs, NULL);
f2f0173d 1606
c7289312 1607 f->private_data = vs;
057cbf49 1608 return 0;
595cb754 1609
595cb754 1610err_vqs:
68404441 1611 kvfree(vs);
595cb754
MT
1612err_vs:
1613 return r;
057cbf49
NB
1614}
1615
1616static int vhost_scsi_release(struct inode *inode, struct file *f)
1617{
c7289312 1618 struct vhost_scsi *vs = f->private_data;
67e18cf9 1619 struct vhost_scsi_target t;
057cbf49 1620
c7289312
AH
1621 mutex_lock(&vs->dev.mutex);
1622 memcpy(t.vhost_wwpn, vs->vs_vhost_wwpn, sizeof(t.vhost_wwpn));
1623 mutex_unlock(&vs->dev.mutex);
1624 vhost_scsi_clear_endpoint(vs, &t);
1625 vhost_dev_stop(&vs->dev);
1626 vhost_dev_cleanup(&vs->dev, false);
a6c9af87 1627 /* Jobs can re-queue themselves in evt kick handler. Do extra flush. */
c7289312
AH
1628 vhost_scsi_flush(vs);
1629 kfree(vs->dev.vqs);
68404441 1630 kvfree(vs);
057cbf49
NB
1631 return 0;
1632}
1633
683bd967
AH
1634static long
1635vhost_scsi_ioctl(struct file *f,
1636 unsigned int ioctl,
1637 unsigned long arg)
057cbf49
NB
1638{
1639 struct vhost_scsi *vs = f->private_data;
1640 struct vhost_scsi_target backend;
1641 void __user *argp = (void __user *)arg;
1642 u64 __user *featurep = argp;
11c63418
AH
1643 u32 __user *eventsp = argp;
1644 u32 events_missed;
057cbf49 1645 u64 features;
101998f6 1646 int r, abi_version = VHOST_SCSI_ABI_VERSION;
3ab2e420 1647 struct vhost_virtqueue *vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
057cbf49
NB
1648
1649 switch (ioctl) {
1650 case VHOST_SCSI_SET_ENDPOINT:
1651 if (copy_from_user(&backend, argp, sizeof backend))
1652 return -EFAULT;
6de7145c
MT
1653 if (backend.reserved != 0)
1654 return -EOPNOTSUPP;
057cbf49
NB
1655
1656 return vhost_scsi_set_endpoint(vs, &backend);
1657 case VHOST_SCSI_CLEAR_ENDPOINT:
1658 if (copy_from_user(&backend, argp, sizeof backend))
1659 return -EFAULT;
6de7145c
MT
1660 if (backend.reserved != 0)
1661 return -EOPNOTSUPP;
057cbf49
NB
1662
1663 return vhost_scsi_clear_endpoint(vs, &backend);
1664 case VHOST_SCSI_GET_ABI_VERSION:
101998f6 1665 if (copy_to_user(argp, &abi_version, sizeof abi_version))
057cbf49
NB
1666 return -EFAULT;
1667 return 0;
11c63418
AH
1668 case VHOST_SCSI_SET_EVENTS_MISSED:
1669 if (get_user(events_missed, eventsp))
1670 return -EFAULT;
1671 mutex_lock(&vq->mutex);
1672 vs->vs_events_missed = events_missed;
1673 mutex_unlock(&vq->mutex);
1674 return 0;
1675 case VHOST_SCSI_GET_EVENTS_MISSED:
1676 mutex_lock(&vq->mutex);
1677 events_missed = vs->vs_events_missed;
1678 mutex_unlock(&vq->mutex);
1679 if (put_user(events_missed, eventsp))
1680 return -EFAULT;
1681 return 0;
057cbf49 1682 case VHOST_GET_FEATURES:
5dade710 1683 features = VHOST_SCSI_FEATURES;
057cbf49
NB
1684 if (copy_to_user(featurep, &features, sizeof features))
1685 return -EFAULT;
1686 return 0;
1687 case VHOST_SET_FEATURES:
1688 if (copy_from_user(&features, featurep, sizeof features))
1689 return -EFAULT;
1690 return vhost_scsi_set_features(vs, features);
1691 default:
1692 mutex_lock(&vs->dev.mutex);
935cdee7
MT
1693 r = vhost_dev_ioctl(&vs->dev, ioctl, argp);
1694 /* TODO: flush backend after dev ioctl. */
1695 if (r == -ENOIOCTLCMD)
1696 r = vhost_vring_ioctl(&vs->dev, ioctl, argp);
057cbf49
NB
1697 mutex_unlock(&vs->dev.mutex);
1698 return r;
1699 }
1700}
1701
101998f6
NB
1702#ifdef CONFIG_COMPAT
1703static long vhost_scsi_compat_ioctl(struct file *f, unsigned int ioctl,
1704 unsigned long arg)
1705{
1706 return vhost_scsi_ioctl(f, ioctl, (unsigned long)compat_ptr(arg));
1707}
1708#endif
1709
057cbf49
NB
1710static const struct file_operations vhost_scsi_fops = {
1711 .owner = THIS_MODULE,
1712 .release = vhost_scsi_release,
1713 .unlocked_ioctl = vhost_scsi_ioctl,
101998f6
NB
1714#ifdef CONFIG_COMPAT
1715 .compat_ioctl = vhost_scsi_compat_ioctl,
1716#endif
057cbf49
NB
1717 .open = vhost_scsi_open,
1718 .llseek = noop_llseek,
1719};
1720
1721static struct miscdevice vhost_scsi_misc = {
1722 MISC_DYNAMIC_MINOR,
1723 "vhost-scsi",
1724 &vhost_scsi_fops,
1725};
1726
1727static int __init vhost_scsi_register(void)
1728{
1729 return misc_register(&vhost_scsi_misc);
1730}
1731
1732static int vhost_scsi_deregister(void)
1733{
1734 return misc_deregister(&vhost_scsi_misc);
1735}
1736
1a1ff825 1737static char *vhost_scsi_dump_proto_id(struct vhost_scsi_tport *tport)
057cbf49
NB
1738{
1739 switch (tport->tport_proto_id) {
1740 case SCSI_PROTOCOL_SAS:
1741 return "SAS";
1742 case SCSI_PROTOCOL_FCP:
1743 return "FCP";
1744 case SCSI_PROTOCOL_ISCSI:
1745 return "iSCSI";
1746 default:
1747 break;
1748 }
1749
1750 return "Unknown";
1751}
1752
683bd967 1753static void
1a1ff825 1754vhost_scsi_do_plug(struct vhost_scsi_tpg *tpg,
683bd967 1755 struct se_lun *lun, bool plug)
a6c9af87
AH
1756{
1757
1758 struct vhost_scsi *vs = tpg->vhost_scsi;
1759 struct vhost_virtqueue *vq;
1760 u32 reason;
1761
1762 if (!vs)
1763 return;
1764
1765 mutex_lock(&vs->dev.mutex);
a6c9af87
AH
1766
1767 if (plug)
1768 reason = VIRTIO_SCSI_EVT_RESET_RESCAN;
1769 else
1770 reason = VIRTIO_SCSI_EVT_RESET_REMOVED;
1771
3ab2e420 1772 vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
a6c9af87 1773 mutex_lock(&vq->mutex);
ea16c514 1774 if (vhost_has_feature(vq, VIRTIO_SCSI_F_HOTPLUG))
1a1ff825 1775 vhost_scsi_send_evt(vs, tpg, lun,
ea16c514 1776 VIRTIO_SCSI_T_TRANSPORT_RESET, reason);
a6c9af87
AH
1777 mutex_unlock(&vq->mutex);
1778 mutex_unlock(&vs->dev.mutex);
1779}
1780
1a1ff825 1781static void vhost_scsi_hotplug(struct vhost_scsi_tpg *tpg, struct se_lun *lun)
a6c9af87 1782{
1a1ff825 1783 vhost_scsi_do_plug(tpg, lun, true);
a6c9af87
AH
1784}
1785
1a1ff825 1786static void vhost_scsi_hotunplug(struct vhost_scsi_tpg *tpg, struct se_lun *lun)
a6c9af87 1787{
1a1ff825 1788 vhost_scsi_do_plug(tpg, lun, false);
a6c9af87
AH
1789}
1790
1a1ff825 1791static int vhost_scsi_port_link(struct se_portal_group *se_tpg,
683bd967 1792 struct se_lun *lun)
057cbf49 1793{
1a1ff825
NB
1794 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
1795 struct vhost_scsi_tpg, se_tpg);
057cbf49 1796
1a1ff825 1797 mutex_lock(&vhost_scsi_mutex);
a6c9af87 1798
98718312
AH
1799 mutex_lock(&tpg->tv_tpg_mutex);
1800 tpg->tv_tpg_port_count++;
1801 mutex_unlock(&tpg->tv_tpg_mutex);
057cbf49 1802
1a1ff825 1803 vhost_scsi_hotplug(tpg, lun);
a6c9af87 1804
1a1ff825 1805 mutex_unlock(&vhost_scsi_mutex);
a6c9af87 1806
057cbf49
NB
1807 return 0;
1808}
1809
1a1ff825 1810static void vhost_scsi_port_unlink(struct se_portal_group *se_tpg,
683bd967 1811 struct se_lun *lun)
057cbf49 1812{
1a1ff825
NB
1813 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
1814 struct vhost_scsi_tpg, se_tpg);
057cbf49 1815
1a1ff825 1816 mutex_lock(&vhost_scsi_mutex);
a6c9af87 1817
98718312
AH
1818 mutex_lock(&tpg->tv_tpg_mutex);
1819 tpg->tv_tpg_port_count--;
1820 mutex_unlock(&tpg->tv_tpg_mutex);
a6c9af87 1821
1a1ff825 1822 vhost_scsi_hotunplug(tpg, lun);
a6c9af87 1823
1a1ff825 1824 mutex_unlock(&vhost_scsi_mutex);
057cbf49
NB
1825}
1826
683bd967 1827static struct se_node_acl *
1a1ff825 1828vhost_scsi_make_nodeacl(struct se_portal_group *se_tpg,
683bd967
AH
1829 struct config_group *group,
1830 const char *name)
057cbf49
NB
1831{
1832 struct se_node_acl *se_nacl, *se_nacl_new;
1a1ff825 1833 struct vhost_scsi_nacl *nacl;
057cbf49
NB
1834 u64 wwpn = 0;
1835 u32 nexus_depth;
1836
1a1ff825 1837 /* vhost_scsi_parse_wwn(name, &wwpn, 1) < 0)
057cbf49 1838 return ERR_PTR(-EINVAL); */
1a1ff825 1839 se_nacl_new = vhost_scsi_alloc_fabric_acl(se_tpg);
057cbf49
NB
1840 if (!se_nacl_new)
1841 return ERR_PTR(-ENOMEM);
1842
1843 nexus_depth = 1;
1844 /*
1845 * se_nacl_new may be released by core_tpg_add_initiator_node_acl()
1846 * when converting a NodeACL from demo mode -> explict
1847 */
1848 se_nacl = core_tpg_add_initiator_node_acl(se_tpg, se_nacl_new,
1849 name, nexus_depth);
1850 if (IS_ERR(se_nacl)) {
1a1ff825 1851 vhost_scsi_release_fabric_acl(se_tpg, se_nacl_new);
057cbf49
NB
1852 return se_nacl;
1853 }
1854 /*
1a1ff825 1855 * Locate our struct vhost_scsi_nacl and set the FC Nport WWPN
057cbf49 1856 */
1a1ff825 1857 nacl = container_of(se_nacl, struct vhost_scsi_nacl, se_node_acl);
057cbf49
NB
1858 nacl->iport_wwpn = wwpn;
1859
1860 return se_nacl;
1861}
1862
1a1ff825 1863static void vhost_scsi_drop_nodeacl(struct se_node_acl *se_acl)
057cbf49 1864{
1a1ff825
NB
1865 struct vhost_scsi_nacl *nacl = container_of(se_acl,
1866 struct vhost_scsi_nacl, se_node_acl);
057cbf49
NB
1867 core_tpg_del_initiator_node_acl(se_acl->se_tpg, se_acl, 1);
1868 kfree(nacl);
1869}
1870
1a1ff825 1871static void vhost_scsi_free_cmd_map_res(struct vhost_scsi_nexus *nexus,
3aee26b4
NB
1872 struct se_session *se_sess)
1873{
1a1ff825 1874 struct vhost_scsi_cmd *tv_cmd;
3aee26b4
NB
1875 unsigned int i;
1876
1877 if (!se_sess->sess_cmd_map)
1878 return;
1879
1a1ff825
NB
1880 for (i = 0; i < VHOST_SCSI_DEFAULT_TAGS; i++) {
1881 tv_cmd = &((struct vhost_scsi_cmd *)se_sess->sess_cmd_map)[i];
3aee26b4
NB
1882
1883 kfree(tv_cmd->tvc_sgl);
b1935f68 1884 kfree(tv_cmd->tvc_prot_sgl);
3aee26b4
NB
1885 kfree(tv_cmd->tvc_upages);
1886 }
1887}
1888
b1d75fe5
NB
1889static ssize_t vhost_scsi_tpg_attrib_store_fabric_prot_type(
1890 struct se_portal_group *se_tpg,
1891 const char *page,
1892 size_t count)
1893{
1894 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
1895 struct vhost_scsi_tpg, se_tpg);
1896 unsigned long val;
1897 int ret = kstrtoul(page, 0, &val);
1898
1899 if (ret) {
1900 pr_err("kstrtoul() returned %d for fabric_prot_type\n", ret);
1901 return ret;
1902 }
1903 if (val != 0 && val != 1 && val != 3) {
1904 pr_err("Invalid vhost_scsi fabric_prot_type: %lu\n", val);
1905 return -EINVAL;
1906 }
1907 tpg->tv_fabric_prot_type = val;
1908
1909 return count;
1910}
1911
1912static ssize_t vhost_scsi_tpg_attrib_show_fabric_prot_type(
1913 struct se_portal_group *se_tpg,
1914 char *page)
1915{
1916 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
1917 struct vhost_scsi_tpg, se_tpg);
1918
1919 return sprintf(page, "%d\n", tpg->tv_fabric_prot_type);
1920}
1921TF_TPG_ATTRIB_ATTR(vhost_scsi, fabric_prot_type, S_IRUGO | S_IWUSR);
1922
1923static struct configfs_attribute *vhost_scsi_tpg_attrib_attrs[] = {
1924 &vhost_scsi_tpg_attrib_fabric_prot_type.attr,
1925 NULL,
1926};
1927
1a1ff825 1928static int vhost_scsi_make_nexus(struct vhost_scsi_tpg *tpg,
683bd967 1929 const char *name)
057cbf49
NB
1930{
1931 struct se_portal_group *se_tpg;
3aee26b4 1932 struct se_session *se_sess;
1a1ff825
NB
1933 struct vhost_scsi_nexus *tv_nexus;
1934 struct vhost_scsi_cmd *tv_cmd;
3aee26b4 1935 unsigned int i;
057cbf49 1936
98718312
AH
1937 mutex_lock(&tpg->tv_tpg_mutex);
1938 if (tpg->tpg_nexus) {
1939 mutex_unlock(&tpg->tv_tpg_mutex);
1940 pr_debug("tpg->tpg_nexus already exists\n");
057cbf49
NB
1941 return -EEXIST;
1942 }
98718312 1943 se_tpg = &tpg->se_tpg;
057cbf49 1944
1a1ff825 1945 tv_nexus = kzalloc(sizeof(struct vhost_scsi_nexus), GFP_KERNEL);
057cbf49 1946 if (!tv_nexus) {
98718312 1947 mutex_unlock(&tpg->tv_tpg_mutex);
1a1ff825 1948 pr_err("Unable to allocate struct vhost_scsi_nexus\n");
057cbf49
NB
1949 return -ENOMEM;
1950 }
1951 /*
4824d3bf 1952 * Initialize the struct se_session pointer and setup tagpool
1a1ff825 1953 * for struct vhost_scsi_cmd descriptors
057cbf49 1954 */
4824d3bf 1955 tv_nexus->tvn_se_sess = transport_init_session_tags(
1a1ff825
NB
1956 VHOST_SCSI_DEFAULT_TAGS,
1957 sizeof(struct vhost_scsi_cmd),
95e7c434 1958 TARGET_PROT_DIN_PASS | TARGET_PROT_DOUT_PASS);
057cbf49 1959 if (IS_ERR(tv_nexus->tvn_se_sess)) {
98718312 1960 mutex_unlock(&tpg->tv_tpg_mutex);
057cbf49
NB
1961 kfree(tv_nexus);
1962 return -ENOMEM;
1963 }
3aee26b4 1964 se_sess = tv_nexus->tvn_se_sess;
1a1ff825
NB
1965 for (i = 0; i < VHOST_SCSI_DEFAULT_TAGS; i++) {
1966 tv_cmd = &((struct vhost_scsi_cmd *)se_sess->sess_cmd_map)[i];
3aee26b4
NB
1967
1968 tv_cmd->tvc_sgl = kzalloc(sizeof(struct scatterlist) *
1a1ff825 1969 VHOST_SCSI_PREALLOC_SGLS, GFP_KERNEL);
3aee26b4
NB
1970 if (!tv_cmd->tvc_sgl) {
1971 mutex_unlock(&tpg->tv_tpg_mutex);
1972 pr_err("Unable to allocate tv_cmd->tvc_sgl\n");
1973 goto out;
1974 }
1975
1976 tv_cmd->tvc_upages = kzalloc(sizeof(struct page *) *
1a1ff825 1977 VHOST_SCSI_PREALLOC_UPAGES, GFP_KERNEL);
3aee26b4
NB
1978 if (!tv_cmd->tvc_upages) {
1979 mutex_unlock(&tpg->tv_tpg_mutex);
1980 pr_err("Unable to allocate tv_cmd->tvc_upages\n");
1981 goto out;
1982 }
b1935f68
NB
1983
1984 tv_cmd->tvc_prot_sgl = kzalloc(sizeof(struct scatterlist) *
1a1ff825 1985 VHOST_SCSI_PREALLOC_PROT_SGLS, GFP_KERNEL);
b1935f68
NB
1986 if (!tv_cmd->tvc_prot_sgl) {
1987 mutex_unlock(&tpg->tv_tpg_mutex);
1988 pr_err("Unable to allocate tv_cmd->tvc_prot_sgl\n");
1989 goto out;
1990 }
3aee26b4 1991 }
057cbf49
NB
1992 /*
1993 * Since we are running in 'demo mode' this call with generate a
1a1ff825 1994 * struct se_node_acl for the vhost_scsi struct se_portal_group with
057cbf49
NB
1995 * the SCSI Initiator port name of the passed configfs group 'name'.
1996 */
1997 tv_nexus->tvn_se_sess->se_node_acl = core_tpg_check_initiator_node_acl(
1998 se_tpg, (unsigned char *)name);
1999 if (!tv_nexus->tvn_se_sess->se_node_acl) {
98718312 2000 mutex_unlock(&tpg->tv_tpg_mutex);
057cbf49
NB
2001 pr_debug("core_tpg_check_initiator_node_acl() failed"
2002 " for %s\n", name);
3aee26b4 2003 goto out;
057cbf49
NB
2004 }
2005 /*
2f450cc1 2006 * Now register the TCM vhost virtual I_T Nexus as active.
057cbf49 2007 */
2f450cc1 2008 transport_register_session(se_tpg, tv_nexus->tvn_se_sess->se_node_acl,
057cbf49 2009 tv_nexus->tvn_se_sess, tv_nexus);
98718312 2010 tpg->tpg_nexus = tv_nexus;
057cbf49 2011
98718312 2012 mutex_unlock(&tpg->tv_tpg_mutex);
057cbf49 2013 return 0;
3aee26b4
NB
2014
2015out:
1a1ff825 2016 vhost_scsi_free_cmd_map_res(tv_nexus, se_sess);
3aee26b4
NB
2017 transport_free_session(se_sess);
2018 kfree(tv_nexus);
2019 return -ENOMEM;
057cbf49
NB
2020}
2021
1a1ff825 2022static int vhost_scsi_drop_nexus(struct vhost_scsi_tpg *tpg)
057cbf49
NB
2023{
2024 struct se_session *se_sess;
1a1ff825 2025 struct vhost_scsi_nexus *tv_nexus;
057cbf49
NB
2026
2027 mutex_lock(&tpg->tv_tpg_mutex);
2028 tv_nexus = tpg->tpg_nexus;
2029 if (!tv_nexus) {
2030 mutex_unlock(&tpg->tv_tpg_mutex);
2031 return -ENODEV;
2032 }
2033
2034 se_sess = tv_nexus->tvn_se_sess;
2035 if (!se_sess) {
2036 mutex_unlock(&tpg->tv_tpg_mutex);
2037 return -ENODEV;
2038 }
2039
101998f6 2040 if (tpg->tv_tpg_port_count != 0) {
057cbf49 2041 mutex_unlock(&tpg->tv_tpg_mutex);
101998f6 2042 pr_err("Unable to remove TCM_vhost I_T Nexus with"
057cbf49 2043 " active TPG port count: %d\n",
101998f6
NB
2044 tpg->tv_tpg_port_count);
2045 return -EBUSY;
057cbf49
NB
2046 }
2047
101998f6 2048 if (tpg->tv_tpg_vhost_count != 0) {
057cbf49 2049 mutex_unlock(&tpg->tv_tpg_mutex);
101998f6 2050 pr_err("Unable to remove TCM_vhost I_T Nexus with"
057cbf49 2051 " active TPG vhost count: %d\n",
101998f6
NB
2052 tpg->tv_tpg_vhost_count);
2053 return -EBUSY;
057cbf49
NB
2054 }
2055
101998f6 2056 pr_debug("TCM_vhost_ConfigFS: Removing I_T Nexus to emulated"
1a1ff825 2057 " %s Initiator Port: %s\n", vhost_scsi_dump_proto_id(tpg->tport),
057cbf49 2058 tv_nexus->tvn_se_sess->se_node_acl->initiatorname);
3aee26b4 2059
1a1ff825 2060 vhost_scsi_free_cmd_map_res(tv_nexus, se_sess);
057cbf49 2061 /*
101998f6 2062 * Release the SCSI I_T Nexus to the emulated vhost Target Port
057cbf49
NB
2063 */
2064 transport_deregister_session(tv_nexus->tvn_se_sess);
2065 tpg->tpg_nexus = NULL;
2066 mutex_unlock(&tpg->tv_tpg_mutex);
2067
2068 kfree(tv_nexus);
2069 return 0;
2070}
2071
1a1ff825 2072static ssize_t vhost_scsi_tpg_show_nexus(struct se_portal_group *se_tpg,
683bd967 2073 char *page)
057cbf49 2074{
1a1ff825
NB
2075 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
2076 struct vhost_scsi_tpg, se_tpg);
2077 struct vhost_scsi_nexus *tv_nexus;
057cbf49
NB
2078 ssize_t ret;
2079
98718312
AH
2080 mutex_lock(&tpg->tv_tpg_mutex);
2081 tv_nexus = tpg->tpg_nexus;
057cbf49 2082 if (!tv_nexus) {
98718312 2083 mutex_unlock(&tpg->tv_tpg_mutex);
057cbf49
NB
2084 return -ENODEV;
2085 }
2086 ret = snprintf(page, PAGE_SIZE, "%s\n",
2087 tv_nexus->tvn_se_sess->se_node_acl->initiatorname);
98718312 2088 mutex_unlock(&tpg->tv_tpg_mutex);
057cbf49
NB
2089
2090 return ret;
2091}
2092
1a1ff825 2093static ssize_t vhost_scsi_tpg_store_nexus(struct se_portal_group *se_tpg,
683bd967
AH
2094 const char *page,
2095 size_t count)
057cbf49 2096{
1a1ff825
NB
2097 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
2098 struct vhost_scsi_tpg, se_tpg);
2099 struct vhost_scsi_tport *tport_wwn = tpg->tport;
2100 unsigned char i_port[VHOST_SCSI_NAMELEN], *ptr, *port_ptr;
057cbf49
NB
2101 int ret;
2102 /*
2103 * Shutdown the active I_T nexus if 'NULL' is passed..
2104 */
2105 if (!strncmp(page, "NULL", 4)) {
1a1ff825 2106 ret = vhost_scsi_drop_nexus(tpg);
057cbf49
NB
2107 return (!ret) ? count : ret;
2108 }
2109 /*
2110 * Otherwise make sure the passed virtual Initiator port WWN matches
1a1ff825
NB
2111 * the fabric protocol_id set in vhost_scsi_make_tport(), and call
2112 * vhost_scsi_make_nexus().
057cbf49 2113 */
1a1ff825 2114 if (strlen(page) >= VHOST_SCSI_NAMELEN) {
057cbf49 2115 pr_err("Emulated NAA Sas Address: %s, exceeds"
1a1ff825 2116 " max: %d\n", page, VHOST_SCSI_NAMELEN);
057cbf49
NB
2117 return -EINVAL;
2118 }
1a1ff825 2119 snprintf(&i_port[0], VHOST_SCSI_NAMELEN, "%s", page);
057cbf49
NB
2120
2121 ptr = strstr(i_port, "naa.");
2122 if (ptr) {
2123 if (tport_wwn->tport_proto_id != SCSI_PROTOCOL_SAS) {
2124 pr_err("Passed SAS Initiator Port %s does not"
2125 " match target port protoid: %s\n", i_port,
1a1ff825 2126 vhost_scsi_dump_proto_id(tport_wwn));
057cbf49
NB
2127 return -EINVAL;
2128 }
2129 port_ptr = &i_port[0];
2130 goto check_newline;
2131 }
2132 ptr = strstr(i_port, "fc.");
2133 if (ptr) {
2134 if (tport_wwn->tport_proto_id != SCSI_PROTOCOL_FCP) {
2135 pr_err("Passed FCP Initiator Port %s does not"
2136 " match target port protoid: %s\n", i_port,
1a1ff825 2137 vhost_scsi_dump_proto_id(tport_wwn));
057cbf49
NB
2138 return -EINVAL;
2139 }
2140 port_ptr = &i_port[3]; /* Skip over "fc." */
2141 goto check_newline;
2142 }
2143 ptr = strstr(i_port, "iqn.");
2144 if (ptr) {
2145 if (tport_wwn->tport_proto_id != SCSI_PROTOCOL_ISCSI) {
2146 pr_err("Passed iSCSI Initiator Port %s does not"
2147 " match target port protoid: %s\n", i_port,
1a1ff825 2148 vhost_scsi_dump_proto_id(tport_wwn));
057cbf49
NB
2149 return -EINVAL;
2150 }
2151 port_ptr = &i_port[0];
2152 goto check_newline;
2153 }
2154 pr_err("Unable to locate prefix for emulated Initiator Port:"
2155 " %s\n", i_port);
2156 return -EINVAL;
2157 /*
2158 * Clear any trailing newline for the NAA WWN
2159 */
2160check_newline:
2161 if (i_port[strlen(i_port)-1] == '\n')
2162 i_port[strlen(i_port)-1] = '\0';
2163
1a1ff825 2164 ret = vhost_scsi_make_nexus(tpg, port_ptr);
057cbf49
NB
2165 if (ret < 0)
2166 return ret;
2167
2168 return count;
2169}
2170
1a1ff825 2171TF_TPG_BASE_ATTR(vhost_scsi, nexus, S_IRUGO | S_IWUSR);
057cbf49 2172
1a1ff825
NB
2173static struct configfs_attribute *vhost_scsi_tpg_attrs[] = {
2174 &vhost_scsi_tpg_nexus.attr,
057cbf49
NB
2175 NULL,
2176};
2177
683bd967 2178static struct se_portal_group *
1a1ff825 2179vhost_scsi_make_tpg(struct se_wwn *wwn,
683bd967
AH
2180 struct config_group *group,
2181 const char *name)
057cbf49 2182{
1a1ff825
NB
2183 struct vhost_scsi_tport *tport = container_of(wwn,
2184 struct vhost_scsi_tport, tport_wwn);
057cbf49 2185
1a1ff825 2186 struct vhost_scsi_tpg *tpg;
59c816c1 2187 u16 tpgt;
057cbf49
NB
2188 int ret;
2189
2190 if (strstr(name, "tpgt_") != name)
2191 return ERR_PTR(-EINVAL);
59c816c1 2192 if (kstrtou16(name + 5, 10, &tpgt) || tpgt >= VHOST_SCSI_MAX_TARGET)
057cbf49
NB
2193 return ERR_PTR(-EINVAL);
2194
1a1ff825 2195 tpg = kzalloc(sizeof(struct vhost_scsi_tpg), GFP_KERNEL);
057cbf49 2196 if (!tpg) {
1a1ff825 2197 pr_err("Unable to allocate struct vhost_scsi_tpg");
057cbf49
NB
2198 return ERR_PTR(-ENOMEM);
2199 }
2200 mutex_init(&tpg->tv_tpg_mutex);
2201 INIT_LIST_HEAD(&tpg->tv_tpg_list);
2202 tpg->tport = tport;
2203 tpg->tport_tpgt = tpgt;
2204
9ac8928e 2205 ret = core_tpg_register(&vhost_scsi_ops, wwn,
057cbf49
NB
2206 &tpg->se_tpg, tpg, TRANSPORT_TPG_TYPE_NORMAL);
2207 if (ret < 0) {
2208 kfree(tpg);
2209 return NULL;
2210 }
1a1ff825
NB
2211 mutex_lock(&vhost_scsi_mutex);
2212 list_add_tail(&tpg->tv_tpg_list, &vhost_scsi_list);
2213 mutex_unlock(&vhost_scsi_mutex);
057cbf49
NB
2214
2215 return &tpg->se_tpg;
2216}
2217
1a1ff825 2218static void vhost_scsi_drop_tpg(struct se_portal_group *se_tpg)
057cbf49 2219{
1a1ff825
NB
2220 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
2221 struct vhost_scsi_tpg, se_tpg);
057cbf49 2222
1a1ff825 2223 mutex_lock(&vhost_scsi_mutex);
057cbf49 2224 list_del(&tpg->tv_tpg_list);
1a1ff825 2225 mutex_unlock(&vhost_scsi_mutex);
057cbf49 2226 /*
101998f6 2227 * Release the virtual I_T Nexus for this vhost TPG
057cbf49 2228 */
1a1ff825 2229 vhost_scsi_drop_nexus(tpg);
057cbf49
NB
2230 /*
2231 * Deregister the se_tpg from TCM..
2232 */
2233 core_tpg_deregister(se_tpg);
2234 kfree(tpg);
2235}
2236
683bd967 2237static struct se_wwn *
1a1ff825 2238vhost_scsi_make_tport(struct target_fabric_configfs *tf,
683bd967
AH
2239 struct config_group *group,
2240 const char *name)
057cbf49 2241{
1a1ff825 2242 struct vhost_scsi_tport *tport;
057cbf49
NB
2243 char *ptr;
2244 u64 wwpn = 0;
2245 int off = 0;
2246
1a1ff825 2247 /* if (vhost_scsi_parse_wwn(name, &wwpn, 1) < 0)
057cbf49
NB
2248 return ERR_PTR(-EINVAL); */
2249
1a1ff825 2250 tport = kzalloc(sizeof(struct vhost_scsi_tport), GFP_KERNEL);
057cbf49 2251 if (!tport) {
1a1ff825 2252 pr_err("Unable to allocate struct vhost_scsi_tport");
057cbf49
NB
2253 return ERR_PTR(-ENOMEM);
2254 }
2255 tport->tport_wwpn = wwpn;
2256 /*
2257 * Determine the emulated Protocol Identifier and Target Port Name
2258 * based on the incoming configfs directory name.
2259 */
2260 ptr = strstr(name, "naa.");
2261 if (ptr) {
2262 tport->tport_proto_id = SCSI_PROTOCOL_SAS;
2263 goto check_len;
2264 }
2265 ptr = strstr(name, "fc.");
2266 if (ptr) {
2267 tport->tport_proto_id = SCSI_PROTOCOL_FCP;
2268 off = 3; /* Skip over "fc." */
2269 goto check_len;
2270 }
2271 ptr = strstr(name, "iqn.");
2272 if (ptr) {
2273 tport->tport_proto_id = SCSI_PROTOCOL_ISCSI;
2274 goto check_len;
2275 }
2276
2277 pr_err("Unable to locate prefix for emulated Target Port:"
2278 " %s\n", name);
2279 kfree(tport);
2280 return ERR_PTR(-EINVAL);
2281
2282check_len:
1a1ff825 2283 if (strlen(name) >= VHOST_SCSI_NAMELEN) {
057cbf49 2284 pr_err("Emulated %s Address: %s, exceeds"
1a1ff825
NB
2285 " max: %d\n", name, vhost_scsi_dump_proto_id(tport),
2286 VHOST_SCSI_NAMELEN);
057cbf49
NB
2287 kfree(tport);
2288 return ERR_PTR(-EINVAL);
2289 }
1a1ff825 2290 snprintf(&tport->tport_name[0], VHOST_SCSI_NAMELEN, "%s", &name[off]);
057cbf49
NB
2291
2292 pr_debug("TCM_VHost_ConfigFS: Allocated emulated Target"
1a1ff825 2293 " %s Address: %s\n", vhost_scsi_dump_proto_id(tport), name);
057cbf49
NB
2294
2295 return &tport->tport_wwn;
2296}
2297
1a1ff825 2298static void vhost_scsi_drop_tport(struct se_wwn *wwn)
057cbf49 2299{
1a1ff825
NB
2300 struct vhost_scsi_tport *tport = container_of(wwn,
2301 struct vhost_scsi_tport, tport_wwn);
057cbf49
NB
2302
2303 pr_debug("TCM_VHost_ConfigFS: Deallocating emulated Target"
1a1ff825 2304 " %s Address: %s\n", vhost_scsi_dump_proto_id(tport),
057cbf49
NB
2305 tport->tport_name);
2306
2307 kfree(tport);
2308}
2309
683bd967 2310static ssize_t
1a1ff825 2311vhost_scsi_wwn_show_attr_version(struct target_fabric_configfs *tf,
683bd967 2312 char *page)
057cbf49
NB
2313{
2314 return sprintf(page, "TCM_VHOST fabric module %s on %s/%s"
1a1ff825 2315 "on "UTS_RELEASE"\n", VHOST_SCSI_VERSION, utsname()->sysname,
057cbf49
NB
2316 utsname()->machine);
2317}
2318
1a1ff825 2319TF_WWN_ATTR_RO(vhost_scsi, version);
057cbf49 2320
1a1ff825
NB
2321static struct configfs_attribute *vhost_scsi_wwn_attrs[] = {
2322 &vhost_scsi_wwn_version.attr,
057cbf49
NB
2323 NULL,
2324};
2325
1a1ff825 2326static struct target_core_fabric_ops vhost_scsi_ops = {
9ac8928e
CH
2327 .module = THIS_MODULE,
2328 .name = "vhost",
1a1ff825
NB
2329 .get_fabric_name = vhost_scsi_get_fabric_name,
2330 .get_fabric_proto_ident = vhost_scsi_get_fabric_proto_ident,
2331 .tpg_get_wwn = vhost_scsi_get_fabric_wwn,
2332 .tpg_get_tag = vhost_scsi_get_tpgt,
2333 .tpg_get_default_depth = vhost_scsi_get_default_depth,
2334 .tpg_get_pr_transport_id = vhost_scsi_get_pr_transport_id,
2335 .tpg_get_pr_transport_id_len = vhost_scsi_get_pr_transport_id_len,
2336 .tpg_parse_pr_out_transport_id = vhost_scsi_parse_pr_out_transport_id,
2337 .tpg_check_demo_mode = vhost_scsi_check_true,
2338 .tpg_check_demo_mode_cache = vhost_scsi_check_true,
2339 .tpg_check_demo_mode_write_protect = vhost_scsi_check_false,
2340 .tpg_check_prod_mode_write_protect = vhost_scsi_check_false,
b1d75fe5 2341 .tpg_check_prot_fabric_only = vhost_scsi_check_prot_fabric_only,
1a1ff825
NB
2342 .tpg_alloc_fabric_acl = vhost_scsi_alloc_fabric_acl,
2343 .tpg_release_fabric_acl = vhost_scsi_release_fabric_acl,
2344 .tpg_get_inst_index = vhost_scsi_tpg_get_inst_index,
2345 .release_cmd = vhost_scsi_release_cmd,
084ed45b 2346 .check_stop_free = vhost_scsi_check_stop_free,
1a1ff825
NB
2347 .shutdown_session = vhost_scsi_shutdown_session,
2348 .close_session = vhost_scsi_close_session,
2349 .sess_get_index = vhost_scsi_sess_get_index,
057cbf49 2350 .sess_get_initiator_sid = NULL,
1a1ff825
NB
2351 .write_pending = vhost_scsi_write_pending,
2352 .write_pending_status = vhost_scsi_write_pending_status,
2353 .set_default_node_attributes = vhost_scsi_set_default_node_attrs,
2354 .get_task_tag = vhost_scsi_get_task_tag,
2355 .get_cmd_state = vhost_scsi_get_cmd_state,
2356 .queue_data_in = vhost_scsi_queue_data_in,
2357 .queue_status = vhost_scsi_queue_status,
2358 .queue_tm_rsp = vhost_scsi_queue_tm_rsp,
2359 .aborted_task = vhost_scsi_aborted_task,
057cbf49
NB
2360 /*
2361 * Setup callers for generic logic in target_core_fabric_configfs.c
2362 */
1a1ff825
NB
2363 .fabric_make_wwn = vhost_scsi_make_tport,
2364 .fabric_drop_wwn = vhost_scsi_drop_tport,
2365 .fabric_make_tpg = vhost_scsi_make_tpg,
2366 .fabric_drop_tpg = vhost_scsi_drop_tpg,
2367 .fabric_post_link = vhost_scsi_port_link,
2368 .fabric_pre_unlink = vhost_scsi_port_unlink,
057cbf49
NB
2369 .fabric_make_np = NULL,
2370 .fabric_drop_np = NULL,
1a1ff825
NB
2371 .fabric_make_nodeacl = vhost_scsi_make_nodeacl,
2372 .fabric_drop_nodeacl = vhost_scsi_drop_nodeacl,
9ac8928e
CH
2373
2374 .tfc_wwn_attrs = vhost_scsi_wwn_attrs,
2375 .tfc_tpg_base_attrs = vhost_scsi_tpg_attrs,
2376 .tfc_tpg_attrib_attrs = vhost_scsi_tpg_attrib_attrs,
057cbf49
NB
2377};
2378
9ac8928e 2379static int __init vhost_scsi_init(void)
057cbf49 2380{
9ac8928e 2381 int ret = -ENOMEM;
057cbf49 2382
9ac8928e 2383 pr_debug("TCM_VHOST fabric module %s on %s/%s"
1a1ff825 2384 " on "UTS_RELEASE"\n", VHOST_SCSI_VERSION, utsname()->sysname,
057cbf49 2385 utsname()->machine);
057cbf49 2386
101998f6
NB
2387 /*
2388 * Use our own dedicated workqueue for submitting I/O into
2389 * target core to avoid contention within system_wq.
2390 */
1a1ff825
NB
2391 vhost_scsi_workqueue = alloc_workqueue("vhost_scsi", 0, 0);
2392 if (!vhost_scsi_workqueue)
057cbf49
NB
2393 goto out;
2394
2395 ret = vhost_scsi_register();
2396 if (ret < 0)
2397 goto out_destroy_workqueue;
2398
9ac8928e 2399 ret = target_register_template(&vhost_scsi_ops);
057cbf49
NB
2400 if (ret < 0)
2401 goto out_vhost_scsi_deregister;
2402
2403 return 0;
2404
2405out_vhost_scsi_deregister:
2406 vhost_scsi_deregister();
2407out_destroy_workqueue:
1a1ff825 2408 destroy_workqueue(vhost_scsi_workqueue);
057cbf49
NB
2409out:
2410 return ret;
2411};
2412
1a1ff825 2413static void vhost_scsi_exit(void)
057cbf49 2414{
9ac8928e 2415 target_unregister_template(&vhost_scsi_ops);
057cbf49 2416 vhost_scsi_deregister();
1a1ff825 2417 destroy_workqueue(vhost_scsi_workqueue);
057cbf49
NB
2418};
2419
181c04a3
MT
2420MODULE_DESCRIPTION("VHOST_SCSI series fabric driver");
2421MODULE_ALIAS("tcm_vhost");
057cbf49 2422MODULE_LICENSE("GPL");
1a1ff825
NB
2423module_init(vhost_scsi_init);
2424module_exit(vhost_scsi_exit);