blob: daf10b7fa311982078a446207b3169bd1f648cd3 [file] [log] [blame]
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001/*******************************************************************************
2 * Vhost kernel TCM fabric driver for virtio SCSI initiators
3 *
Nicholas Bellinger4c762512013-09-05 15:29:12 -07004 * (C) Copyright 2010-2013 Datera, Inc.
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07005 * (C) Copyright 2010-2012 IBM Corp.
6 *
7 * Licensed to the Linux Foundation under the General Public License (GPL) version 2.
8 *
Nicholas Bellinger4c762512013-09-05 15:29:12 -07009 * Authors: Nicholas A. Bellinger <nab@daterainc.com>
Nicholas Bellinger057cbf42012-07-18 14:31:32 -070010 * 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>
Nicholas Bellinger057cbf42012-07-18 14:31:32 -070037#include <linux/fs.h>
38#include <linux/miscdevice.h>
39#include <asm/unaligned.h>
40#include <scsi/scsi.h>
Nicholas Bellinger057cbf42012-07-18 14:31:32 -070041#include <target/target_core_base.h>
42#include <target/target_core_fabric.h>
43#include <target/target_core_fabric_configfs.h>
44#include <target/target_core_configfs.h>
45#include <target/configfs_macros.h>
46#include <linux/vhost.h>
Nicholas Bellinger057cbf42012-07-18 14:31:32 -070047#include <linux/virtio_scsi.h>
Asias He9d6064a2013-01-06 14:36:13 +080048#include <linux/llist.h>
Asias He1b7f3902013-02-06 13:20:59 +080049#include <linux/bitmap.h>
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -070050#include <linux/percpu_ida.h>
Nicholas Bellinger057cbf42012-07-18 14:31:32 -070051
Nicholas Bellinger057cbf42012-07-18 14:31:32 -070052#include "vhost.h"
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +030053
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -080054#define VHOST_SCSI_VERSION "v0.1"
55#define VHOST_SCSI_NAMELEN 256
56#define VHOST_SCSI_MAX_CDB_SIZE 32
57#define VHOST_SCSI_DEFAULT_TAGS 256
58#define VHOST_SCSI_PREALLOC_SGLS 2048
59#define VHOST_SCSI_PREALLOC_UPAGES 2048
60#define VHOST_SCSI_PREALLOC_PROT_SGLS 512
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +030061
62struct vhost_scsi_inflight {
63 /* Wait for the flush operation to finish */
64 struct completion comp;
65 /* Refcount for the inflight reqs */
66 struct kref kref;
67};
68
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -080069struct vhost_scsi_cmd {
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +030070 /* Descriptor from vhost_get_vq_desc() for virt_queue segment */
71 int tvc_vq_desc;
72 /* virtio-scsi initiator task attribute */
73 int tvc_task_attr;
Nicholas Bellinger79c14142015-01-27 13:13:12 -080074 /* virtio-scsi response incoming iovecs */
75 int tvc_in_iovs;
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +030076 /* virtio-scsi initiator data direction */
77 enum dma_data_direction tvc_data_direction;
78 /* Expected data transfer length from virtio-scsi header */
79 u32 tvc_exp_data_len;
80 /* The Tag from include/linux/virtio_scsi.h:struct virtio_scsi_cmd_req */
81 u64 tvc_tag;
82 /* The number of scatterlists associated with this cmd */
83 u32 tvc_sgl_count;
Nicholas Bellingere31885d2014-02-22 18:34:43 -080084 u32 tvc_prot_sgl_count;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -080085 /* Saved unpacked SCSI LUN for vhost_scsi_submission_work() */
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +030086 u32 tvc_lun;
87 /* Pointer to the SGL formatted memory from virtio-scsi */
88 struct scatterlist *tvc_sgl;
Nicholas Bellingerb1935f62014-02-22 18:08:24 -080089 struct scatterlist *tvc_prot_sgl;
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -070090 struct page **tvc_upages;
Nicholas Bellinger79c14142015-01-27 13:13:12 -080091 /* Pointer to response header iovec */
92 struct iovec *tvc_resp_iov;
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +030093 /* Pointer to vhost_scsi for our device */
94 struct vhost_scsi *tvc_vhost;
95 /* Pointer to vhost_virtqueue for the cmd */
96 struct vhost_virtqueue *tvc_vq;
97 /* Pointer to vhost nexus memory */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -080098 struct vhost_scsi_nexus *tvc_nexus;
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +030099 /* The TCM I/O descriptor that is accessed via container_of() */
100 struct se_cmd tvc_se_cmd;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800101 /* work item used for cmwq dispatch to vhost_scsi_submission_work() */
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300102 struct work_struct work;
103 /* Copy of the incoming SCSI command descriptor block (CDB) */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800104 unsigned char tvc_cdb[VHOST_SCSI_MAX_CDB_SIZE];
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300105 /* Sense buffer that will be mapped into outgoing status */
106 unsigned char tvc_sense_buf[TRANSPORT_SENSE_BUFFER];
107 /* Completed commands list, serviced from vhost worker thread */
108 struct llist_node tvc_completion_list;
109 /* Used to track inflight cmd */
110 struct vhost_scsi_inflight *inflight;
111};
112
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800113struct vhost_scsi_nexus {
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300114 /* Pointer to TCM session for I_T Nexus */
115 struct se_session *tvn_se_sess;
116};
117
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800118struct vhost_scsi_nacl {
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300119 /* Binary World Wide unique Port Name for Vhost Initiator port */
120 u64 iport_wwpn;
121 /* ASCII formatted WWPN for Sas Initiator port */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800122 char iport_name[VHOST_SCSI_NAMELEN];
123 /* Returned by vhost_scsi_make_nodeacl() */
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300124 struct se_node_acl se_node_acl;
125};
126
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800127struct vhost_scsi_tpg {
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300128 /* Vhost port target portal group tag for TCM */
129 u16 tport_tpgt;
130 /* Used to track number of TPG Port/Lun Links wrt to explict I_T Nexus shutdown */
131 int tv_tpg_port_count;
132 /* Used for vhost_scsi device reference to tpg_nexus, protected by tv_tpg_mutex */
133 int tv_tpg_vhost_count;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800134 /* list for vhost_scsi_list */
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300135 struct list_head tv_tpg_list;
136 /* Used to protect access for tpg_nexus */
137 struct mutex tv_tpg_mutex;
138 /* Pointer to the TCM VHost I_T Nexus for this TPG endpoint */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800139 struct vhost_scsi_nexus *tpg_nexus;
140 /* Pointer back to vhost_scsi_tport */
141 struct vhost_scsi_tport *tport;
142 /* Returned by vhost_scsi_make_tpg() */
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300143 struct se_portal_group se_tpg;
144 /* Pointer back to vhost_scsi, protected by tv_tpg_mutex */
145 struct vhost_scsi *vhost_scsi;
146};
147
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800148struct vhost_scsi_tport {
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300149 /* SCSI protocol the tport is providing */
150 u8 tport_proto_id;
151 /* Binary World Wide unique Port Name for Vhost Target port */
152 u64 tport_wwpn;
153 /* ASCII formatted WWPN for Vhost Target port */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800154 char tport_name[VHOST_SCSI_NAMELEN];
155 /* Returned by vhost_scsi_make_tport() */
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300156 struct se_wwn tport_wwn;
157};
158
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800159struct vhost_scsi_evt {
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300160 /* event to be sent to guest */
161 struct virtio_scsi_event event;
162 /* event list, serviced from vhost worker thread */
163 struct llist_node list;
164};
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700165
Nicholas Bellinger101998f2012-07-30 13:30:00 -0700166enum {
167 VHOST_SCSI_VQ_CTL = 0,
168 VHOST_SCSI_VQ_EVT = 1,
169 VHOST_SCSI_VQ_IO = 2,
170};
171
Michael S. Tsirkine72fd722014-11-23 18:01:34 +0200172/* Note: can't set VIRTIO_F_VERSION_1 yet, since that implies ANY_LAYOUT. */
Nicholas Bellinger5dade712013-03-27 17:23:41 -0700173enum {
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800174 VHOST_SCSI_FEATURES = VHOST_FEATURES | (1ULL << VIRTIO_SCSI_F_HOTPLUG) |
Nicholas Bellinger664ed902015-01-28 01:31:52 -0800175 (1ULL << VIRTIO_SCSI_F_T10_PI) |
176 (1ULL << VIRTIO_F_ANY_LAYOUT) |
177 (1ULL << VIRTIO_F_VERSION_1)
Nicholas Bellinger5dade712013-03-27 17:23:41 -0700178};
179
Asias He1b7f3902013-02-06 13:20:59 +0800180#define VHOST_SCSI_MAX_TARGET 256
181#define VHOST_SCSI_MAX_VQ 128
Asias Hea6c9af82013-04-25 15:35:21 +0800182#define VHOST_SCSI_MAX_EVENT 128
Asias He67e18cf2013-02-05 12:31:57 +0800183
Asias He3ab2e422013-04-27 11:16:48 +0800184struct vhost_scsi_virtqueue {
185 struct vhost_virtqueue vq;
Michael S. Tsirkin3dfbff32013-04-28 15:38:52 +0300186 /*
187 * Reference counting for inflight reqs, used for flush operation. At
188 * each time, one reference tracks new commands submitted, while we
189 * wait for another one to reach 0.
190 */
Asias Hef2f0173d2013-04-27 11:16:49 +0800191 struct vhost_scsi_inflight inflights[2];
Michael S. Tsirkin3dfbff32013-04-28 15:38:52 +0300192 /*
193 * Indicate current inflight in use, protected by vq->mutex.
194 * Writers must also take dev mutex and flush under it.
195 */
Asias Hef2f0173d2013-04-27 11:16:49 +0800196 int inflight_idx;
Asias He3ab2e422013-04-27 11:16:48 +0800197};
198
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700199struct vhost_scsi {
Asias He67e18cf2013-02-05 12:31:57 +0800200 /* Protected by vhost_scsi->dev.mutex */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800201 struct vhost_scsi_tpg **vs_tpg;
Asias He67e18cf2013-02-05 12:31:57 +0800202 char vs_vhost_wwpn[TRANSPORT_IQN_LEN];
Asias He67e18cf2013-02-05 12:31:57 +0800203
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700204 struct vhost_dev dev;
Asias He3ab2e422013-04-27 11:16:48 +0800205 struct vhost_scsi_virtqueue vqs[VHOST_SCSI_MAX_VQ];
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700206
207 struct vhost_work vs_completion_work; /* cmd completion work item */
Asias He9d6064a2013-01-06 14:36:13 +0800208 struct llist_head vs_completion_list; /* cmd completion queue */
Asias Hea6c9af82013-04-25 15:35:21 +0800209
210 struct vhost_work vs_event_work; /* evt injection work item */
211 struct llist_head vs_event_list; /* evt injection queue */
212
213 bool vs_events_missed; /* any missed events, protected by vq->mutex */
214 int vs_events_nr; /* num of pending events, protected by vq->mutex */
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700215};
216
217/* Local pointer to allocated TCM configfs fabric module */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800218static struct target_fabric_configfs *vhost_scsi_fabric_configfs;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700219
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800220static struct workqueue_struct *vhost_scsi_workqueue;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700221
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800222/* Global spinlock to protect vhost_scsi TPG list for vhost IOCTL access */
223static DEFINE_MUTEX(vhost_scsi_mutex);
224static LIST_HEAD(vhost_scsi_list);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700225
Nicholas Bellingerb4078b52015-01-28 13:10:51 -0800226static int iov_num_pages(void __user *iov_base, size_t iov_len)
Asias He765b34f2013-01-22 11:20:25 +0800227{
Nicholas Bellingerb4078b52015-01-28 13:10:51 -0800228 return (PAGE_ALIGN((unsigned long)iov_base + iov_len) -
229 ((unsigned long)iov_base & PAGE_MASK)) >> PAGE_SHIFT;
Asias He765b34f2013-01-22 11:20:25 +0800230}
231
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800232static void vhost_scsi_done_inflight(struct kref *kref)
Asias Hef2f0173d2013-04-27 11:16:49 +0800233{
234 struct vhost_scsi_inflight *inflight;
235
236 inflight = container_of(kref, struct vhost_scsi_inflight, kref);
237 complete(&inflight->comp);
238}
239
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800240static void vhost_scsi_init_inflight(struct vhost_scsi *vs,
Asias Hef2f0173d2013-04-27 11:16:49 +0800241 struct vhost_scsi_inflight *old_inflight[])
242{
243 struct vhost_scsi_inflight *new_inflight;
244 struct vhost_virtqueue *vq;
245 int idx, i;
246
247 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++) {
248 vq = &vs->vqs[i].vq;
249
250 mutex_lock(&vq->mutex);
251
252 /* store old infight */
253 idx = vs->vqs[i].inflight_idx;
254 if (old_inflight)
255 old_inflight[i] = &vs->vqs[i].inflights[idx];
256
257 /* setup new infight */
258 vs->vqs[i].inflight_idx = idx ^ 1;
259 new_inflight = &vs->vqs[i].inflights[idx ^ 1];
260 kref_init(&new_inflight->kref);
261 init_completion(&new_inflight->comp);
262
263 mutex_unlock(&vq->mutex);
264 }
265}
266
267static struct vhost_scsi_inflight *
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800268vhost_scsi_get_inflight(struct vhost_virtqueue *vq)
Asias Hef2f0173d2013-04-27 11:16:49 +0800269{
270 struct vhost_scsi_inflight *inflight;
271 struct vhost_scsi_virtqueue *svq;
272
273 svq = container_of(vq, struct vhost_scsi_virtqueue, vq);
274 inflight = &svq->inflights[svq->inflight_idx];
275 kref_get(&inflight->kref);
276
277 return inflight;
278}
279
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800280static void vhost_scsi_put_inflight(struct vhost_scsi_inflight *inflight)
Asias Hef2f0173d2013-04-27 11:16:49 +0800281{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800282 kref_put(&inflight->kref, vhost_scsi_done_inflight);
Asias Hef2f0173d2013-04-27 11:16:49 +0800283}
284
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800285static int vhost_scsi_check_true(struct se_portal_group *se_tpg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700286{
287 return 1;
288}
289
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800290static int vhost_scsi_check_false(struct se_portal_group *se_tpg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700291{
292 return 0;
293}
294
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800295static char *vhost_scsi_get_fabric_name(void)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700296{
297 return "vhost";
298}
299
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800300static u8 vhost_scsi_get_fabric_proto_ident(struct se_portal_group *se_tpg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700301{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800302 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
303 struct vhost_scsi_tpg, se_tpg);
304 struct vhost_scsi_tport *tport = tpg->tport;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700305
306 switch (tport->tport_proto_id) {
307 case SCSI_PROTOCOL_SAS:
308 return sas_get_fabric_proto_ident(se_tpg);
309 case SCSI_PROTOCOL_FCP:
310 return fc_get_fabric_proto_ident(se_tpg);
311 case SCSI_PROTOCOL_ISCSI:
312 return iscsi_get_fabric_proto_ident(se_tpg);
313 default:
314 pr_err("Unknown tport_proto_id: 0x%02x, using"
315 " SAS emulation\n", tport->tport_proto_id);
316 break;
317 }
318
319 return sas_get_fabric_proto_ident(se_tpg);
320}
321
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800322static char *vhost_scsi_get_fabric_wwn(struct se_portal_group *se_tpg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700323{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800324 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
325 struct vhost_scsi_tpg, se_tpg);
326 struct vhost_scsi_tport *tport = tpg->tport;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700327
328 return &tport->tport_name[0];
329}
330
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800331static u16 vhost_scsi_get_tpgt(struct se_portal_group *se_tpg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700332{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800333 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
334 struct vhost_scsi_tpg, se_tpg);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700335 return tpg->tport_tpgt;
336}
337
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800338static u32 vhost_scsi_get_default_depth(struct se_portal_group *se_tpg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700339{
340 return 1;
341}
342
Asias He683bd962013-05-06 16:38:27 +0800343static u32
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800344vhost_scsi_get_pr_transport_id(struct se_portal_group *se_tpg,
Asias He683bd962013-05-06 16:38:27 +0800345 struct se_node_acl *se_nacl,
346 struct t10_pr_registration *pr_reg,
347 int *format_code,
348 unsigned char *buf)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700349{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800350 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
351 struct vhost_scsi_tpg, se_tpg);
352 struct vhost_scsi_tport *tport = tpg->tport;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700353
354 switch (tport->tport_proto_id) {
355 case SCSI_PROTOCOL_SAS:
356 return sas_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
357 format_code, buf);
358 case SCSI_PROTOCOL_FCP:
359 return fc_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
360 format_code, buf);
361 case SCSI_PROTOCOL_ISCSI:
362 return iscsi_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
363 format_code, buf);
364 default:
365 pr_err("Unknown tport_proto_id: 0x%02x, using"
366 " SAS emulation\n", tport->tport_proto_id);
367 break;
368 }
369
370 return sas_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
371 format_code, buf);
372}
373
Asias He683bd962013-05-06 16:38:27 +0800374static u32
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800375vhost_scsi_get_pr_transport_id_len(struct se_portal_group *se_tpg,
Asias He683bd962013-05-06 16:38:27 +0800376 struct se_node_acl *se_nacl,
377 struct t10_pr_registration *pr_reg,
378 int *format_code)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700379{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800380 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
381 struct vhost_scsi_tpg, se_tpg);
382 struct vhost_scsi_tport *tport = tpg->tport;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700383
384 switch (tport->tport_proto_id) {
385 case SCSI_PROTOCOL_SAS:
386 return sas_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
387 format_code);
388 case SCSI_PROTOCOL_FCP:
389 return fc_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
390 format_code);
391 case SCSI_PROTOCOL_ISCSI:
392 return iscsi_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
393 format_code);
394 default:
395 pr_err("Unknown tport_proto_id: 0x%02x, using"
396 " SAS emulation\n", tport->tport_proto_id);
397 break;
398 }
399
400 return sas_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
401 format_code);
402}
403
Asias He683bd962013-05-06 16:38:27 +0800404static char *
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800405vhost_scsi_parse_pr_out_transport_id(struct se_portal_group *se_tpg,
Asias He683bd962013-05-06 16:38:27 +0800406 const char *buf,
407 u32 *out_tid_len,
408 char **port_nexus_ptr)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700409{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800410 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
411 struct vhost_scsi_tpg, se_tpg);
412 struct vhost_scsi_tport *tport = tpg->tport;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700413
414 switch (tport->tport_proto_id) {
415 case SCSI_PROTOCOL_SAS:
416 return sas_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
417 port_nexus_ptr);
418 case SCSI_PROTOCOL_FCP:
419 return fc_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
420 port_nexus_ptr);
421 case SCSI_PROTOCOL_ISCSI:
422 return iscsi_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
423 port_nexus_ptr);
424 default:
425 pr_err("Unknown tport_proto_id: 0x%02x, using"
426 " SAS emulation\n", tport->tport_proto_id);
427 break;
428 }
429
430 return sas_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
431 port_nexus_ptr);
432}
433
Asias He683bd962013-05-06 16:38:27 +0800434static struct se_node_acl *
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800435vhost_scsi_alloc_fabric_acl(struct se_portal_group *se_tpg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700436{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800437 struct vhost_scsi_nacl *nacl;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700438
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800439 nacl = kzalloc(sizeof(struct vhost_scsi_nacl), GFP_KERNEL);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700440 if (!nacl) {
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800441 pr_err("Unable to allocate struct vhost_scsi_nacl\n");
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700442 return NULL;
443 }
444
445 return &nacl->se_node_acl;
446}
447
Asias He683bd962013-05-06 16:38:27 +0800448static void
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800449vhost_scsi_release_fabric_acl(struct se_portal_group *se_tpg,
Asias He683bd962013-05-06 16:38:27 +0800450 struct se_node_acl *se_nacl)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700451{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800452 struct vhost_scsi_nacl *nacl = container_of(se_nacl,
453 struct vhost_scsi_nacl, se_node_acl);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700454 kfree(nacl);
455}
456
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800457static u32 vhost_scsi_tpg_get_inst_index(struct se_portal_group *se_tpg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700458{
459 return 1;
460}
461
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800462static void vhost_scsi_release_cmd(struct se_cmd *se_cmd)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700463{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800464 struct vhost_scsi_cmd *tv_cmd = container_of(se_cmd,
465 struct vhost_scsi_cmd, tvc_se_cmd);
Nicholas Bellingerde1419e2015-01-29 17:21:13 -0800466 struct se_session *se_sess = tv_cmd->tvc_nexus->tvn_se_sess;
Nicholas Bellingere31885d2014-02-22 18:34:43 -0800467 int i;
Nicholas Bellinger084ed452013-06-06 02:20:41 -0700468
469 if (tv_cmd->tvc_sgl_count) {
Nicholas Bellinger084ed452013-06-06 02:20:41 -0700470 for (i = 0; i < tv_cmd->tvc_sgl_count; i++)
471 put_page(sg_page(&tv_cmd->tvc_sgl[i]));
Michael S. Tsirkind3d665a2013-09-17 22:54:31 +0300472 }
Nicholas Bellingere31885d2014-02-22 18:34:43 -0800473 if (tv_cmd->tvc_prot_sgl_count) {
474 for (i = 0; i < tv_cmd->tvc_prot_sgl_count; i++)
475 put_page(sg_page(&tv_cmd->tvc_prot_sgl[i]));
476 }
Nicholas Bellinger084ed452013-06-06 02:20:41 -0700477
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800478 vhost_scsi_put_inflight(tv_cmd->inflight);
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -0700479 percpu_ida_free(&se_sess->sess_tag_pool, se_cmd->map_tag);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700480}
481
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800482static int vhost_scsi_shutdown_session(struct se_session *se_sess)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700483{
484 return 0;
485}
486
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800487static void vhost_scsi_close_session(struct se_session *se_sess)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700488{
489 return;
490}
491
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800492static u32 vhost_scsi_sess_get_index(struct se_session *se_sess)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700493{
494 return 0;
495}
496
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800497static int vhost_scsi_write_pending(struct se_cmd *se_cmd)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700498{
499 /* Go ahead and process the write immediately */
500 target_execute_cmd(se_cmd);
501 return 0;
502}
503
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800504static int vhost_scsi_write_pending_status(struct se_cmd *se_cmd)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700505{
506 return 0;
507}
508
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800509static void vhost_scsi_set_default_node_attrs(struct se_node_acl *nacl)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700510{
511 return;
512}
513
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800514static u32 vhost_scsi_get_task_tag(struct se_cmd *se_cmd)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700515{
516 return 0;
517}
518
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800519static int vhost_scsi_get_cmd_state(struct se_cmd *se_cmd)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700520{
521 return 0;
522}
523
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800524static void vhost_scsi_complete_cmd(struct vhost_scsi_cmd *cmd)
Nicholas Bellinger101998f2012-07-30 13:30:00 -0700525{
Asias He3c63f662013-05-06 16:38:29 +0800526 struct vhost_scsi *vs = cmd->tvc_vhost;
Nicholas Bellinger101998f2012-07-30 13:30:00 -0700527
Asias He3c63f662013-05-06 16:38:29 +0800528 llist_add(&cmd->tvc_completion_list, &vs->vs_completion_list);
Nicholas Bellinger101998f2012-07-30 13:30:00 -0700529
530 vhost_work_queue(&vs->dev, &vs->vs_completion_work);
531}
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700532
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800533static int vhost_scsi_queue_data_in(struct se_cmd *se_cmd)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700534{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800535 struct vhost_scsi_cmd *cmd = container_of(se_cmd,
536 struct vhost_scsi_cmd, tvc_se_cmd);
Asias He3c63f662013-05-06 16:38:29 +0800537 vhost_scsi_complete_cmd(cmd);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700538 return 0;
539}
540
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800541static int vhost_scsi_queue_status(struct se_cmd *se_cmd)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700542{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800543 struct vhost_scsi_cmd *cmd = container_of(se_cmd,
544 struct vhost_scsi_cmd, tvc_se_cmd);
Asias He3c63f662013-05-06 16:38:29 +0800545 vhost_scsi_complete_cmd(cmd);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700546 return 0;
547}
548
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800549static void vhost_scsi_queue_tm_rsp(struct se_cmd *se_cmd)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700550{
Joern Engelb79fafa2013-07-03 11:22:17 -0400551 return;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700552}
553
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800554static void vhost_scsi_aborted_task(struct se_cmd *se_cmd)
Nicholas Bellinger131e6ab2014-03-22 14:55:56 -0700555{
556 return;
557}
558
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800559static void vhost_scsi_free_evt(struct vhost_scsi *vs, struct vhost_scsi_evt *evt)
Asias Hea6c9af82013-04-25 15:35:21 +0800560{
561 vs->vs_events_nr--;
562 kfree(evt);
563}
564
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800565static struct vhost_scsi_evt *
566vhost_scsi_allocate_evt(struct vhost_scsi *vs,
Asias He683bd962013-05-06 16:38:27 +0800567 u32 event, u32 reason)
Asias Hea6c9af82013-04-25 15:35:21 +0800568{
Asias He3ab2e422013-04-27 11:16:48 +0800569 struct vhost_virtqueue *vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800570 struct vhost_scsi_evt *evt;
Asias Hea6c9af82013-04-25 15:35:21 +0800571
572 if (vs->vs_events_nr > VHOST_SCSI_MAX_EVENT) {
573 vs->vs_events_missed = true;
574 return NULL;
575 }
576
577 evt = kzalloc(sizeof(*evt), GFP_KERNEL);
578 if (!evt) {
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800579 vq_err(vq, "Failed to allocate vhost_scsi_evt\n");
Asias Hea6c9af82013-04-25 15:35:21 +0800580 vs->vs_events_missed = true;
581 return NULL;
582 }
583
Michael S. Tsirkine72fd722014-11-23 18:01:34 +0200584 evt->event.event = cpu_to_vhost32(vq, event);
585 evt->event.reason = cpu_to_vhost32(vq, reason);
Asias Hea6c9af82013-04-25 15:35:21 +0800586 vs->vs_events_nr++;
587
588 return evt;
589}
590
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800591static void vhost_scsi_free_cmd(struct vhost_scsi_cmd *cmd)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700592{
Asias He3c63f662013-05-06 16:38:29 +0800593 struct se_cmd *se_cmd = &cmd->tvc_se_cmd;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700594
595 /* TODO locking against target/backend threads? */
Nicholas Bellinger6c131d02013-06-06 01:44:48 -0700596 transport_generic_free_cmd(se_cmd, 0);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700597
Nicholas Bellinger084ed452013-06-06 02:20:41 -0700598}
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700599
Nicholas Bellinger084ed452013-06-06 02:20:41 -0700600static int vhost_scsi_check_stop_free(struct se_cmd *se_cmd)
601{
602 return target_put_sess_cmd(se_cmd->se_sess, se_cmd);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700603}
604
Asias He683bd962013-05-06 16:38:27 +0800605static void
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800606vhost_scsi_do_evt_work(struct vhost_scsi *vs, struct vhost_scsi_evt *evt)
Asias Hea6c9af82013-04-25 15:35:21 +0800607{
Asias He3ab2e422013-04-27 11:16:48 +0800608 struct vhost_virtqueue *vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
Asias Hea6c9af82013-04-25 15:35:21 +0800609 struct virtio_scsi_event *event = &evt->event;
610 struct virtio_scsi_event __user *eventp;
611 unsigned out, in;
612 int head, ret;
613
614 if (!vq->private_data) {
615 vs->vs_events_missed = true;
616 return;
617 }
618
619again:
620 vhost_disable_notify(&vs->dev, vq);
Michael S. Tsirkin47283be2014-06-05 15:20:27 +0300621 head = vhost_get_vq_desc(vq, vq->iov,
Asias Hea6c9af82013-04-25 15:35:21 +0800622 ARRAY_SIZE(vq->iov), &out, &in,
623 NULL, NULL);
624 if (head < 0) {
625 vs->vs_events_missed = true;
626 return;
627 }
628 if (head == vq->num) {
629 if (vhost_enable_notify(&vs->dev, vq))
630 goto again;
631 vs->vs_events_missed = true;
632 return;
633 }
634
635 if ((vq->iov[out].iov_len != sizeof(struct virtio_scsi_event))) {
636 vq_err(vq, "Expecting virtio_scsi_event, got %zu bytes\n",
637 vq->iov[out].iov_len);
638 vs->vs_events_missed = true;
639 return;
640 }
641
642 if (vs->vs_events_missed) {
Michael S. Tsirkine72fd722014-11-23 18:01:34 +0200643 event->event |= cpu_to_vhost32(vq, VIRTIO_SCSI_T_EVENTS_MISSED);
Asias Hea6c9af82013-04-25 15:35:21 +0800644 vs->vs_events_missed = false;
645 }
646
647 eventp = vq->iov[out].iov_base;
648 ret = __copy_to_user(eventp, event, sizeof(*event));
649 if (!ret)
650 vhost_add_used_and_signal(&vs->dev, vq, head, 0);
651 else
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800652 vq_err(vq, "Faulted on vhost_scsi_send_event\n");
Asias Hea6c9af82013-04-25 15:35:21 +0800653}
654
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800655static void vhost_scsi_evt_work(struct vhost_work *work)
Asias Hea6c9af82013-04-25 15:35:21 +0800656{
657 struct vhost_scsi *vs = container_of(work, struct vhost_scsi,
658 vs_event_work);
Asias He3ab2e422013-04-27 11:16:48 +0800659 struct vhost_virtqueue *vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800660 struct vhost_scsi_evt *evt;
Asias Hea6c9af82013-04-25 15:35:21 +0800661 struct llist_node *llnode;
662
663 mutex_lock(&vq->mutex);
664 llnode = llist_del_all(&vs->vs_event_list);
665 while (llnode) {
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800666 evt = llist_entry(llnode, struct vhost_scsi_evt, list);
Asias Hea6c9af82013-04-25 15:35:21 +0800667 llnode = llist_next(llnode);
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800668 vhost_scsi_do_evt_work(vs, evt);
669 vhost_scsi_free_evt(vs, evt);
Asias Hea6c9af82013-04-25 15:35:21 +0800670 }
671 mutex_unlock(&vq->mutex);
672}
673
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700674/* Fill in status and signal that we are done processing this command
675 *
676 * This is scheduled in the vhost work queue so we are called with the owner
677 * process mm and can access the vring.
678 */
679static void vhost_scsi_complete_cmd_work(struct vhost_work *work)
680{
681 struct vhost_scsi *vs = container_of(work, struct vhost_scsi,
682 vs_completion_work);
Asias He1b7f3902013-02-06 13:20:59 +0800683 DECLARE_BITMAP(signal, VHOST_SCSI_MAX_VQ);
Asias He9d6064a2013-01-06 14:36:13 +0800684 struct virtio_scsi_cmd_resp v_rsp;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800685 struct vhost_scsi_cmd *cmd;
Asias He9d6064a2013-01-06 14:36:13 +0800686 struct llist_node *llnode;
687 struct se_cmd *se_cmd;
Nicholas Bellinger79c14142015-01-27 13:13:12 -0800688 struct iov_iter iov_iter;
Asias He1b7f3902013-02-06 13:20:59 +0800689 int ret, vq;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700690
Asias He1b7f3902013-02-06 13:20:59 +0800691 bitmap_zero(signal, VHOST_SCSI_MAX_VQ);
Asias He9d6064a2013-01-06 14:36:13 +0800692 llnode = llist_del_all(&vs->vs_completion_list);
693 while (llnode) {
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800694 cmd = llist_entry(llnode, struct vhost_scsi_cmd,
Asias He9d6064a2013-01-06 14:36:13 +0800695 tvc_completion_list);
696 llnode = llist_next(llnode);
Asias He3c63f662013-05-06 16:38:29 +0800697 se_cmd = &cmd->tvc_se_cmd;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700698
699 pr_debug("%s tv_cmd %p resid %u status %#02x\n", __func__,
Asias He3c63f662013-05-06 16:38:29 +0800700 cmd, se_cmd->residual_count, se_cmd->scsi_status);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700701
702 memset(&v_rsp, 0, sizeof(v_rsp));
Michael S. Tsirkine72fd722014-11-23 18:01:34 +0200703 v_rsp.resid = cpu_to_vhost32(cmd->tvc_vq, se_cmd->residual_count);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700704 /* TODO is status_qualifier field needed? */
705 v_rsp.status = se_cmd->scsi_status;
Michael S. Tsirkine72fd722014-11-23 18:01:34 +0200706 v_rsp.sense_len = cpu_to_vhost32(cmd->tvc_vq,
707 se_cmd->scsi_sense_length);
Asias He3c63f662013-05-06 16:38:29 +0800708 memcpy(v_rsp.sense, cmd->tvc_sense_buf,
Michael S. Tsirkine72fd722014-11-23 18:01:34 +0200709 se_cmd->scsi_sense_length);
Nicholas Bellinger79c14142015-01-27 13:13:12 -0800710
711 iov_iter_init(&iov_iter, READ, cmd->tvc_resp_iov,
712 cmd->tvc_in_iovs, sizeof(v_rsp));
713 ret = copy_to_iter(&v_rsp, sizeof(v_rsp), &iov_iter);
714 if (likely(ret == sizeof(v_rsp))) {
Asias He3ab2e422013-04-27 11:16:48 +0800715 struct vhost_scsi_virtqueue *q;
Asias He3c63f662013-05-06 16:38:29 +0800716 vhost_add_used(cmd->tvc_vq, cmd->tvc_vq_desc, 0);
717 q = container_of(cmd->tvc_vq, struct vhost_scsi_virtqueue, vq);
Asias He3ab2e422013-04-27 11:16:48 +0800718 vq = q - vs->vqs;
Asias He1b7f3902013-02-06 13:20:59 +0800719 __set_bit(vq, signal);
720 } else
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700721 pr_err("Faulted on virtio_scsi_cmd_resp\n");
722
Asias He3c63f662013-05-06 16:38:29 +0800723 vhost_scsi_free_cmd(cmd);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700724 }
725
Asias He1b7f3902013-02-06 13:20:59 +0800726 vq = -1;
727 while ((vq = find_next_bit(signal, VHOST_SCSI_MAX_VQ, vq + 1))
728 < VHOST_SCSI_MAX_VQ)
Asias He3ab2e422013-04-27 11:16:48 +0800729 vhost_signal(&vs->dev, &vs->vqs[vq].vq);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700730}
731
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800732static struct vhost_scsi_cmd *
733vhost_scsi_get_tag(struct vhost_virtqueue *vq, struct vhost_scsi_tpg *tpg,
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800734 unsigned char *cdb, u64 scsi_tag, u16 lun, u8 task_attr,
735 u32 exp_data_len, int data_direction)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700736{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800737 struct vhost_scsi_cmd *cmd;
738 struct vhost_scsi_nexus *tv_nexus;
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -0700739 struct se_session *se_sess;
Nicholas Bellingerb1935f62014-02-22 18:08:24 -0800740 struct scatterlist *sg, *prot_sg;
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -0700741 struct page **pages;
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -0700742 int tag;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700743
Asias He98718312013-05-06 16:38:28 +0800744 tv_nexus = tpg->tpg_nexus;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700745 if (!tv_nexus) {
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800746 pr_err("Unable to locate active struct vhost_scsi_nexus\n");
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700747 return ERR_PTR(-EIO);
748 }
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -0700749 se_sess = tv_nexus->tvn_se_sess;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700750
Kent Overstreet6f6b5d12014-01-19 08:26:37 +0000751 tag = percpu_ida_alloc(&se_sess->sess_tag_pool, TASK_RUNNING);
Nicholas Bellinger4a47d3a2013-09-23 11:42:28 -0700752 if (tag < 0) {
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800753 pr_err("Unable to obtain tag for vhost_scsi_cmd\n");
Nicholas Bellinger4a47d3a2013-09-23 11:42:28 -0700754 return ERR_PTR(-ENOMEM);
755 }
756
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800757 cmd = &((struct vhost_scsi_cmd *)se_sess->sess_cmd_map)[tag];
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -0700758 sg = cmd->tvc_sgl;
Nicholas Bellingerb1935f62014-02-22 18:08:24 -0800759 prot_sg = cmd->tvc_prot_sgl;
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -0700760 pages = cmd->tvc_upages;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800761 memset(cmd, 0, sizeof(struct vhost_scsi_cmd));
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -0700762
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -0700763 cmd->tvc_sgl = sg;
Nicholas Bellingerb1935f62014-02-22 18:08:24 -0800764 cmd->tvc_prot_sgl = prot_sg;
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -0700765 cmd->tvc_upages = pages;
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -0700766 cmd->tvc_se_cmd.map_tag = tag;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800767 cmd->tvc_tag = scsi_tag;
768 cmd->tvc_lun = lun;
769 cmd->tvc_task_attr = task_attr;
Asias He3c63f662013-05-06 16:38:29 +0800770 cmd->tvc_exp_data_len = exp_data_len;
771 cmd->tvc_data_direction = data_direction;
772 cmd->tvc_nexus = tv_nexus;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800773 cmd->inflight = vhost_scsi_get_inflight(vq);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700774
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800775 memcpy(cmd->tvc_cdb, cdb, VHOST_SCSI_MAX_CDB_SIZE);
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800776
Asias He3c63f662013-05-06 16:38:29 +0800777 return cmd;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700778}
779
780/*
781 * Map a user memory range into a scatterlist
782 *
783 * Returns the number of scatterlist entries used or -errno on error.
784 */
Asias He683bd962013-05-06 16:38:27 +0800785static int
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800786vhost_scsi_map_to_sgl(struct vhost_scsi_cmd *cmd,
Nicholas Bellingerb4078b52015-01-28 13:10:51 -0800787 void __user *ptr,
788 size_t len,
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -0700789 struct scatterlist *sgl,
Nicholas Bellinger5a01d082014-02-22 18:34:08 -0800790 bool write)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700791{
Nicholas Bellingerb4078b52015-01-28 13:10:51 -0800792 unsigned int npages = 0, offset, nbytes;
793 unsigned int pages_nr = iov_num_pages(ptr, len);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700794 struct scatterlist *sg = sgl;
Nicholas Bellingerb4078b52015-01-28 13:10:51 -0800795 struct page **pages = cmd->tvc_upages;
Asias He18100532013-01-22 11:20:27 +0800796 int ret, i;
797
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800798 if (pages_nr > VHOST_SCSI_PREALLOC_UPAGES) {
Nicholas Bellinger5a01d082014-02-22 18:34:08 -0800799 pr_err("vhost_scsi_map_to_sgl() pages_nr: %u greater than"
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800800 " preallocated VHOST_SCSI_PREALLOC_UPAGES: %u\n",
801 pages_nr, VHOST_SCSI_PREALLOC_UPAGES);
Nicholas Bellinger5a01d082014-02-22 18:34:08 -0800802 return -ENOBUFS;
803 }
Asias He18100532013-01-22 11:20:27 +0800804
805 ret = get_user_pages_fast((unsigned long)ptr, pages_nr, write, pages);
806 /* No pages were pinned */
807 if (ret < 0)
808 goto out;
809 /* Less pages pinned than wanted */
810 if (ret != pages_nr) {
811 for (i = 0; i < ret; i++)
812 put_page(pages[i]);
813 ret = -EFAULT;
814 goto out;
815 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700816
817 while (len > 0) {
Asias He18100532013-01-22 11:20:27 +0800818 offset = (uintptr_t)ptr & ~PAGE_MASK;
819 nbytes = min_t(unsigned int, PAGE_SIZE - offset, len);
820 sg_set_page(sg, pages[npages], nbytes, offset);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700821 ptr += nbytes;
822 len -= nbytes;
823 sg++;
824 npages++;
825 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700826
Asias He18100532013-01-22 11:20:27 +0800827out:
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700828 return ret;
829}
830
Asias He683bd962013-05-06 16:38:27 +0800831static int
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800832vhost_scsi_calc_sgls(struct iov_iter *iter, size_t bytes, int max_sgls)
833{
834 int sgl_count = 0;
835
836 if (!iter || !iter->iov) {
837 pr_err("%s: iter->iov is NULL, but expected bytes: %zu"
838 " present\n", __func__, bytes);
839 return -EINVAL;
840 }
841
842 sgl_count = iov_iter_npages(iter, 0xffff);
843 if (sgl_count > max_sgls) {
844 pr_err("%s: requested sgl_count: %d exceeds pre-allocated"
845 " max_sgls: %d\n", __func__, sgl_count, max_sgls);
846 return -EINVAL;
847 }
848 return sgl_count;
849}
850
851static int
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800852vhost_scsi_iov_to_sgl(struct vhost_scsi_cmd *cmd, bool write,
853 struct iov_iter *iter,
854 struct scatterlist *sg, int sg_count)
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800855{
856 size_t off = iter->iov_offset;
857 int i, ret;
858
859 for (i = 0; i < iter->nr_segs; i++) {
860 void __user *base = iter->iov[i].iov_base + off;
861 size_t len = iter->iov[i].iov_len - off;
862
863 ret = vhost_scsi_map_to_sgl(cmd, base, len, sg, write);
864 if (ret < 0) {
865 for (i = 0; i < sg_count; i++) {
866 struct page *page = sg_page(&sg[i]);
867 if (page)
868 put_page(page);
869 }
870 return ret;
871 }
872 sg += ret;
873 off = 0;
874 }
875 return 0;
876}
877
878static int
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800879vhost_scsi_mapal(struct vhost_scsi_cmd *cmd,
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800880 size_t prot_bytes, struct iov_iter *prot_iter,
881 size_t data_bytes, struct iov_iter *data_iter)
882{
883 int sgl_count, ret;
884 bool write = (cmd->tvc_data_direction == DMA_FROM_DEVICE);
885
886 if (prot_bytes) {
887 sgl_count = vhost_scsi_calc_sgls(prot_iter, prot_bytes,
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800888 VHOST_SCSI_PREALLOC_PROT_SGLS);
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800889 if (sgl_count < 0)
890 return sgl_count;
891
892 sg_init_table(cmd->tvc_prot_sgl, sgl_count);
893 cmd->tvc_prot_sgl_count = sgl_count;
894 pr_debug("%s prot_sg %p prot_sgl_count %u\n", __func__,
895 cmd->tvc_prot_sgl, cmd->tvc_prot_sgl_count);
896
897 ret = vhost_scsi_iov_to_sgl(cmd, write, prot_iter,
898 cmd->tvc_prot_sgl,
899 cmd->tvc_prot_sgl_count);
900 if (ret < 0) {
901 cmd->tvc_prot_sgl_count = 0;
902 return ret;
903 }
904 }
905 sgl_count = vhost_scsi_calc_sgls(data_iter, data_bytes,
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800906 VHOST_SCSI_PREALLOC_SGLS);
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800907 if (sgl_count < 0)
908 return sgl_count;
909
910 sg_init_table(cmd->tvc_sgl, sgl_count);
911 cmd->tvc_sgl_count = sgl_count;
912 pr_debug("%s data_sg %p data_sgl_count %u\n", __func__,
913 cmd->tvc_sgl, cmd->tvc_sgl_count);
914
915 ret = vhost_scsi_iov_to_sgl(cmd, write, data_iter,
916 cmd->tvc_sgl, cmd->tvc_sgl_count);
917 if (ret < 0) {
918 cmd->tvc_sgl_count = 0;
919 return ret;
920 }
921 return 0;
922}
923
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800924static void vhost_scsi_submission_work(struct work_struct *work)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700925{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800926 struct vhost_scsi_cmd *cmd =
927 container_of(work, struct vhost_scsi_cmd, work);
928 struct vhost_scsi_nexus *tv_nexus;
Asias He3c63f662013-05-06 16:38:29 +0800929 struct se_cmd *se_cmd = &cmd->tvc_se_cmd;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800930 struct scatterlist *sg_ptr, *sg_prot_ptr = NULL;
931 int rc;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700932
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800933 /* FIXME: BIDI operation */
Asias He3c63f662013-05-06 16:38:29 +0800934 if (cmd->tvc_sgl_count) {
935 sg_ptr = cmd->tvc_sgl;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800936
937 if (cmd->tvc_prot_sgl_count)
938 sg_prot_ptr = cmd->tvc_prot_sgl;
939 else
940 se_cmd->prot_pto = true;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700941 } else {
942 sg_ptr = NULL;
943 }
Asias He3c63f662013-05-06 16:38:29 +0800944 tv_nexus = cmd->tvc_nexus;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700945
Nicholas Bellinger9f0abc12012-10-01 18:40:55 -0700946 rc = target_submit_cmd_map_sgls(se_cmd, tv_nexus->tvn_se_sess,
Asias He3c63f662013-05-06 16:38:29 +0800947 cmd->tvc_cdb, &cmd->tvc_sense_buf[0],
948 cmd->tvc_lun, cmd->tvc_exp_data_len,
949 cmd->tvc_task_attr, cmd->tvc_data_direction,
Linus Torvalds6d2fa9e2013-07-11 12:57:19 -0700950 TARGET_SCF_ACK_KREF, sg_ptr, cmd->tvc_sgl_count,
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800951 NULL, 0, sg_prot_ptr, cmd->tvc_prot_sgl_count);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700952 if (rc < 0) {
953 transport_send_check_condition_and_sense(se_cmd,
Nicholas Bellinger9f0abc12012-10-01 18:40:55 -0700954 TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE, 0);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700955 transport_generic_free_cmd(se_cmd, 0);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700956 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700957}
958
Asias He683bd962013-05-06 16:38:27 +0800959static void
960vhost_scsi_send_bad_target(struct vhost_scsi *vs,
961 struct vhost_virtqueue *vq,
962 int head, unsigned out)
Asias He637ab212013-04-10 15:06:15 +0800963{
964 struct virtio_scsi_cmd_resp __user *resp;
965 struct virtio_scsi_cmd_resp rsp;
966 int ret;
967
968 memset(&rsp, 0, sizeof(rsp));
969 rsp.response = VIRTIO_SCSI_S_BAD_TARGET;
970 resp = vq->iov[out].iov_base;
971 ret = __copy_to_user(resp, &rsp, sizeof(rsp));
972 if (!ret)
973 vhost_add_used_and_signal(&vs->dev, vq, head, 0);
974 else
975 pr_err("Faulted on virtio_scsi_cmd_resp\n");
976}
977
Asias He683bd962013-05-06 16:38:27 +0800978static void
979vhost_scsi_handle_vq(struct vhost_scsi *vs, struct vhost_virtqueue *vq)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700980{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800981 struct vhost_scsi_tpg **vs_tpg, *tpg;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700982 struct virtio_scsi_cmd_req v_req;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800983 struct virtio_scsi_cmd_req_pi v_req_pi;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800984 struct vhost_scsi_cmd *cmd;
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -0800985 struct iov_iter out_iter, in_iter, prot_iter, data_iter;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800986 u64 tag;
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -0800987 u32 exp_data_len, data_direction;
988 unsigned out, in;
989 int head, ret, prot_bytes;
990 size_t req_size, rsp_size = sizeof(struct virtio_scsi_cmd_resp);
991 size_t out_size, in_size;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800992 u16 lun;
993 u8 *target, *lunp, task_attr;
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -0800994 bool t10_pi = vhost_has_feature(vq, VIRTIO_SCSI_F_T10_PI);
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800995 void *req, *cdb;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700996
Asias Hee7802212013-05-07 14:54:35 +0800997 mutex_lock(&vq->mutex);
Asias He4f7f46d2013-04-03 14:17:37 +0800998 /*
999 * We can handle the vq only after the endpoint is setup by calling the
1000 * VHOST_SCSI_SET_ENDPOINT ioctl.
Asias He4f7f46d2013-04-03 14:17:37 +08001001 */
Asias Hee7802212013-05-07 14:54:35 +08001002 vs_tpg = vq->private_data;
Asias He4f7f46d2013-04-03 14:17:37 +08001003 if (!vs_tpg)
Asias Hee7802212013-05-07 14:54:35 +08001004 goto out;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001005
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001006 vhost_disable_notify(&vs->dev, vq);
1007
1008 for (;;) {
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03001009 head = vhost_get_vq_desc(vq, vq->iov,
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001010 ARRAY_SIZE(vq->iov), &out, &in,
1011 NULL, NULL);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001012 pr_debug("vhost_get_vq_desc: head: %d, out: %u in: %u\n",
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001013 head, out, in);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001014 /* On error, stop handling until the next kick. */
1015 if (unlikely(head < 0))
1016 break;
1017 /* Nothing new? Wait for eventfd to tell us they refilled. */
1018 if (head == vq->num) {
1019 if (unlikely(vhost_enable_notify(&vs->dev, vq))) {
1020 vhost_disable_notify(&vs->dev, vq);
1021 continue;
1022 }
1023 break;
1024 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001025 /*
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001026 * Check for a sane response buffer so we can report early
1027 * errors back to the guest.
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001028 */
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001029 if (unlikely(vq->iov[out].iov_len < rsp_size)) {
1030 vq_err(vq, "Expecting at least virtio_scsi_cmd_resp"
1031 " size, got %zu bytes\n", vq->iov[out].iov_len);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001032 break;
1033 }
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001034 /*
1035 * Setup pointers and values based upon different virtio-scsi
1036 * request header if T10_PI is enabled in KVM guest.
1037 */
1038 if (t10_pi) {
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001039 req = &v_req_pi;
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001040 req_size = sizeof(v_req_pi);
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001041 lunp = &v_req_pi.lun[0];
1042 target = &v_req_pi.lun[1];
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001043 } else {
1044 req = &v_req;
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001045 req_size = sizeof(v_req);
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001046 lunp = &v_req.lun[0];
1047 target = &v_req.lun[1];
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001048 }
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001049 /*
1050 * FIXME: Not correct for BIDI operation
1051 */
1052 out_size = iov_length(vq->iov, out);
1053 in_size = iov_length(&vq->iov[out], in);
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001054
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001055 /*
1056 * Copy over the virtio-scsi request header, which for a
1057 * ANY_LAYOUT enabled guest may span multiple iovecs, or a
1058 * single iovec may contain both the header + outgoing
1059 * WRITE payloads.
1060 *
1061 * copy_from_iter() will advance out_iter, so that it will
1062 * point at the start of the outgoing WRITE payload, if
1063 * DMA_TO_DEVICE is set.
1064 */
1065 iov_iter_init(&out_iter, WRITE, vq->iov, out, out_size);
1066
1067 ret = copy_from_iter(req, req_size, &out_iter);
1068 if (unlikely(ret != req_size)) {
1069 vq_err(vq, "Faulted on copy_from_iter\n");
Nicholas Bellingerde1419e2015-01-29 17:21:13 -08001070 vhost_scsi_send_bad_target(vs, vq, head, out);
1071 continue;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001072 }
Venkatesh Srinivas7fe412d2014-02-24 14:13:32 -08001073 /* virtio-scsi spec requires byte 0 of the lun to be 1 */
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001074 if (unlikely(*lunp != 1)) {
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001075 vq_err(vq, "Illegal virtio-scsi lun: %u\n", *lunp);
Venkatesh Srinivas7fe412d2014-02-24 14:13:32 -08001076 vhost_scsi_send_bad_target(vs, vq, head, out);
1077 continue;
1078 }
1079
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001080 tpg = ACCESS_ONCE(vs_tpg[*target]);
Asias He98718312013-05-06 16:38:28 +08001081 if (unlikely(!tpg)) {
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001082 /* Target does not exist, fail the request */
Asias He637ab212013-04-10 15:06:15 +08001083 vhost_scsi_send_bad_target(vs, vq, head, out);
Asias He67e18cf2013-02-05 12:31:57 +08001084 continue;
1085 }
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001086 /*
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001087 * Determine data_direction by calculating the total outgoing
1088 * iovec sizes + incoming iovec sizes vs. virtio-scsi request +
1089 * response headers respectively.
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001090 *
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001091 * For DMA_TO_DEVICE this is out_iter, which is already pointing
1092 * to the right place.
1093 *
1094 * For DMA_FROM_DEVICE, the iovec will be just past the end
1095 * of the virtio-scsi response header in either the same
1096 * or immediately following iovec.
1097 *
1098 * Any associated T10_PI bytes for the outgoing / incoming
1099 * payloads are included in calculation of exp_data_len here.
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001100 */
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001101 prot_bytes = 0;
1102
1103 if (out_size > req_size) {
1104 data_direction = DMA_TO_DEVICE;
1105 exp_data_len = out_size - req_size;
1106 data_iter = out_iter;
1107 } else if (in_size > rsp_size) {
1108 data_direction = DMA_FROM_DEVICE;
1109 exp_data_len = in_size - rsp_size;
1110
1111 iov_iter_init(&in_iter, READ, &vq->iov[out], in,
1112 rsp_size + exp_data_len);
1113 iov_iter_advance(&in_iter, rsp_size);
1114 data_iter = in_iter;
1115 } else {
1116 data_direction = DMA_NONE;
1117 exp_data_len = 0;
1118 }
1119 /*
1120 * If T10_PI header + payload is present, setup prot_iter values
1121 * and recalculate data_iter for vhost_scsi_mapal() mapping to
1122 * host scatterlists via get_user_pages_fast().
1123 */
1124 if (t10_pi) {
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001125 if (v_req_pi.pi_bytesout) {
1126 if (data_direction != DMA_TO_DEVICE) {
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001127 vq_err(vq, "Received non zero pi_bytesout,"
1128 " but wrong data_direction\n");
Nicholas Bellingerde1419e2015-01-29 17:21:13 -08001129 vhost_scsi_send_bad_target(vs, vq, head, out);
1130 continue;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001131 }
Michael S. Tsirkine72fd722014-11-23 18:01:34 +02001132 prot_bytes = vhost32_to_cpu(vq, v_req_pi.pi_bytesout);
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001133 } else if (v_req_pi.pi_bytesin) {
1134 if (data_direction != DMA_FROM_DEVICE) {
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001135 vq_err(vq, "Received non zero pi_bytesin,"
1136 " but wrong data_direction\n");
Nicholas Bellingerde1419e2015-01-29 17:21:13 -08001137 vhost_scsi_send_bad_target(vs, vq, head, out);
1138 continue;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001139 }
Michael S. Tsirkine72fd722014-11-23 18:01:34 +02001140 prot_bytes = vhost32_to_cpu(vq, v_req_pi.pi_bytesin);
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001141 }
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001142 /*
1143 * Set prot_iter to data_iter, and advance past any
1144 * preceeding prot_bytes that may be present.
1145 *
1146 * Also fix up the exp_data_len to reflect only the
1147 * actual data payload length.
1148 */
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001149 if (prot_bytes) {
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001150 exp_data_len -= prot_bytes;
1151 prot_iter = data_iter;
1152 iov_iter_advance(&data_iter, prot_bytes);
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001153 }
Michael S. Tsirkine72fd722014-11-23 18:01:34 +02001154 tag = vhost64_to_cpu(vq, v_req_pi.tag);
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001155 task_attr = v_req_pi.task_attr;
1156 cdb = &v_req_pi.cdb[0];
1157 lun = ((v_req_pi.lun[2] << 8) | v_req_pi.lun[3]) & 0x3FFF;
1158 } else {
Michael S. Tsirkine72fd722014-11-23 18:01:34 +02001159 tag = vhost64_to_cpu(vq, v_req.tag);
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001160 task_attr = v_req.task_attr;
1161 cdb = &v_req.cdb[0];
1162 lun = ((v_req.lun[2] << 8) | v_req.lun[3]) & 0x3FFF;
1163 }
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001164 /*
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001165 * Check that the received CDB size does not exceeded our
1166 * hardcoded max for vhost-scsi, then get a pre-allocated
1167 * cmd descriptor for the new virtio-scsi tag.
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001168 *
1169 * TODO what if cdb was too small for varlen cdb header?
1170 */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001171 if (unlikely(scsi_command_size(cdb) > VHOST_SCSI_MAX_CDB_SIZE)) {
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001172 vq_err(vq, "Received SCSI CDB with command_size: %d that"
1173 " exceeds SCSI_MAX_VARLEN_CDB_SIZE: %d\n",
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001174 scsi_command_size(cdb), VHOST_SCSI_MAX_CDB_SIZE);
Nicholas Bellingerde1419e2015-01-29 17:21:13 -08001175 vhost_scsi_send_bad_target(vs, vq, head, out);
1176 continue;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001177 }
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001178 cmd = vhost_scsi_get_tag(vq, tpg, cdb, tag, lun, task_attr,
Nicholas Bellinger9f977ef2014-06-10 01:19:38 -07001179 exp_data_len + prot_bytes,
1180 data_direction);
Asias He3c63f662013-05-06 16:38:29 +08001181 if (IS_ERR(cmd)) {
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -07001182 vq_err(vq, "vhost_scsi_get_tag failed %ld\n",
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001183 PTR_ERR(cmd));
Nicholas Bellingerde1419e2015-01-29 17:21:13 -08001184 vhost_scsi_send_bad_target(vs, vq, head, out);
1185 continue;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001186 }
Asias He3c63f662013-05-06 16:38:29 +08001187 cmd->tvc_vhost = vs;
1188 cmd->tvc_vq = vq;
Nicholas Bellinger79c14142015-01-27 13:13:12 -08001189 cmd->tvc_resp_iov = &vq->iov[out];
1190 cmd->tvc_in_iovs = in;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001191
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001192 pr_debug("vhost_scsi got command opcode: %#02x, lun: %d\n",
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001193 cmd->tvc_cdb[0], cmd->tvc_lun);
1194 pr_debug("cmd: %p exp_data_len: %d, prot_bytes: %d data_direction:"
1195 " %d\n", cmd, exp_data_len, prot_bytes, data_direction);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001196
1197 if (data_direction != DMA_NONE) {
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001198 ret = vhost_scsi_mapal(cmd,
1199 prot_bytes, &prot_iter,
1200 exp_data_len, &data_iter);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001201 if (unlikely(ret)) {
1202 vq_err(vq, "Failed to map iov to sgl\n");
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001203 vhost_scsi_release_cmd(&cmd->tvc_se_cmd);
Nicholas Bellingerde1419e2015-01-29 17:21:13 -08001204 vhost_scsi_send_bad_target(vs, vq, head, out);
1205 continue;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001206 }
1207 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001208 /*
1209 * Save the descriptor from vhost_get_vq_desc() to be used to
1210 * complete the virtio-scsi request in TCM callback context via
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001211 * vhost_scsi_queue_data_in() and vhost_scsi_queue_status()
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001212 */
Asias He3c63f662013-05-06 16:38:29 +08001213 cmd->tvc_vq_desc = head;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001214 /*
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001215 * Dispatch cmd descriptor for cmwq execution in process
1216 * context provided by vhost_scsi_workqueue. This also ensures
1217 * cmd is executed on the same kworker CPU as this vhost
1218 * thread to gain positive L2 cache locality effects.
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001219 */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001220 INIT_WORK(&cmd->work, vhost_scsi_submission_work);
1221 queue_work(vhost_scsi_workqueue, &cmd->work);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001222 }
Asias Hee7802212013-05-07 14:54:35 +08001223out:
Asias He7ea206c2013-04-10 15:06:14 +08001224 mutex_unlock(&vq->mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001225}
1226
1227static void vhost_scsi_ctl_handle_kick(struct vhost_work *work)
1228{
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001229 pr_debug("%s: The handling func for control queue.\n", __func__);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001230}
1231
Asias He683bd962013-05-06 16:38:27 +08001232static void
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001233vhost_scsi_send_evt(struct vhost_scsi *vs,
1234 struct vhost_scsi_tpg *tpg,
Asias He683bd962013-05-06 16:38:27 +08001235 struct se_lun *lun,
1236 u32 event,
1237 u32 reason)
Asias Hea6c9af82013-04-25 15:35:21 +08001238{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001239 struct vhost_scsi_evt *evt;
Asias Hea6c9af82013-04-25 15:35:21 +08001240
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001241 evt = vhost_scsi_allocate_evt(vs, event, reason);
Asias Hea6c9af82013-04-25 15:35:21 +08001242 if (!evt)
1243 return;
1244
1245 if (tpg && lun) {
1246 /* TODO: share lun setup code with virtio-scsi.ko */
1247 /*
1248 * Note: evt->event is zeroed when we allocate it and
1249 * lun[4-7] need to be zero according to virtio-scsi spec.
1250 */
1251 evt->event.lun[0] = 0x01;
1252 evt->event.lun[1] = tpg->tport_tpgt & 0xFF;
1253 if (lun->unpacked_lun >= 256)
1254 evt->event.lun[2] = lun->unpacked_lun >> 8 | 0x40 ;
1255 evt->event.lun[3] = lun->unpacked_lun & 0xFF;
1256 }
1257
1258 llist_add(&evt->list, &vs->vs_event_list);
1259 vhost_work_queue(&vs->dev, &vs->vs_event_work);
1260}
1261
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001262static void vhost_scsi_evt_handle_kick(struct vhost_work *work)
1263{
Asias Hea6c9af82013-04-25 15:35:21 +08001264 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
1265 poll.work);
1266 struct vhost_scsi *vs = container_of(vq->dev, struct vhost_scsi, dev);
1267
1268 mutex_lock(&vq->mutex);
1269 if (!vq->private_data)
1270 goto out;
1271
1272 if (vs->vs_events_missed)
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001273 vhost_scsi_send_evt(vs, NULL, NULL, VIRTIO_SCSI_T_NO_EVENT, 0);
Asias Hea6c9af82013-04-25 15:35:21 +08001274out:
1275 mutex_unlock(&vq->mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001276}
1277
1278static void vhost_scsi_handle_kick(struct vhost_work *work)
1279{
1280 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
1281 poll.work);
1282 struct vhost_scsi *vs = container_of(vq->dev, struct vhost_scsi, dev);
1283
Asias He1b7f3902013-02-06 13:20:59 +08001284 vhost_scsi_handle_vq(vs, vq);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001285}
1286
Asias He4f7f46d2013-04-03 14:17:37 +08001287static void vhost_scsi_flush_vq(struct vhost_scsi *vs, int index)
1288{
Asias He3ab2e422013-04-27 11:16:48 +08001289 vhost_poll_flush(&vs->vqs[index].vq.poll);
Asias He4f7f46d2013-04-03 14:17:37 +08001290}
1291
Michael S. Tsirkin3dfbff32013-04-28 15:38:52 +03001292/* Callers must hold dev mutex */
Asias He4f7f46d2013-04-03 14:17:37 +08001293static void vhost_scsi_flush(struct vhost_scsi *vs)
1294{
Asias Hef2f0173d2013-04-27 11:16:49 +08001295 struct vhost_scsi_inflight *old_inflight[VHOST_SCSI_MAX_VQ];
Asias He4f7f46d2013-04-03 14:17:37 +08001296 int i;
1297
Asias Hef2f0173d2013-04-27 11:16:49 +08001298 /* Init new inflight and remember the old inflight */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001299 vhost_scsi_init_inflight(vs, old_inflight);
Asias Hef2f0173d2013-04-27 11:16:49 +08001300
1301 /*
1302 * The inflight->kref was initialized to 1. We decrement it here to
1303 * indicate the start of the flush operation so that it will reach 0
1304 * when all the reqs are finished.
1305 */
1306 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++)
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001307 kref_put(&old_inflight[i]->kref, vhost_scsi_done_inflight);
Asias Hef2f0173d2013-04-27 11:16:49 +08001308
1309 /* Flush both the vhost poll and vhost work */
Asias He4f7f46d2013-04-03 14:17:37 +08001310 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++)
1311 vhost_scsi_flush_vq(vs, i);
1312 vhost_work_flush(&vs->dev, &vs->vs_completion_work);
Asias Hea6c9af82013-04-25 15:35:21 +08001313 vhost_work_flush(&vs->dev, &vs->vs_event_work);
Asias Hef2f0173d2013-04-27 11:16:49 +08001314
1315 /* Wait for all reqs issued before the flush to be finished */
1316 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++)
1317 wait_for_completion(&old_inflight[i]->comp);
Asias He4f7f46d2013-04-03 14:17:37 +08001318}
1319
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001320/*
1321 * Called from vhost_scsi_ioctl() context to walk the list of available
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001322 * vhost_scsi_tpg with an active struct vhost_scsi_nexus
Asias Hef2b7daf2013-04-25 15:35:20 +08001323 *
1324 * The lock nesting rule is:
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001325 * vhost_scsi_mutex -> vs->dev.mutex -> tpg->tv_tpg_mutex -> vq->mutex
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001326 */
Asias He683bd962013-05-06 16:38:27 +08001327static int
1328vhost_scsi_set_endpoint(struct vhost_scsi *vs,
1329 struct vhost_scsi_target *t)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001330{
Nicholas Bellingerab8edab2014-10-08 06:19:20 +00001331 struct se_portal_group *se_tpg;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001332 struct vhost_scsi_tport *tv_tport;
1333 struct vhost_scsi_tpg *tpg;
1334 struct vhost_scsi_tpg **vs_tpg;
Asias He4f7f46d2013-04-03 14:17:37 +08001335 struct vhost_virtqueue *vq;
1336 int index, ret, i, len;
Asias He67e18cf2013-02-05 12:31:57 +08001337 bool match = false;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001338
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001339 mutex_lock(&vhost_scsi_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001340 mutex_lock(&vs->dev.mutex);
Asias Hef2b7daf2013-04-25 15:35:20 +08001341
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001342 /* Verify that ring has been setup correctly. */
1343 for (index = 0; index < vs->dev.nvqs; ++index) {
1344 /* Verify that ring has been setup correctly. */
Asias He3ab2e422013-04-27 11:16:48 +08001345 if (!vhost_vq_access_ok(&vs->vqs[index].vq)) {
Asias Hef2b7daf2013-04-25 15:35:20 +08001346 ret = -EFAULT;
1347 goto out;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001348 }
1349 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001350
Asias He4f7f46d2013-04-03 14:17:37 +08001351 len = sizeof(vs_tpg[0]) * VHOST_SCSI_MAX_TARGET;
1352 vs_tpg = kzalloc(len, GFP_KERNEL);
1353 if (!vs_tpg) {
Asias Hef2b7daf2013-04-25 15:35:20 +08001354 ret = -ENOMEM;
1355 goto out;
Asias He4f7f46d2013-04-03 14:17:37 +08001356 }
1357 if (vs->vs_tpg)
1358 memcpy(vs_tpg, vs->vs_tpg, len);
1359
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001360 list_for_each_entry(tpg, &vhost_scsi_list, tv_tpg_list) {
Asias He98718312013-05-06 16:38:28 +08001361 mutex_lock(&tpg->tv_tpg_mutex);
1362 if (!tpg->tpg_nexus) {
1363 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001364 continue;
1365 }
Asias He98718312013-05-06 16:38:28 +08001366 if (tpg->tv_tpg_vhost_count != 0) {
1367 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001368 continue;
1369 }
Asias He98718312013-05-06 16:38:28 +08001370 tv_tport = tpg->tport;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001371
Asias He67e18cf2013-02-05 12:31:57 +08001372 if (!strcmp(tv_tport->tport_name, t->vhost_wwpn)) {
Asias He98718312013-05-06 16:38:28 +08001373 if (vs->vs_tpg && vs->vs_tpg[tpg->tport_tpgt]) {
Asias He4f7f46d2013-04-03 14:17:37 +08001374 kfree(vs_tpg);
Asias He98718312013-05-06 16:38:28 +08001375 mutex_unlock(&tpg->tv_tpg_mutex);
Asias Hef2b7daf2013-04-25 15:35:20 +08001376 ret = -EEXIST;
1377 goto out;
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001378 }
Nicholas Bellingerab8edab2014-10-08 06:19:20 +00001379 /*
1380 * In order to ensure individual vhost-scsi configfs
1381 * groups cannot be removed while in use by vhost ioctl,
1382 * go ahead and take an explicit se_tpg->tpg_group.cg_item
1383 * dependency now.
1384 */
1385 se_tpg = &tpg->se_tpg;
1386 ret = configfs_depend_item(se_tpg->se_tpg_tfo->tf_subsys,
1387 &se_tpg->tpg_group.cg_item);
1388 if (ret) {
1389 pr_warn("configfs_depend_item() failed: %d\n", ret);
1390 kfree(vs_tpg);
1391 mutex_unlock(&tpg->tv_tpg_mutex);
1392 goto out;
1393 }
Asias He98718312013-05-06 16:38:28 +08001394 tpg->tv_tpg_vhost_count++;
1395 tpg->vhost_scsi = vs;
1396 vs_tpg[tpg->tport_tpgt] = tpg;
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001397 smp_mb__after_atomic();
Asias He67e18cf2013-02-05 12:31:57 +08001398 match = true;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001399 }
Asias He98718312013-05-06 16:38:28 +08001400 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001401 }
Asias He67e18cf2013-02-05 12:31:57 +08001402
1403 if (match) {
1404 memcpy(vs->vs_vhost_wwpn, t->vhost_wwpn,
1405 sizeof(vs->vs_vhost_wwpn));
Asias He4f7f46d2013-04-03 14:17:37 +08001406 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++) {
Asias He3ab2e422013-04-27 11:16:48 +08001407 vq = &vs->vqs[i].vq;
Asias He4f7f46d2013-04-03 14:17:37 +08001408 mutex_lock(&vq->mutex);
Asias He22fa90c2013-05-07 14:54:36 +08001409 vq->private_data = vs_tpg;
Asias Hedfd5d562013-04-03 14:17:38 +08001410 vhost_init_used(vq);
Asias He4f7f46d2013-04-03 14:17:37 +08001411 mutex_unlock(&vq->mutex);
1412 }
Asias He67e18cf2013-02-05 12:31:57 +08001413 ret = 0;
1414 } else {
1415 ret = -EEXIST;
1416 }
1417
Asias He4f7f46d2013-04-03 14:17:37 +08001418 /*
1419 * Act as synchronize_rcu to make sure access to
1420 * old vs->vs_tpg is finished.
1421 */
1422 vhost_scsi_flush(vs);
1423 kfree(vs->vs_tpg);
1424 vs->vs_tpg = vs_tpg;
1425
Asias Hef2b7daf2013-04-25 15:35:20 +08001426out:
Asias He67e18cf2013-02-05 12:31:57 +08001427 mutex_unlock(&vs->dev.mutex);
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001428 mutex_unlock(&vhost_scsi_mutex);
Asias He67e18cf2013-02-05 12:31:57 +08001429 return ret;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001430}
1431
Asias He683bd962013-05-06 16:38:27 +08001432static int
1433vhost_scsi_clear_endpoint(struct vhost_scsi *vs,
1434 struct vhost_scsi_target *t)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001435{
Nicholas Bellingerab8edab2014-10-08 06:19:20 +00001436 struct se_portal_group *se_tpg;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001437 struct vhost_scsi_tport *tv_tport;
1438 struct vhost_scsi_tpg *tpg;
Asias He4f7f46d2013-04-03 14:17:37 +08001439 struct vhost_virtqueue *vq;
1440 bool match = false;
Asias He67e18cf2013-02-05 12:31:57 +08001441 int index, ret, i;
1442 u8 target;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001443
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001444 mutex_lock(&vhost_scsi_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001445 mutex_lock(&vs->dev.mutex);
1446 /* Verify that ring has been setup correctly. */
1447 for (index = 0; index < vs->dev.nvqs; ++index) {
Asias He3ab2e422013-04-27 11:16:48 +08001448 if (!vhost_vq_access_ok(&vs->vqs[index].vq)) {
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001449 ret = -EFAULT;
Asias He038e0af2013-03-15 09:14:05 +08001450 goto err_dev;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001451 }
1452 }
Asias He4f7f46d2013-04-03 14:17:37 +08001453
1454 if (!vs->vs_tpg) {
Asias Hef2b7daf2013-04-25 15:35:20 +08001455 ret = 0;
1456 goto err_dev;
Asias He4f7f46d2013-04-03 14:17:37 +08001457 }
1458
Asias He67e18cf2013-02-05 12:31:57 +08001459 for (i = 0; i < VHOST_SCSI_MAX_TARGET; i++) {
1460 target = i;
Asias He98718312013-05-06 16:38:28 +08001461 tpg = vs->vs_tpg[target];
1462 if (!tpg)
Asias He67e18cf2013-02-05 12:31:57 +08001463 continue;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001464
Asias He98718312013-05-06 16:38:28 +08001465 mutex_lock(&tpg->tv_tpg_mutex);
1466 tv_tport = tpg->tport;
Asias He67e18cf2013-02-05 12:31:57 +08001467 if (!tv_tport) {
1468 ret = -ENODEV;
Asias He038e0af2013-03-15 09:14:05 +08001469 goto err_tpg;
Asias He67e18cf2013-02-05 12:31:57 +08001470 }
1471
1472 if (strcmp(tv_tport->tport_name, t->vhost_wwpn)) {
Asias He98718312013-05-06 16:38:28 +08001473 pr_warn("tv_tport->tport_name: %s, tpg->tport_tpgt: %hu"
Asias He67e18cf2013-02-05 12:31:57 +08001474 " does not match t->vhost_wwpn: %s, t->vhost_tpgt: %hu\n",
Asias He98718312013-05-06 16:38:28 +08001475 tv_tport->tport_name, tpg->tport_tpgt,
Asias He67e18cf2013-02-05 12:31:57 +08001476 t->vhost_wwpn, t->vhost_tpgt);
1477 ret = -EINVAL;
Asias He038e0af2013-03-15 09:14:05 +08001478 goto err_tpg;
Asias He67e18cf2013-02-05 12:31:57 +08001479 }
Asias He98718312013-05-06 16:38:28 +08001480 tpg->tv_tpg_vhost_count--;
1481 tpg->vhost_scsi = NULL;
Asias He67e18cf2013-02-05 12:31:57 +08001482 vs->vs_tpg[target] = NULL;
Asias He4f7f46d2013-04-03 14:17:37 +08001483 match = true;
Asias He98718312013-05-06 16:38:28 +08001484 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellingerab8edab2014-10-08 06:19:20 +00001485 /*
1486 * Release se_tpg->tpg_group.cg_item configfs dependency now
1487 * to allow vhost-scsi WWPN se_tpg->tpg_group shutdown to occur.
1488 */
1489 se_tpg = &tpg->se_tpg;
1490 configfs_undepend_item(se_tpg->se_tpg_tfo->tf_subsys,
1491 &se_tpg->tpg_group.cg_item);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001492 }
Asias He4f7f46d2013-04-03 14:17:37 +08001493 if (match) {
1494 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++) {
Asias He3ab2e422013-04-27 11:16:48 +08001495 vq = &vs->vqs[i].vq;
Asias He4f7f46d2013-04-03 14:17:37 +08001496 mutex_lock(&vq->mutex);
Asias He22fa90c2013-05-07 14:54:36 +08001497 vq->private_data = NULL;
Asias He4f7f46d2013-04-03 14:17:37 +08001498 mutex_unlock(&vq->mutex);
1499 }
1500 }
1501 /*
1502 * Act as synchronize_rcu to make sure access to
1503 * old vs->vs_tpg is finished.
1504 */
1505 vhost_scsi_flush(vs);
1506 kfree(vs->vs_tpg);
1507 vs->vs_tpg = NULL;
Asias Hea6c9af82013-04-25 15:35:21 +08001508 WARN_ON(vs->vs_events_nr);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001509 mutex_unlock(&vs->dev.mutex);
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001510 mutex_unlock(&vhost_scsi_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001511 return 0;
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001512
Asias He038e0af2013-03-15 09:14:05 +08001513err_tpg:
Asias He98718312013-05-06 16:38:28 +08001514 mutex_unlock(&tpg->tv_tpg_mutex);
Asias He038e0af2013-03-15 09:14:05 +08001515err_dev:
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001516 mutex_unlock(&vs->dev.mutex);
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001517 mutex_unlock(&vhost_scsi_mutex);
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001518 return ret;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001519}
1520
Asias He4f7f46d2013-04-03 14:17:37 +08001521static int vhost_scsi_set_features(struct vhost_scsi *vs, u64 features)
1522{
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001523 struct vhost_virtqueue *vq;
1524 int i;
1525
Asias He4f7f46d2013-04-03 14:17:37 +08001526 if (features & ~VHOST_SCSI_FEATURES)
1527 return -EOPNOTSUPP;
1528
1529 mutex_lock(&vs->dev.mutex);
1530 if ((features & (1 << VHOST_F_LOG_ALL)) &&
1531 !vhost_log_access_ok(&vs->dev)) {
1532 mutex_unlock(&vs->dev.mutex);
1533 return -EFAULT;
1534 }
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001535
1536 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++) {
1537 vq = &vs->vqs[i].vq;
1538 mutex_lock(&vq->mutex);
1539 vq->acked_features = features;
1540 mutex_unlock(&vq->mutex);
1541 }
Asias He4f7f46d2013-04-03 14:17:37 +08001542 mutex_unlock(&vs->dev.mutex);
1543 return 0;
1544}
1545
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001546static int vhost_scsi_open(struct inode *inode, struct file *f)
1547{
Asias Hec7289312013-05-06 16:38:26 +08001548 struct vhost_scsi *vs;
Asias He3ab2e422013-04-27 11:16:48 +08001549 struct vhost_virtqueue **vqs;
Michael S. Tsirkin595cb752013-09-17 09:30:34 +03001550 int r = -ENOMEM, i;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001551
Michael S. Tsirkin595cb752013-09-17 09:30:34 +03001552 vs = kzalloc(sizeof(*vs), GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
1553 if (!vs) {
1554 vs = vzalloc(sizeof(*vs));
1555 if (!vs)
1556 goto err_vs;
1557 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001558
Asias He3ab2e422013-04-27 11:16:48 +08001559 vqs = kmalloc(VHOST_SCSI_MAX_VQ * sizeof(*vqs), GFP_KERNEL);
Michael S. Tsirkin595cb752013-09-17 09:30:34 +03001560 if (!vqs)
1561 goto err_vqs;
Asias He3ab2e422013-04-27 11:16:48 +08001562
Asias Hec7289312013-05-06 16:38:26 +08001563 vhost_work_init(&vs->vs_completion_work, vhost_scsi_complete_cmd_work);
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001564 vhost_work_init(&vs->vs_event_work, vhost_scsi_evt_work);
Asias Hea6c9af82013-04-25 15:35:21 +08001565
Asias Hec7289312013-05-06 16:38:26 +08001566 vs->vs_events_nr = 0;
1567 vs->vs_events_missed = false;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001568
Asias Hec7289312013-05-06 16:38:26 +08001569 vqs[VHOST_SCSI_VQ_CTL] = &vs->vqs[VHOST_SCSI_VQ_CTL].vq;
1570 vqs[VHOST_SCSI_VQ_EVT] = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
1571 vs->vqs[VHOST_SCSI_VQ_CTL].vq.handle_kick = vhost_scsi_ctl_handle_kick;
1572 vs->vqs[VHOST_SCSI_VQ_EVT].vq.handle_kick = vhost_scsi_evt_handle_kick;
Asias He3ab2e422013-04-27 11:16:48 +08001573 for (i = VHOST_SCSI_VQ_IO; i < VHOST_SCSI_MAX_VQ; i++) {
Asias Hec7289312013-05-06 16:38:26 +08001574 vqs[i] = &vs->vqs[i].vq;
1575 vs->vqs[i].vq.handle_kick = vhost_scsi_handle_kick;
Asias He3ab2e422013-04-27 11:16:48 +08001576 }
Zhi Yong Wu59566b6e2013-12-07 04:13:03 +08001577 vhost_dev_init(&vs->dev, vqs, VHOST_SCSI_MAX_VQ);
Asias Hef2f0173d2013-04-27 11:16:49 +08001578
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001579 vhost_scsi_init_inflight(vs, NULL);
Asias Hef2f0173d2013-04-27 11:16:49 +08001580
Asias Hec7289312013-05-06 16:38:26 +08001581 f->private_data = vs;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001582 return 0;
Michael S. Tsirkin595cb752013-09-17 09:30:34 +03001583
Michael S. Tsirkin595cb752013-09-17 09:30:34 +03001584err_vqs:
Michael S. Tsirkin684044412014-06-12 19:00:01 +03001585 kvfree(vs);
Michael S. Tsirkin595cb752013-09-17 09:30:34 +03001586err_vs:
1587 return r;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001588}
1589
1590static int vhost_scsi_release(struct inode *inode, struct file *f)
1591{
Asias Hec7289312013-05-06 16:38:26 +08001592 struct vhost_scsi *vs = f->private_data;
Asias He67e18cf2013-02-05 12:31:57 +08001593 struct vhost_scsi_target t;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001594
Asias Hec7289312013-05-06 16:38:26 +08001595 mutex_lock(&vs->dev.mutex);
1596 memcpy(t.vhost_wwpn, vs->vs_vhost_wwpn, sizeof(t.vhost_wwpn));
1597 mutex_unlock(&vs->dev.mutex);
1598 vhost_scsi_clear_endpoint(vs, &t);
1599 vhost_dev_stop(&vs->dev);
1600 vhost_dev_cleanup(&vs->dev, false);
Asias Hea6c9af82013-04-25 15:35:21 +08001601 /* Jobs can re-queue themselves in evt kick handler. Do extra flush. */
Asias Hec7289312013-05-06 16:38:26 +08001602 vhost_scsi_flush(vs);
1603 kfree(vs->dev.vqs);
Michael S. Tsirkin684044412014-06-12 19:00:01 +03001604 kvfree(vs);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001605 return 0;
1606}
1607
Asias He683bd962013-05-06 16:38:27 +08001608static long
1609vhost_scsi_ioctl(struct file *f,
1610 unsigned int ioctl,
1611 unsigned long arg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001612{
1613 struct vhost_scsi *vs = f->private_data;
1614 struct vhost_scsi_target backend;
1615 void __user *argp = (void __user *)arg;
1616 u64 __user *featurep = argp;
Asias He11c634182013-04-25 15:35:22 +08001617 u32 __user *eventsp = argp;
1618 u32 events_missed;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001619 u64 features;
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001620 int r, abi_version = VHOST_SCSI_ABI_VERSION;
Asias He3ab2e422013-04-27 11:16:48 +08001621 struct vhost_virtqueue *vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001622
1623 switch (ioctl) {
1624 case VHOST_SCSI_SET_ENDPOINT:
1625 if (copy_from_user(&backend, argp, sizeof backend))
1626 return -EFAULT;
Michael S. Tsirkin6de71452012-08-18 15:44:09 -07001627 if (backend.reserved != 0)
1628 return -EOPNOTSUPP;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001629
1630 return vhost_scsi_set_endpoint(vs, &backend);
1631 case VHOST_SCSI_CLEAR_ENDPOINT:
1632 if (copy_from_user(&backend, argp, sizeof backend))
1633 return -EFAULT;
Michael S. Tsirkin6de71452012-08-18 15:44:09 -07001634 if (backend.reserved != 0)
1635 return -EOPNOTSUPP;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001636
1637 return vhost_scsi_clear_endpoint(vs, &backend);
1638 case VHOST_SCSI_GET_ABI_VERSION:
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001639 if (copy_to_user(argp, &abi_version, sizeof abi_version))
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001640 return -EFAULT;
1641 return 0;
Asias He11c634182013-04-25 15:35:22 +08001642 case VHOST_SCSI_SET_EVENTS_MISSED:
1643 if (get_user(events_missed, eventsp))
1644 return -EFAULT;
1645 mutex_lock(&vq->mutex);
1646 vs->vs_events_missed = events_missed;
1647 mutex_unlock(&vq->mutex);
1648 return 0;
1649 case VHOST_SCSI_GET_EVENTS_MISSED:
1650 mutex_lock(&vq->mutex);
1651 events_missed = vs->vs_events_missed;
1652 mutex_unlock(&vq->mutex);
1653 if (put_user(events_missed, eventsp))
1654 return -EFAULT;
1655 return 0;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001656 case VHOST_GET_FEATURES:
Nicholas Bellinger5dade712013-03-27 17:23:41 -07001657 features = VHOST_SCSI_FEATURES;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001658 if (copy_to_user(featurep, &features, sizeof features))
1659 return -EFAULT;
1660 return 0;
1661 case VHOST_SET_FEATURES:
1662 if (copy_from_user(&features, featurep, sizeof features))
1663 return -EFAULT;
1664 return vhost_scsi_set_features(vs, features);
1665 default:
1666 mutex_lock(&vs->dev.mutex);
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001667 r = vhost_dev_ioctl(&vs->dev, ioctl, argp);
1668 /* TODO: flush backend after dev ioctl. */
1669 if (r == -ENOIOCTLCMD)
1670 r = vhost_vring_ioctl(&vs->dev, ioctl, argp);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001671 mutex_unlock(&vs->dev.mutex);
1672 return r;
1673 }
1674}
1675
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001676#ifdef CONFIG_COMPAT
1677static long vhost_scsi_compat_ioctl(struct file *f, unsigned int ioctl,
1678 unsigned long arg)
1679{
1680 return vhost_scsi_ioctl(f, ioctl, (unsigned long)compat_ptr(arg));
1681}
1682#endif
1683
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001684static const struct file_operations vhost_scsi_fops = {
1685 .owner = THIS_MODULE,
1686 .release = vhost_scsi_release,
1687 .unlocked_ioctl = vhost_scsi_ioctl,
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001688#ifdef CONFIG_COMPAT
1689 .compat_ioctl = vhost_scsi_compat_ioctl,
1690#endif
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001691 .open = vhost_scsi_open,
1692 .llseek = noop_llseek,
1693};
1694
1695static struct miscdevice vhost_scsi_misc = {
1696 MISC_DYNAMIC_MINOR,
1697 "vhost-scsi",
1698 &vhost_scsi_fops,
1699};
1700
1701static int __init vhost_scsi_register(void)
1702{
1703 return misc_register(&vhost_scsi_misc);
1704}
1705
1706static int vhost_scsi_deregister(void)
1707{
1708 return misc_deregister(&vhost_scsi_misc);
1709}
1710
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001711static char *vhost_scsi_dump_proto_id(struct vhost_scsi_tport *tport)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001712{
1713 switch (tport->tport_proto_id) {
1714 case SCSI_PROTOCOL_SAS:
1715 return "SAS";
1716 case SCSI_PROTOCOL_FCP:
1717 return "FCP";
1718 case SCSI_PROTOCOL_ISCSI:
1719 return "iSCSI";
1720 default:
1721 break;
1722 }
1723
1724 return "Unknown";
1725}
1726
Asias He683bd962013-05-06 16:38:27 +08001727static void
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001728vhost_scsi_do_plug(struct vhost_scsi_tpg *tpg,
Asias He683bd962013-05-06 16:38:27 +08001729 struct se_lun *lun, bool plug)
Asias Hea6c9af82013-04-25 15:35:21 +08001730{
1731
1732 struct vhost_scsi *vs = tpg->vhost_scsi;
1733 struct vhost_virtqueue *vq;
1734 u32 reason;
1735
1736 if (!vs)
1737 return;
1738
1739 mutex_lock(&vs->dev.mutex);
Asias Hea6c9af82013-04-25 15:35:21 +08001740
1741 if (plug)
1742 reason = VIRTIO_SCSI_EVT_RESET_RESCAN;
1743 else
1744 reason = VIRTIO_SCSI_EVT_RESET_REMOVED;
1745
Asias He3ab2e422013-04-27 11:16:48 +08001746 vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
Asias Hea6c9af82013-04-25 15:35:21 +08001747 mutex_lock(&vq->mutex);
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001748 if (vhost_has_feature(vq, VIRTIO_SCSI_F_HOTPLUG))
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001749 vhost_scsi_send_evt(vs, tpg, lun,
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001750 VIRTIO_SCSI_T_TRANSPORT_RESET, reason);
Asias Hea6c9af82013-04-25 15:35:21 +08001751 mutex_unlock(&vq->mutex);
1752 mutex_unlock(&vs->dev.mutex);
1753}
1754
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001755static void vhost_scsi_hotplug(struct vhost_scsi_tpg *tpg, struct se_lun *lun)
Asias Hea6c9af82013-04-25 15:35:21 +08001756{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001757 vhost_scsi_do_plug(tpg, lun, true);
Asias Hea6c9af82013-04-25 15:35:21 +08001758}
1759
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001760static void vhost_scsi_hotunplug(struct vhost_scsi_tpg *tpg, struct se_lun *lun)
Asias Hea6c9af82013-04-25 15:35:21 +08001761{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001762 vhost_scsi_do_plug(tpg, lun, false);
Asias Hea6c9af82013-04-25 15:35:21 +08001763}
1764
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001765static int vhost_scsi_port_link(struct se_portal_group *se_tpg,
Asias He683bd962013-05-06 16:38:27 +08001766 struct se_lun *lun)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001767{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001768 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
1769 struct vhost_scsi_tpg, se_tpg);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001770
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001771 mutex_lock(&vhost_scsi_mutex);
Asias Hea6c9af82013-04-25 15:35:21 +08001772
Asias He98718312013-05-06 16:38:28 +08001773 mutex_lock(&tpg->tv_tpg_mutex);
1774 tpg->tv_tpg_port_count++;
1775 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001776
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001777 vhost_scsi_hotplug(tpg, lun);
Asias Hea6c9af82013-04-25 15:35:21 +08001778
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001779 mutex_unlock(&vhost_scsi_mutex);
Asias Hea6c9af82013-04-25 15:35:21 +08001780
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001781 return 0;
1782}
1783
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001784static void vhost_scsi_port_unlink(struct se_portal_group *se_tpg,
Asias He683bd962013-05-06 16:38:27 +08001785 struct se_lun *lun)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001786{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001787 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
1788 struct vhost_scsi_tpg, se_tpg);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001789
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001790 mutex_lock(&vhost_scsi_mutex);
Asias Hea6c9af82013-04-25 15:35:21 +08001791
Asias He98718312013-05-06 16:38:28 +08001792 mutex_lock(&tpg->tv_tpg_mutex);
1793 tpg->tv_tpg_port_count--;
1794 mutex_unlock(&tpg->tv_tpg_mutex);
Asias Hea6c9af82013-04-25 15:35:21 +08001795
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001796 vhost_scsi_hotunplug(tpg, lun);
Asias Hea6c9af82013-04-25 15:35:21 +08001797
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001798 mutex_unlock(&vhost_scsi_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001799}
1800
Asias He683bd962013-05-06 16:38:27 +08001801static struct se_node_acl *
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001802vhost_scsi_make_nodeacl(struct se_portal_group *se_tpg,
Asias He683bd962013-05-06 16:38:27 +08001803 struct config_group *group,
1804 const char *name)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001805{
1806 struct se_node_acl *se_nacl, *se_nacl_new;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001807 struct vhost_scsi_nacl *nacl;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001808 u64 wwpn = 0;
1809 u32 nexus_depth;
1810
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001811 /* vhost_scsi_parse_wwn(name, &wwpn, 1) < 0)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001812 return ERR_PTR(-EINVAL); */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001813 se_nacl_new = vhost_scsi_alloc_fabric_acl(se_tpg);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001814 if (!se_nacl_new)
1815 return ERR_PTR(-ENOMEM);
1816
1817 nexus_depth = 1;
1818 /*
1819 * se_nacl_new may be released by core_tpg_add_initiator_node_acl()
1820 * when converting a NodeACL from demo mode -> explict
1821 */
1822 se_nacl = core_tpg_add_initiator_node_acl(se_tpg, se_nacl_new,
1823 name, nexus_depth);
1824 if (IS_ERR(se_nacl)) {
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001825 vhost_scsi_release_fabric_acl(se_tpg, se_nacl_new);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001826 return se_nacl;
1827 }
1828 /*
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001829 * Locate our struct vhost_scsi_nacl and set the FC Nport WWPN
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001830 */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001831 nacl = container_of(se_nacl, struct vhost_scsi_nacl, se_node_acl);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001832 nacl->iport_wwpn = wwpn;
1833
1834 return se_nacl;
1835}
1836
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001837static void vhost_scsi_drop_nodeacl(struct se_node_acl *se_acl)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001838{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001839 struct vhost_scsi_nacl *nacl = container_of(se_acl,
1840 struct vhost_scsi_nacl, se_node_acl);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001841 core_tpg_del_initiator_node_acl(se_acl->se_tpg, se_acl, 1);
1842 kfree(nacl);
1843}
1844
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001845static void vhost_scsi_free_cmd_map_res(struct vhost_scsi_nexus *nexus,
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001846 struct se_session *se_sess)
1847{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001848 struct vhost_scsi_cmd *tv_cmd;
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001849 unsigned int i;
1850
1851 if (!se_sess->sess_cmd_map)
1852 return;
1853
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001854 for (i = 0; i < VHOST_SCSI_DEFAULT_TAGS; i++) {
1855 tv_cmd = &((struct vhost_scsi_cmd *)se_sess->sess_cmd_map)[i];
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001856
1857 kfree(tv_cmd->tvc_sgl);
Nicholas Bellingerb1935f62014-02-22 18:08:24 -08001858 kfree(tv_cmd->tvc_prot_sgl);
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001859 kfree(tv_cmd->tvc_upages);
1860 }
1861}
1862
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001863static int vhost_scsi_make_nexus(struct vhost_scsi_tpg *tpg,
Asias He683bd962013-05-06 16:38:27 +08001864 const char *name)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001865{
1866 struct se_portal_group *se_tpg;
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001867 struct se_session *se_sess;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001868 struct vhost_scsi_nexus *tv_nexus;
1869 struct vhost_scsi_cmd *tv_cmd;
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001870 unsigned int i;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001871
Asias He98718312013-05-06 16:38:28 +08001872 mutex_lock(&tpg->tv_tpg_mutex);
1873 if (tpg->tpg_nexus) {
1874 mutex_unlock(&tpg->tv_tpg_mutex);
1875 pr_debug("tpg->tpg_nexus already exists\n");
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001876 return -EEXIST;
1877 }
Asias He98718312013-05-06 16:38:28 +08001878 se_tpg = &tpg->se_tpg;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001879
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001880 tv_nexus = kzalloc(sizeof(struct vhost_scsi_nexus), GFP_KERNEL);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001881 if (!tv_nexus) {
Asias He98718312013-05-06 16:38:28 +08001882 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001883 pr_err("Unable to allocate struct vhost_scsi_nexus\n");
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001884 return -ENOMEM;
1885 }
1886 /*
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -07001887 * Initialize the struct se_session pointer and setup tagpool
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001888 * for struct vhost_scsi_cmd descriptors
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001889 */
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -07001890 tv_nexus->tvn_se_sess = transport_init_session_tags(
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001891 VHOST_SCSI_DEFAULT_TAGS,
1892 sizeof(struct vhost_scsi_cmd),
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001893 TARGET_PROT_DIN_PASS | TARGET_PROT_DOUT_PASS);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001894 if (IS_ERR(tv_nexus->tvn_se_sess)) {
Asias He98718312013-05-06 16:38:28 +08001895 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001896 kfree(tv_nexus);
1897 return -ENOMEM;
1898 }
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001899 se_sess = tv_nexus->tvn_se_sess;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001900 for (i = 0; i < VHOST_SCSI_DEFAULT_TAGS; i++) {
1901 tv_cmd = &((struct vhost_scsi_cmd *)se_sess->sess_cmd_map)[i];
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001902
1903 tv_cmd->tvc_sgl = kzalloc(sizeof(struct scatterlist) *
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001904 VHOST_SCSI_PREALLOC_SGLS, GFP_KERNEL);
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001905 if (!tv_cmd->tvc_sgl) {
1906 mutex_unlock(&tpg->tv_tpg_mutex);
1907 pr_err("Unable to allocate tv_cmd->tvc_sgl\n");
1908 goto out;
1909 }
1910
1911 tv_cmd->tvc_upages = kzalloc(sizeof(struct page *) *
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001912 VHOST_SCSI_PREALLOC_UPAGES, GFP_KERNEL);
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001913 if (!tv_cmd->tvc_upages) {
1914 mutex_unlock(&tpg->tv_tpg_mutex);
1915 pr_err("Unable to allocate tv_cmd->tvc_upages\n");
1916 goto out;
1917 }
Nicholas Bellingerb1935f62014-02-22 18:08:24 -08001918
1919 tv_cmd->tvc_prot_sgl = kzalloc(sizeof(struct scatterlist) *
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001920 VHOST_SCSI_PREALLOC_PROT_SGLS, GFP_KERNEL);
Nicholas Bellingerb1935f62014-02-22 18:08:24 -08001921 if (!tv_cmd->tvc_prot_sgl) {
1922 mutex_unlock(&tpg->tv_tpg_mutex);
1923 pr_err("Unable to allocate tv_cmd->tvc_prot_sgl\n");
1924 goto out;
1925 }
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001926 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001927 /*
1928 * Since we are running in 'demo mode' this call with generate a
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001929 * struct se_node_acl for the vhost_scsi struct se_portal_group with
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001930 * the SCSI Initiator port name of the passed configfs group 'name'.
1931 */
1932 tv_nexus->tvn_se_sess->se_node_acl = core_tpg_check_initiator_node_acl(
1933 se_tpg, (unsigned char *)name);
1934 if (!tv_nexus->tvn_se_sess->se_node_acl) {
Asias He98718312013-05-06 16:38:28 +08001935 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001936 pr_debug("core_tpg_check_initiator_node_acl() failed"
1937 " for %s\n", name);
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001938 goto out;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001939 }
1940 /*
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001941 * Now register the TCM vhost virtual I_T Nexus as active with the
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001942 * call to __transport_register_session()
1943 */
1944 __transport_register_session(se_tpg, tv_nexus->tvn_se_sess->se_node_acl,
1945 tv_nexus->tvn_se_sess, tv_nexus);
Asias He98718312013-05-06 16:38:28 +08001946 tpg->tpg_nexus = tv_nexus;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001947
Asias He98718312013-05-06 16:38:28 +08001948 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001949 return 0;
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001950
1951out:
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001952 vhost_scsi_free_cmd_map_res(tv_nexus, se_sess);
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001953 transport_free_session(se_sess);
1954 kfree(tv_nexus);
1955 return -ENOMEM;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001956}
1957
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001958static int vhost_scsi_drop_nexus(struct vhost_scsi_tpg *tpg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001959{
1960 struct se_session *se_sess;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001961 struct vhost_scsi_nexus *tv_nexus;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001962
1963 mutex_lock(&tpg->tv_tpg_mutex);
1964 tv_nexus = tpg->tpg_nexus;
1965 if (!tv_nexus) {
1966 mutex_unlock(&tpg->tv_tpg_mutex);
1967 return -ENODEV;
1968 }
1969
1970 se_sess = tv_nexus->tvn_se_sess;
1971 if (!se_sess) {
1972 mutex_unlock(&tpg->tv_tpg_mutex);
1973 return -ENODEV;
1974 }
1975
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001976 if (tpg->tv_tpg_port_count != 0) {
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001977 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001978 pr_err("Unable to remove TCM_vhost I_T Nexus with"
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001979 " active TPG port count: %d\n",
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001980 tpg->tv_tpg_port_count);
1981 return -EBUSY;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001982 }
1983
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001984 if (tpg->tv_tpg_vhost_count != 0) {
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001985 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001986 pr_err("Unable to remove TCM_vhost I_T Nexus with"
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001987 " active TPG vhost count: %d\n",
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001988 tpg->tv_tpg_vhost_count);
1989 return -EBUSY;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001990 }
1991
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001992 pr_debug("TCM_vhost_ConfigFS: Removing I_T Nexus to emulated"
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001993 " %s Initiator Port: %s\n", vhost_scsi_dump_proto_id(tpg->tport),
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001994 tv_nexus->tvn_se_sess->se_node_acl->initiatorname);
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001995
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001996 vhost_scsi_free_cmd_map_res(tv_nexus, se_sess);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001997 /*
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001998 * Release the SCSI I_T Nexus to the emulated vhost Target Port
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001999 */
2000 transport_deregister_session(tv_nexus->tvn_se_sess);
2001 tpg->tpg_nexus = NULL;
2002 mutex_unlock(&tpg->tv_tpg_mutex);
2003
2004 kfree(tv_nexus);
2005 return 0;
2006}
2007
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002008static ssize_t vhost_scsi_tpg_show_nexus(struct se_portal_group *se_tpg,
Asias He683bd962013-05-06 16:38:27 +08002009 char *page)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002010{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002011 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
2012 struct vhost_scsi_tpg, se_tpg);
2013 struct vhost_scsi_nexus *tv_nexus;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002014 ssize_t ret;
2015
Asias He98718312013-05-06 16:38:28 +08002016 mutex_lock(&tpg->tv_tpg_mutex);
2017 tv_nexus = tpg->tpg_nexus;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002018 if (!tv_nexus) {
Asias He98718312013-05-06 16:38:28 +08002019 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002020 return -ENODEV;
2021 }
2022 ret = snprintf(page, PAGE_SIZE, "%s\n",
2023 tv_nexus->tvn_se_sess->se_node_acl->initiatorname);
Asias He98718312013-05-06 16:38:28 +08002024 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002025
2026 return ret;
2027}
2028
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002029static ssize_t vhost_scsi_tpg_store_nexus(struct se_portal_group *se_tpg,
Asias He683bd962013-05-06 16:38:27 +08002030 const char *page,
2031 size_t count)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002032{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002033 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
2034 struct vhost_scsi_tpg, se_tpg);
2035 struct vhost_scsi_tport *tport_wwn = tpg->tport;
2036 unsigned char i_port[VHOST_SCSI_NAMELEN], *ptr, *port_ptr;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002037 int ret;
2038 /*
2039 * Shutdown the active I_T nexus if 'NULL' is passed..
2040 */
2041 if (!strncmp(page, "NULL", 4)) {
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002042 ret = vhost_scsi_drop_nexus(tpg);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002043 return (!ret) ? count : ret;
2044 }
2045 /*
2046 * Otherwise make sure the passed virtual Initiator port WWN matches
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002047 * the fabric protocol_id set in vhost_scsi_make_tport(), and call
2048 * vhost_scsi_make_nexus().
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002049 */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002050 if (strlen(page) >= VHOST_SCSI_NAMELEN) {
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002051 pr_err("Emulated NAA Sas Address: %s, exceeds"
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002052 " max: %d\n", page, VHOST_SCSI_NAMELEN);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002053 return -EINVAL;
2054 }
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002055 snprintf(&i_port[0], VHOST_SCSI_NAMELEN, "%s", page);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002056
2057 ptr = strstr(i_port, "naa.");
2058 if (ptr) {
2059 if (tport_wwn->tport_proto_id != SCSI_PROTOCOL_SAS) {
2060 pr_err("Passed SAS Initiator Port %s does not"
2061 " match target port protoid: %s\n", i_port,
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002062 vhost_scsi_dump_proto_id(tport_wwn));
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002063 return -EINVAL;
2064 }
2065 port_ptr = &i_port[0];
2066 goto check_newline;
2067 }
2068 ptr = strstr(i_port, "fc.");
2069 if (ptr) {
2070 if (tport_wwn->tport_proto_id != SCSI_PROTOCOL_FCP) {
2071 pr_err("Passed FCP Initiator Port %s does not"
2072 " match target port protoid: %s\n", i_port,
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002073 vhost_scsi_dump_proto_id(tport_wwn));
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002074 return -EINVAL;
2075 }
2076 port_ptr = &i_port[3]; /* Skip over "fc." */
2077 goto check_newline;
2078 }
2079 ptr = strstr(i_port, "iqn.");
2080 if (ptr) {
2081 if (tport_wwn->tport_proto_id != SCSI_PROTOCOL_ISCSI) {
2082 pr_err("Passed iSCSI Initiator Port %s does not"
2083 " match target port protoid: %s\n", i_port,
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002084 vhost_scsi_dump_proto_id(tport_wwn));
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002085 return -EINVAL;
2086 }
2087 port_ptr = &i_port[0];
2088 goto check_newline;
2089 }
2090 pr_err("Unable to locate prefix for emulated Initiator Port:"
2091 " %s\n", i_port);
2092 return -EINVAL;
2093 /*
2094 * Clear any trailing newline for the NAA WWN
2095 */
2096check_newline:
2097 if (i_port[strlen(i_port)-1] == '\n')
2098 i_port[strlen(i_port)-1] = '\0';
2099
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002100 ret = vhost_scsi_make_nexus(tpg, port_ptr);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002101 if (ret < 0)
2102 return ret;
2103
2104 return count;
2105}
2106
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002107TF_TPG_BASE_ATTR(vhost_scsi, nexus, S_IRUGO | S_IWUSR);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002108
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002109static struct configfs_attribute *vhost_scsi_tpg_attrs[] = {
2110 &vhost_scsi_tpg_nexus.attr,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002111 NULL,
2112};
2113
Asias He683bd962013-05-06 16:38:27 +08002114static struct se_portal_group *
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002115vhost_scsi_make_tpg(struct se_wwn *wwn,
Asias He683bd962013-05-06 16:38:27 +08002116 struct config_group *group,
2117 const char *name)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002118{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002119 struct vhost_scsi_tport *tport = container_of(wwn,
2120 struct vhost_scsi_tport, tport_wwn);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002121
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002122 struct vhost_scsi_tpg *tpg;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002123 unsigned long tpgt;
2124 int ret;
2125
2126 if (strstr(name, "tpgt_") != name)
2127 return ERR_PTR(-EINVAL);
2128 if (kstrtoul(name + 5, 10, &tpgt) || tpgt > UINT_MAX)
2129 return ERR_PTR(-EINVAL);
2130
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002131 tpg = kzalloc(sizeof(struct vhost_scsi_tpg), GFP_KERNEL);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002132 if (!tpg) {
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002133 pr_err("Unable to allocate struct vhost_scsi_tpg");
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002134 return ERR_PTR(-ENOMEM);
2135 }
2136 mutex_init(&tpg->tv_tpg_mutex);
2137 INIT_LIST_HEAD(&tpg->tv_tpg_list);
2138 tpg->tport = tport;
2139 tpg->tport_tpgt = tpgt;
2140
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002141 ret = core_tpg_register(&vhost_scsi_fabric_configfs->tf_ops, wwn,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002142 &tpg->se_tpg, tpg, TRANSPORT_TPG_TYPE_NORMAL);
2143 if (ret < 0) {
2144 kfree(tpg);
2145 return NULL;
2146 }
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002147 mutex_lock(&vhost_scsi_mutex);
2148 list_add_tail(&tpg->tv_tpg_list, &vhost_scsi_list);
2149 mutex_unlock(&vhost_scsi_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002150
2151 return &tpg->se_tpg;
2152}
2153
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002154static void vhost_scsi_drop_tpg(struct se_portal_group *se_tpg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002155{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002156 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
2157 struct vhost_scsi_tpg, se_tpg);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002158
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002159 mutex_lock(&vhost_scsi_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002160 list_del(&tpg->tv_tpg_list);
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002161 mutex_unlock(&vhost_scsi_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002162 /*
Nicholas Bellinger101998f2012-07-30 13:30:00 -07002163 * Release the virtual I_T Nexus for this vhost TPG
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002164 */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002165 vhost_scsi_drop_nexus(tpg);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002166 /*
2167 * Deregister the se_tpg from TCM..
2168 */
2169 core_tpg_deregister(se_tpg);
2170 kfree(tpg);
2171}
2172
Asias He683bd962013-05-06 16:38:27 +08002173static struct se_wwn *
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002174vhost_scsi_make_tport(struct target_fabric_configfs *tf,
Asias He683bd962013-05-06 16:38:27 +08002175 struct config_group *group,
2176 const char *name)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002177{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002178 struct vhost_scsi_tport *tport;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002179 char *ptr;
2180 u64 wwpn = 0;
2181 int off = 0;
2182
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002183 /* if (vhost_scsi_parse_wwn(name, &wwpn, 1) < 0)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002184 return ERR_PTR(-EINVAL); */
2185
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002186 tport = kzalloc(sizeof(struct vhost_scsi_tport), GFP_KERNEL);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002187 if (!tport) {
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002188 pr_err("Unable to allocate struct vhost_scsi_tport");
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002189 return ERR_PTR(-ENOMEM);
2190 }
2191 tport->tport_wwpn = wwpn;
2192 /*
2193 * Determine the emulated Protocol Identifier and Target Port Name
2194 * based on the incoming configfs directory name.
2195 */
2196 ptr = strstr(name, "naa.");
2197 if (ptr) {
2198 tport->tport_proto_id = SCSI_PROTOCOL_SAS;
2199 goto check_len;
2200 }
2201 ptr = strstr(name, "fc.");
2202 if (ptr) {
2203 tport->tport_proto_id = SCSI_PROTOCOL_FCP;
2204 off = 3; /* Skip over "fc." */
2205 goto check_len;
2206 }
2207 ptr = strstr(name, "iqn.");
2208 if (ptr) {
2209 tport->tport_proto_id = SCSI_PROTOCOL_ISCSI;
2210 goto check_len;
2211 }
2212
2213 pr_err("Unable to locate prefix for emulated Target Port:"
2214 " %s\n", name);
2215 kfree(tport);
2216 return ERR_PTR(-EINVAL);
2217
2218check_len:
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002219 if (strlen(name) >= VHOST_SCSI_NAMELEN) {
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002220 pr_err("Emulated %s Address: %s, exceeds"
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002221 " max: %d\n", name, vhost_scsi_dump_proto_id(tport),
2222 VHOST_SCSI_NAMELEN);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002223 kfree(tport);
2224 return ERR_PTR(-EINVAL);
2225 }
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002226 snprintf(&tport->tport_name[0], VHOST_SCSI_NAMELEN, "%s", &name[off]);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002227
2228 pr_debug("TCM_VHost_ConfigFS: Allocated emulated Target"
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002229 " %s Address: %s\n", vhost_scsi_dump_proto_id(tport), name);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002230
2231 return &tport->tport_wwn;
2232}
2233
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002234static void vhost_scsi_drop_tport(struct se_wwn *wwn)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002235{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002236 struct vhost_scsi_tport *tport = container_of(wwn,
2237 struct vhost_scsi_tport, tport_wwn);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002238
2239 pr_debug("TCM_VHost_ConfigFS: Deallocating emulated Target"
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002240 " %s Address: %s\n", vhost_scsi_dump_proto_id(tport),
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002241 tport->tport_name);
2242
2243 kfree(tport);
2244}
2245
Asias He683bd962013-05-06 16:38:27 +08002246static ssize_t
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002247vhost_scsi_wwn_show_attr_version(struct target_fabric_configfs *tf,
Asias He683bd962013-05-06 16:38:27 +08002248 char *page)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002249{
2250 return sprintf(page, "TCM_VHOST fabric module %s on %s/%s"
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002251 "on "UTS_RELEASE"\n", VHOST_SCSI_VERSION, utsname()->sysname,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002252 utsname()->machine);
2253}
2254
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002255TF_WWN_ATTR_RO(vhost_scsi, version);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002256
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002257static struct configfs_attribute *vhost_scsi_wwn_attrs[] = {
2258 &vhost_scsi_wwn_version.attr,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002259 NULL,
2260};
2261
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002262static struct target_core_fabric_ops vhost_scsi_ops = {
2263 .get_fabric_name = vhost_scsi_get_fabric_name,
2264 .get_fabric_proto_ident = vhost_scsi_get_fabric_proto_ident,
2265 .tpg_get_wwn = vhost_scsi_get_fabric_wwn,
2266 .tpg_get_tag = vhost_scsi_get_tpgt,
2267 .tpg_get_default_depth = vhost_scsi_get_default_depth,
2268 .tpg_get_pr_transport_id = vhost_scsi_get_pr_transport_id,
2269 .tpg_get_pr_transport_id_len = vhost_scsi_get_pr_transport_id_len,
2270 .tpg_parse_pr_out_transport_id = vhost_scsi_parse_pr_out_transport_id,
2271 .tpg_check_demo_mode = vhost_scsi_check_true,
2272 .tpg_check_demo_mode_cache = vhost_scsi_check_true,
2273 .tpg_check_demo_mode_write_protect = vhost_scsi_check_false,
2274 .tpg_check_prod_mode_write_protect = vhost_scsi_check_false,
2275 .tpg_alloc_fabric_acl = vhost_scsi_alloc_fabric_acl,
2276 .tpg_release_fabric_acl = vhost_scsi_release_fabric_acl,
2277 .tpg_get_inst_index = vhost_scsi_tpg_get_inst_index,
2278 .release_cmd = vhost_scsi_release_cmd,
Nicholas Bellinger084ed452013-06-06 02:20:41 -07002279 .check_stop_free = vhost_scsi_check_stop_free,
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002280 .shutdown_session = vhost_scsi_shutdown_session,
2281 .close_session = vhost_scsi_close_session,
2282 .sess_get_index = vhost_scsi_sess_get_index,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002283 .sess_get_initiator_sid = NULL,
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002284 .write_pending = vhost_scsi_write_pending,
2285 .write_pending_status = vhost_scsi_write_pending_status,
2286 .set_default_node_attributes = vhost_scsi_set_default_node_attrs,
2287 .get_task_tag = vhost_scsi_get_task_tag,
2288 .get_cmd_state = vhost_scsi_get_cmd_state,
2289 .queue_data_in = vhost_scsi_queue_data_in,
2290 .queue_status = vhost_scsi_queue_status,
2291 .queue_tm_rsp = vhost_scsi_queue_tm_rsp,
2292 .aborted_task = vhost_scsi_aborted_task,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002293 /*
2294 * Setup callers for generic logic in target_core_fabric_configfs.c
2295 */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002296 .fabric_make_wwn = vhost_scsi_make_tport,
2297 .fabric_drop_wwn = vhost_scsi_drop_tport,
2298 .fabric_make_tpg = vhost_scsi_make_tpg,
2299 .fabric_drop_tpg = vhost_scsi_drop_tpg,
2300 .fabric_post_link = vhost_scsi_port_link,
2301 .fabric_pre_unlink = vhost_scsi_port_unlink,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002302 .fabric_make_np = NULL,
2303 .fabric_drop_np = NULL,
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002304 .fabric_make_nodeacl = vhost_scsi_make_nodeacl,
2305 .fabric_drop_nodeacl = vhost_scsi_drop_nodeacl,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002306};
2307
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002308static int vhost_scsi_register_configfs(void)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002309{
2310 struct target_fabric_configfs *fabric;
2311 int ret;
2312
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002313 pr_debug("vhost-scsi fabric module %s on %s/%s"
2314 " on "UTS_RELEASE"\n", VHOST_SCSI_VERSION, utsname()->sysname,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002315 utsname()->machine);
2316 /*
2317 * Register the top level struct config_item_type with TCM core
2318 */
2319 fabric = target_fabric_configfs_init(THIS_MODULE, "vhost");
2320 if (IS_ERR(fabric)) {
2321 pr_err("target_fabric_configfs_init() failed\n");
2322 return PTR_ERR(fabric);
2323 }
2324 /*
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002325 * Setup fabric->tf_ops from our local vhost_scsi_ops
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002326 */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002327 fabric->tf_ops = vhost_scsi_ops;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002328 /*
2329 * Setup default attribute lists for various fabric->tf_cit_tmpl
2330 */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002331 fabric->tf_cit_tmpl.tfc_wwn_cit.ct_attrs = vhost_scsi_wwn_attrs;
2332 fabric->tf_cit_tmpl.tfc_tpg_base_cit.ct_attrs = vhost_scsi_tpg_attrs;
Andy Groverd80e224d2013-10-09 11:05:56 -07002333 fabric->tf_cit_tmpl.tfc_tpg_attrib_cit.ct_attrs = NULL;
2334 fabric->tf_cit_tmpl.tfc_tpg_param_cit.ct_attrs = NULL;
2335 fabric->tf_cit_tmpl.tfc_tpg_np_base_cit.ct_attrs = NULL;
2336 fabric->tf_cit_tmpl.tfc_tpg_nacl_base_cit.ct_attrs = NULL;
2337 fabric->tf_cit_tmpl.tfc_tpg_nacl_attrib_cit.ct_attrs = NULL;
2338 fabric->tf_cit_tmpl.tfc_tpg_nacl_auth_cit.ct_attrs = NULL;
2339 fabric->tf_cit_tmpl.tfc_tpg_nacl_param_cit.ct_attrs = NULL;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002340 /*
2341 * Register the fabric for use within TCM
2342 */
2343 ret = target_fabric_configfs_register(fabric);
2344 if (ret < 0) {
2345 pr_err("target_fabric_configfs_register() failed"
2346 " for TCM_VHOST\n");
2347 return ret;
2348 }
2349 /*
2350 * Setup our local pointer to *fabric
2351 */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002352 vhost_scsi_fabric_configfs = fabric;
2353 pr_debug("TCM_VHOST[0] - Set fabric -> vhost_scsi_fabric_configfs\n");
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002354 return 0;
2355};
2356
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002357static void vhost_scsi_deregister_configfs(void)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002358{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002359 if (!vhost_scsi_fabric_configfs)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002360 return;
2361
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002362 target_fabric_configfs_deregister(vhost_scsi_fabric_configfs);
2363 vhost_scsi_fabric_configfs = NULL;
2364 pr_debug("TCM_VHOST[0] - Cleared vhost_scsi_fabric_configfs\n");
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002365};
2366
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002367static int __init vhost_scsi_init(void)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002368{
2369 int ret = -ENOMEM;
Nicholas Bellinger101998f2012-07-30 13:30:00 -07002370 /*
2371 * Use our own dedicated workqueue for submitting I/O into
2372 * target core to avoid contention within system_wq.
2373 */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002374 vhost_scsi_workqueue = alloc_workqueue("vhost_scsi", 0, 0);
2375 if (!vhost_scsi_workqueue)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002376 goto out;
2377
2378 ret = vhost_scsi_register();
2379 if (ret < 0)
2380 goto out_destroy_workqueue;
2381
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002382 ret = vhost_scsi_register_configfs();
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002383 if (ret < 0)
2384 goto out_vhost_scsi_deregister;
2385
2386 return 0;
2387
2388out_vhost_scsi_deregister:
2389 vhost_scsi_deregister();
2390out_destroy_workqueue:
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002391 destroy_workqueue(vhost_scsi_workqueue);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002392out:
2393 return ret;
2394};
2395
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002396static void vhost_scsi_exit(void)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002397{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002398 vhost_scsi_deregister_configfs();
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002399 vhost_scsi_deregister();
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002400 destroy_workqueue(vhost_scsi_workqueue);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002401};
2402
Michael S. Tsirkin181c04a2013-05-02 03:52:59 +03002403MODULE_DESCRIPTION("VHOST_SCSI series fabric driver");
2404MODULE_ALIAS("tcm_vhost");
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002405MODULE_LICENSE("GPL");
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002406module_init(vhost_scsi_init);
2407module_exit(vhost_scsi_exit);