blob: 08419756e98be5b47827b220599c2ae10ded3aec [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>
Bart Van Asscheba929992015-05-08 10:11:12 +020040#include <scsi/scsi_common.h>
41#include <scsi/scsi_proto.h>
Nicholas Bellinger057cbf42012-07-18 14:31:32 -070042#include <target/target_core_base.h>
43#include <target/target_core_fabric.h>
44#include <target/target_core_fabric_configfs.h>
45#include <target/target_core_configfs.h>
46#include <target/configfs_macros.h>
47#include <linux/vhost.h>
Nicholas Bellinger057cbf42012-07-18 14:31:32 -070048#include <linux/virtio_scsi.h>
Asias He9d6064a2013-01-06 14:36:13 +080049#include <linux/llist.h>
Asias He1b7f3902013-02-06 13:20:59 +080050#include <linux/bitmap.h>
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -070051#include <linux/percpu_ida.h>
Nicholas Bellinger057cbf42012-07-18 14:31:32 -070052
Nicholas Bellinger057cbf42012-07-18 14:31:32 -070053#include "vhost.h"
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +030054
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -080055#define VHOST_SCSI_VERSION "v0.1"
56#define VHOST_SCSI_NAMELEN 256
57#define VHOST_SCSI_MAX_CDB_SIZE 32
58#define VHOST_SCSI_DEFAULT_TAGS 256
59#define VHOST_SCSI_PREALLOC_SGLS 2048
60#define VHOST_SCSI_PREALLOC_UPAGES 2048
61#define VHOST_SCSI_PREALLOC_PROT_SGLS 512
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +030062
63struct vhost_scsi_inflight {
64 /* Wait for the flush operation to finish */
65 struct completion comp;
66 /* Refcount for the inflight reqs */
67 struct kref kref;
68};
69
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -080070struct vhost_scsi_cmd {
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +030071 /* Descriptor from vhost_get_vq_desc() for virt_queue segment */
72 int tvc_vq_desc;
73 /* virtio-scsi initiator task attribute */
74 int tvc_task_attr;
Nicholas Bellinger79c14142015-01-27 13:13:12 -080075 /* virtio-scsi response incoming iovecs */
76 int tvc_in_iovs;
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +030077 /* virtio-scsi initiator data direction */
78 enum dma_data_direction tvc_data_direction;
79 /* Expected data transfer length from virtio-scsi header */
80 u32 tvc_exp_data_len;
81 /* The Tag from include/linux/virtio_scsi.h:struct virtio_scsi_cmd_req */
82 u64 tvc_tag;
83 /* The number of scatterlists associated with this cmd */
84 u32 tvc_sgl_count;
Nicholas Bellingere31885d2014-02-22 18:34:43 -080085 u32 tvc_prot_sgl_count;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -080086 /* Saved unpacked SCSI LUN for vhost_scsi_submission_work() */
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +030087 u32 tvc_lun;
88 /* Pointer to the SGL formatted memory from virtio-scsi */
89 struct scatterlist *tvc_sgl;
Nicholas Bellingerb1935f62014-02-22 18:08:24 -080090 struct scatterlist *tvc_prot_sgl;
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -070091 struct page **tvc_upages;
Nicholas Bellinger79c14142015-01-27 13:13:12 -080092 /* Pointer to response header iovec */
93 struct iovec *tvc_resp_iov;
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +030094 /* Pointer to vhost_scsi for our device */
95 struct vhost_scsi *tvc_vhost;
96 /* Pointer to vhost_virtqueue for the cmd */
97 struct vhost_virtqueue *tvc_vq;
98 /* Pointer to vhost nexus memory */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -080099 struct vhost_scsi_nexus *tvc_nexus;
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300100 /* The TCM I/O descriptor that is accessed via container_of() */
101 struct se_cmd tvc_se_cmd;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800102 /* work item used for cmwq dispatch to vhost_scsi_submission_work() */
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300103 struct work_struct work;
104 /* Copy of the incoming SCSI command descriptor block (CDB) */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800105 unsigned char tvc_cdb[VHOST_SCSI_MAX_CDB_SIZE];
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300106 /* Sense buffer that will be mapped into outgoing status */
107 unsigned char tvc_sense_buf[TRANSPORT_SENSE_BUFFER];
108 /* Completed commands list, serviced from vhost worker thread */
109 struct llist_node tvc_completion_list;
110 /* Used to track inflight cmd */
111 struct vhost_scsi_inflight *inflight;
112};
113
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800114struct vhost_scsi_nexus {
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300115 /* Pointer to TCM session for I_T Nexus */
116 struct se_session *tvn_se_sess;
117};
118
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800119struct vhost_scsi_nacl {
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300120 /* Binary World Wide unique Port Name for Vhost Initiator port */
121 u64 iport_wwpn;
122 /* ASCII formatted WWPN for Sas Initiator port */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800123 char iport_name[VHOST_SCSI_NAMELEN];
124 /* Returned by vhost_scsi_make_nodeacl() */
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300125 struct se_node_acl se_node_acl;
126};
127
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800128struct vhost_scsi_tpg {
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300129 /* Vhost port target portal group tag for TCM */
130 u16 tport_tpgt;
131 /* Used to track number of TPG Port/Lun Links wrt to explict I_T Nexus shutdown */
132 int tv_tpg_port_count;
133 /* Used for vhost_scsi device reference to tpg_nexus, protected by tv_tpg_mutex */
134 int tv_tpg_vhost_count;
Nicholas Bellingerb1d75fe2015-03-28 00:03:51 -0700135 /* Used for enabling T10-PI with legacy devices */
136 int tv_fabric_prot_type;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800137 /* list for vhost_scsi_list */
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300138 struct list_head tv_tpg_list;
139 /* Used to protect access for tpg_nexus */
140 struct mutex tv_tpg_mutex;
141 /* Pointer to the TCM VHost I_T Nexus for this TPG endpoint */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800142 struct vhost_scsi_nexus *tpg_nexus;
143 /* Pointer back to vhost_scsi_tport */
144 struct vhost_scsi_tport *tport;
145 /* Returned by vhost_scsi_make_tpg() */
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300146 struct se_portal_group se_tpg;
147 /* Pointer back to vhost_scsi, protected by tv_tpg_mutex */
148 struct vhost_scsi *vhost_scsi;
149};
150
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800151struct vhost_scsi_tport {
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300152 /* SCSI protocol the tport is providing */
153 u8 tport_proto_id;
154 /* Binary World Wide unique Port Name for Vhost Target port */
155 u64 tport_wwpn;
156 /* ASCII formatted WWPN for Vhost Target port */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800157 char tport_name[VHOST_SCSI_NAMELEN];
158 /* Returned by vhost_scsi_make_tport() */
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300159 struct se_wwn tport_wwn;
160};
161
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800162struct vhost_scsi_evt {
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300163 /* event to be sent to guest */
164 struct virtio_scsi_event event;
165 /* event list, serviced from vhost worker thread */
166 struct llist_node list;
167};
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700168
Nicholas Bellinger101998f2012-07-30 13:30:00 -0700169enum {
170 VHOST_SCSI_VQ_CTL = 0,
171 VHOST_SCSI_VQ_EVT = 1,
172 VHOST_SCSI_VQ_IO = 2,
173};
174
Michael S. Tsirkine72fd722014-11-23 18:01:34 +0200175/* Note: can't set VIRTIO_F_VERSION_1 yet, since that implies ANY_LAYOUT. */
Nicholas Bellinger5dade712013-03-27 17:23:41 -0700176enum {
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800177 VHOST_SCSI_FEATURES = VHOST_FEATURES | (1ULL << VIRTIO_SCSI_F_HOTPLUG) |
Nicholas Bellinger664ed902015-01-28 01:31:52 -0800178 (1ULL << VIRTIO_SCSI_F_T10_PI) |
179 (1ULL << VIRTIO_F_ANY_LAYOUT) |
180 (1ULL << VIRTIO_F_VERSION_1)
Nicholas Bellinger5dade712013-03-27 17:23:41 -0700181};
182
Asias He1b7f3902013-02-06 13:20:59 +0800183#define VHOST_SCSI_MAX_TARGET 256
184#define VHOST_SCSI_MAX_VQ 128
Asias Hea6c9af82013-04-25 15:35:21 +0800185#define VHOST_SCSI_MAX_EVENT 128
Asias He67e18cf2013-02-05 12:31:57 +0800186
Asias He3ab2e422013-04-27 11:16:48 +0800187struct vhost_scsi_virtqueue {
188 struct vhost_virtqueue vq;
Michael S. Tsirkin3dfbff32013-04-28 15:38:52 +0300189 /*
190 * Reference counting for inflight reqs, used for flush operation. At
191 * each time, one reference tracks new commands submitted, while we
192 * wait for another one to reach 0.
193 */
Asias Hef2f0173d2013-04-27 11:16:49 +0800194 struct vhost_scsi_inflight inflights[2];
Michael S. Tsirkin3dfbff32013-04-28 15:38:52 +0300195 /*
196 * Indicate current inflight in use, protected by vq->mutex.
197 * Writers must also take dev mutex and flush under it.
198 */
Asias Hef2f0173d2013-04-27 11:16:49 +0800199 int inflight_idx;
Asias He3ab2e422013-04-27 11:16:48 +0800200};
201
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700202struct vhost_scsi {
Asias He67e18cf2013-02-05 12:31:57 +0800203 /* Protected by vhost_scsi->dev.mutex */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800204 struct vhost_scsi_tpg **vs_tpg;
Asias He67e18cf2013-02-05 12:31:57 +0800205 char vs_vhost_wwpn[TRANSPORT_IQN_LEN];
Asias He67e18cf2013-02-05 12:31:57 +0800206
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700207 struct vhost_dev dev;
Asias He3ab2e422013-04-27 11:16:48 +0800208 struct vhost_scsi_virtqueue vqs[VHOST_SCSI_MAX_VQ];
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700209
210 struct vhost_work vs_completion_work; /* cmd completion work item */
Asias He9d6064a2013-01-06 14:36:13 +0800211 struct llist_head vs_completion_list; /* cmd completion queue */
Asias Hea6c9af82013-04-25 15:35:21 +0800212
213 struct vhost_work vs_event_work; /* evt injection work item */
214 struct llist_head vs_event_list; /* evt injection queue */
215
216 bool vs_events_missed; /* any missed events, protected by vq->mutex */
217 int vs_events_nr; /* num of pending events, protected by vq->mutex */
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700218};
219
Christoph Hellwig9ac89282015-04-08 20:01:35 +0200220static struct target_core_fabric_ops vhost_scsi_ops;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800221static struct workqueue_struct *vhost_scsi_workqueue;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700222
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800223/* Global spinlock to protect vhost_scsi TPG list for vhost IOCTL access */
224static DEFINE_MUTEX(vhost_scsi_mutex);
225static LIST_HEAD(vhost_scsi_list);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700226
Nicholas Bellingerb4078b52015-01-28 13:10:51 -0800227static int iov_num_pages(void __user *iov_base, size_t iov_len)
Asias He765b34f2013-01-22 11:20:25 +0800228{
Nicholas Bellingerb4078b52015-01-28 13:10:51 -0800229 return (PAGE_ALIGN((unsigned long)iov_base + iov_len) -
230 ((unsigned long)iov_base & PAGE_MASK)) >> PAGE_SHIFT;
Asias He765b34f2013-01-22 11:20:25 +0800231}
232
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800233static void vhost_scsi_done_inflight(struct kref *kref)
Asias Hef2f0173d2013-04-27 11:16:49 +0800234{
235 struct vhost_scsi_inflight *inflight;
236
237 inflight = container_of(kref, struct vhost_scsi_inflight, kref);
238 complete(&inflight->comp);
239}
240
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800241static void vhost_scsi_init_inflight(struct vhost_scsi *vs,
Asias Hef2f0173d2013-04-27 11:16:49 +0800242 struct vhost_scsi_inflight *old_inflight[])
243{
244 struct vhost_scsi_inflight *new_inflight;
245 struct vhost_virtqueue *vq;
246 int idx, i;
247
248 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++) {
249 vq = &vs->vqs[i].vq;
250
251 mutex_lock(&vq->mutex);
252
253 /* store old infight */
254 idx = vs->vqs[i].inflight_idx;
255 if (old_inflight)
256 old_inflight[i] = &vs->vqs[i].inflights[idx];
257
258 /* setup new infight */
259 vs->vqs[i].inflight_idx = idx ^ 1;
260 new_inflight = &vs->vqs[i].inflights[idx ^ 1];
261 kref_init(&new_inflight->kref);
262 init_completion(&new_inflight->comp);
263
264 mutex_unlock(&vq->mutex);
265 }
266}
267
268static struct vhost_scsi_inflight *
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800269vhost_scsi_get_inflight(struct vhost_virtqueue *vq)
Asias Hef2f0173d2013-04-27 11:16:49 +0800270{
271 struct vhost_scsi_inflight *inflight;
272 struct vhost_scsi_virtqueue *svq;
273
274 svq = container_of(vq, struct vhost_scsi_virtqueue, vq);
275 inflight = &svq->inflights[svq->inflight_idx];
276 kref_get(&inflight->kref);
277
278 return inflight;
279}
280
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800281static void vhost_scsi_put_inflight(struct vhost_scsi_inflight *inflight)
Asias Hef2f0173d2013-04-27 11:16:49 +0800282{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800283 kref_put(&inflight->kref, vhost_scsi_done_inflight);
Asias Hef2f0173d2013-04-27 11:16:49 +0800284}
285
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800286static int vhost_scsi_check_true(struct se_portal_group *se_tpg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700287{
288 return 1;
289}
290
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800291static int vhost_scsi_check_false(struct se_portal_group *se_tpg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700292{
293 return 0;
294}
295
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800296static char *vhost_scsi_get_fabric_name(void)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700297{
298 return "vhost";
299}
300
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800301static u8 vhost_scsi_get_fabric_proto_ident(struct se_portal_group *se_tpg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700302{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800303 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
304 struct vhost_scsi_tpg, se_tpg);
305 struct vhost_scsi_tport *tport = tpg->tport;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700306
307 switch (tport->tport_proto_id) {
308 case SCSI_PROTOCOL_SAS:
309 return sas_get_fabric_proto_ident(se_tpg);
310 case SCSI_PROTOCOL_FCP:
311 return fc_get_fabric_proto_ident(se_tpg);
312 case SCSI_PROTOCOL_ISCSI:
313 return iscsi_get_fabric_proto_ident(se_tpg);
314 default:
315 pr_err("Unknown tport_proto_id: 0x%02x, using"
316 " SAS emulation\n", tport->tport_proto_id);
317 break;
318 }
319
320 return sas_get_fabric_proto_ident(se_tpg);
321}
322
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800323static char *vhost_scsi_get_fabric_wwn(struct se_portal_group *se_tpg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700324{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800325 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
326 struct vhost_scsi_tpg, se_tpg);
327 struct vhost_scsi_tport *tport = tpg->tport;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700328
329 return &tport->tport_name[0];
330}
331
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800332static u16 vhost_scsi_get_tpgt(struct se_portal_group *se_tpg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700333{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800334 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
335 struct vhost_scsi_tpg, se_tpg);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700336 return tpg->tport_tpgt;
337}
338
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800339static u32 vhost_scsi_get_default_depth(struct se_portal_group *se_tpg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700340{
341 return 1;
342}
343
Asias He683bd962013-05-06 16:38:27 +0800344static u32
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800345vhost_scsi_get_pr_transport_id(struct se_portal_group *se_tpg,
Asias He683bd962013-05-06 16:38:27 +0800346 struct se_node_acl *se_nacl,
347 struct t10_pr_registration *pr_reg,
348 int *format_code,
349 unsigned char *buf)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700350{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800351 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
352 struct vhost_scsi_tpg, se_tpg);
353 struct vhost_scsi_tport *tport = tpg->tport;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700354
355 switch (tport->tport_proto_id) {
356 case SCSI_PROTOCOL_SAS:
357 return sas_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
358 format_code, buf);
359 case SCSI_PROTOCOL_FCP:
360 return fc_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
361 format_code, buf);
362 case SCSI_PROTOCOL_ISCSI:
363 return iscsi_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
364 format_code, buf);
365 default:
366 pr_err("Unknown tport_proto_id: 0x%02x, using"
367 " SAS emulation\n", tport->tport_proto_id);
368 break;
369 }
370
371 return sas_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
372 format_code, buf);
373}
374
Asias He683bd962013-05-06 16:38:27 +0800375static u32
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800376vhost_scsi_get_pr_transport_id_len(struct se_portal_group *se_tpg,
Asias He683bd962013-05-06 16:38:27 +0800377 struct se_node_acl *se_nacl,
378 struct t10_pr_registration *pr_reg,
379 int *format_code)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700380{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800381 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
382 struct vhost_scsi_tpg, se_tpg);
383 struct vhost_scsi_tport *tport = tpg->tport;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700384
385 switch (tport->tport_proto_id) {
386 case SCSI_PROTOCOL_SAS:
387 return sas_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
388 format_code);
389 case SCSI_PROTOCOL_FCP:
390 return fc_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
391 format_code);
392 case SCSI_PROTOCOL_ISCSI:
393 return iscsi_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
394 format_code);
395 default:
396 pr_err("Unknown tport_proto_id: 0x%02x, using"
397 " SAS emulation\n", tport->tport_proto_id);
398 break;
399 }
400
401 return sas_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
402 format_code);
403}
404
Asias He683bd962013-05-06 16:38:27 +0800405static char *
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800406vhost_scsi_parse_pr_out_transport_id(struct se_portal_group *se_tpg,
Asias He683bd962013-05-06 16:38:27 +0800407 const char *buf,
408 u32 *out_tid_len,
409 char **port_nexus_ptr)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700410{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800411 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
412 struct vhost_scsi_tpg, se_tpg);
413 struct vhost_scsi_tport *tport = tpg->tport;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700414
415 switch (tport->tport_proto_id) {
416 case SCSI_PROTOCOL_SAS:
417 return sas_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
418 port_nexus_ptr);
419 case SCSI_PROTOCOL_FCP:
420 return fc_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
421 port_nexus_ptr);
422 case SCSI_PROTOCOL_ISCSI:
423 return iscsi_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
424 port_nexus_ptr);
425 default:
426 pr_err("Unknown tport_proto_id: 0x%02x, using"
427 " SAS emulation\n", tport->tport_proto_id);
428 break;
429 }
430
431 return sas_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
432 port_nexus_ptr);
433}
434
Nicholas Bellingerb1d75fe2015-03-28 00:03:51 -0700435static int vhost_scsi_check_prot_fabric_only(struct se_portal_group *se_tpg)
436{
437 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
438 struct vhost_scsi_tpg, se_tpg);
439
440 return tpg->tv_fabric_prot_type;
441}
442
Asias He683bd962013-05-06 16:38:27 +0800443static struct se_node_acl *
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800444vhost_scsi_alloc_fabric_acl(struct se_portal_group *se_tpg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700445{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800446 struct vhost_scsi_nacl *nacl;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700447
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800448 nacl = kzalloc(sizeof(struct vhost_scsi_nacl), GFP_KERNEL);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700449 if (!nacl) {
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800450 pr_err("Unable to allocate struct vhost_scsi_nacl\n");
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700451 return NULL;
452 }
453
454 return &nacl->se_node_acl;
455}
456
Asias He683bd962013-05-06 16:38:27 +0800457static void
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800458vhost_scsi_release_fabric_acl(struct se_portal_group *se_tpg,
Asias He683bd962013-05-06 16:38:27 +0800459 struct se_node_acl *se_nacl)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700460{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800461 struct vhost_scsi_nacl *nacl = container_of(se_nacl,
462 struct vhost_scsi_nacl, se_node_acl);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700463 kfree(nacl);
464}
465
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800466static u32 vhost_scsi_tpg_get_inst_index(struct se_portal_group *se_tpg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700467{
468 return 1;
469}
470
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800471static void vhost_scsi_release_cmd(struct se_cmd *se_cmd)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700472{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800473 struct vhost_scsi_cmd *tv_cmd = container_of(se_cmd,
474 struct vhost_scsi_cmd, tvc_se_cmd);
Nicholas Bellingerde1419e2015-01-29 17:21:13 -0800475 struct se_session *se_sess = tv_cmd->tvc_nexus->tvn_se_sess;
Nicholas Bellingere31885d2014-02-22 18:34:43 -0800476 int i;
Nicholas Bellinger084ed452013-06-06 02:20:41 -0700477
478 if (tv_cmd->tvc_sgl_count) {
Nicholas Bellinger084ed452013-06-06 02:20:41 -0700479 for (i = 0; i < tv_cmd->tvc_sgl_count; i++)
480 put_page(sg_page(&tv_cmd->tvc_sgl[i]));
Michael S. Tsirkind3d665a2013-09-17 22:54:31 +0300481 }
Nicholas Bellingere31885d2014-02-22 18:34:43 -0800482 if (tv_cmd->tvc_prot_sgl_count) {
483 for (i = 0; i < tv_cmd->tvc_prot_sgl_count; i++)
484 put_page(sg_page(&tv_cmd->tvc_prot_sgl[i]));
485 }
Nicholas Bellinger084ed452013-06-06 02:20:41 -0700486
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800487 vhost_scsi_put_inflight(tv_cmd->inflight);
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -0700488 percpu_ida_free(&se_sess->sess_tag_pool, se_cmd->map_tag);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700489}
490
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800491static int vhost_scsi_shutdown_session(struct se_session *se_sess)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700492{
493 return 0;
494}
495
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800496static void vhost_scsi_close_session(struct se_session *se_sess)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700497{
498 return;
499}
500
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800501static u32 vhost_scsi_sess_get_index(struct se_session *se_sess)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700502{
503 return 0;
504}
505
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800506static int vhost_scsi_write_pending(struct se_cmd *se_cmd)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700507{
508 /* Go ahead and process the write immediately */
509 target_execute_cmd(se_cmd);
510 return 0;
511}
512
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800513static int vhost_scsi_write_pending_status(struct se_cmd *se_cmd)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700514{
515 return 0;
516}
517
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800518static void vhost_scsi_set_default_node_attrs(struct se_node_acl *nacl)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700519{
520 return;
521}
522
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800523static u32 vhost_scsi_get_task_tag(struct se_cmd *se_cmd)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700524{
525 return 0;
526}
527
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800528static int vhost_scsi_get_cmd_state(struct se_cmd *se_cmd)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700529{
530 return 0;
531}
532
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800533static void vhost_scsi_complete_cmd(struct vhost_scsi_cmd *cmd)
Nicholas Bellinger101998f2012-07-30 13:30:00 -0700534{
Asias He3c63f662013-05-06 16:38:29 +0800535 struct vhost_scsi *vs = cmd->tvc_vhost;
Nicholas Bellinger101998f2012-07-30 13:30:00 -0700536
Asias He3c63f662013-05-06 16:38:29 +0800537 llist_add(&cmd->tvc_completion_list, &vs->vs_completion_list);
Nicholas Bellinger101998f2012-07-30 13:30:00 -0700538
539 vhost_work_queue(&vs->dev, &vs->vs_completion_work);
540}
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700541
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800542static int vhost_scsi_queue_data_in(struct se_cmd *se_cmd)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700543{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800544 struct vhost_scsi_cmd *cmd = container_of(se_cmd,
545 struct vhost_scsi_cmd, tvc_se_cmd);
Asias He3c63f662013-05-06 16:38:29 +0800546 vhost_scsi_complete_cmd(cmd);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700547 return 0;
548}
549
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800550static int vhost_scsi_queue_status(struct se_cmd *se_cmd)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700551{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800552 struct vhost_scsi_cmd *cmd = container_of(se_cmd,
553 struct vhost_scsi_cmd, tvc_se_cmd);
Asias He3c63f662013-05-06 16:38:29 +0800554 vhost_scsi_complete_cmd(cmd);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700555 return 0;
556}
557
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800558static void vhost_scsi_queue_tm_rsp(struct se_cmd *se_cmd)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700559{
Joern Engelb79fafa2013-07-03 11:22:17 -0400560 return;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700561}
562
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800563static void vhost_scsi_aborted_task(struct se_cmd *se_cmd)
Nicholas Bellinger131e6ab2014-03-22 14:55:56 -0700564{
565 return;
566}
567
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800568static void vhost_scsi_free_evt(struct vhost_scsi *vs, struct vhost_scsi_evt *evt)
Asias Hea6c9af82013-04-25 15:35:21 +0800569{
570 vs->vs_events_nr--;
571 kfree(evt);
572}
573
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800574static struct vhost_scsi_evt *
575vhost_scsi_allocate_evt(struct vhost_scsi *vs,
Asias He683bd962013-05-06 16:38:27 +0800576 u32 event, u32 reason)
Asias Hea6c9af82013-04-25 15:35:21 +0800577{
Asias He3ab2e422013-04-27 11:16:48 +0800578 struct vhost_virtqueue *vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800579 struct vhost_scsi_evt *evt;
Asias Hea6c9af82013-04-25 15:35:21 +0800580
581 if (vs->vs_events_nr > VHOST_SCSI_MAX_EVENT) {
582 vs->vs_events_missed = true;
583 return NULL;
584 }
585
586 evt = kzalloc(sizeof(*evt), GFP_KERNEL);
587 if (!evt) {
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800588 vq_err(vq, "Failed to allocate vhost_scsi_evt\n");
Asias Hea6c9af82013-04-25 15:35:21 +0800589 vs->vs_events_missed = true;
590 return NULL;
591 }
592
Michael S. Tsirkine72fd722014-11-23 18:01:34 +0200593 evt->event.event = cpu_to_vhost32(vq, event);
594 evt->event.reason = cpu_to_vhost32(vq, reason);
Asias Hea6c9af82013-04-25 15:35:21 +0800595 vs->vs_events_nr++;
596
597 return evt;
598}
599
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800600static void vhost_scsi_free_cmd(struct vhost_scsi_cmd *cmd)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700601{
Asias He3c63f662013-05-06 16:38:29 +0800602 struct se_cmd *se_cmd = &cmd->tvc_se_cmd;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700603
604 /* TODO locking against target/backend threads? */
Nicholas Bellinger6c131d02013-06-06 01:44:48 -0700605 transport_generic_free_cmd(se_cmd, 0);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700606
Nicholas Bellinger084ed452013-06-06 02:20:41 -0700607}
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700608
Nicholas Bellinger084ed452013-06-06 02:20:41 -0700609static int vhost_scsi_check_stop_free(struct se_cmd *se_cmd)
610{
611 return target_put_sess_cmd(se_cmd->se_sess, se_cmd);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700612}
613
Asias He683bd962013-05-06 16:38:27 +0800614static void
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800615vhost_scsi_do_evt_work(struct vhost_scsi *vs, struct vhost_scsi_evt *evt)
Asias Hea6c9af82013-04-25 15:35:21 +0800616{
Asias He3ab2e422013-04-27 11:16:48 +0800617 struct vhost_virtqueue *vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
Asias Hea6c9af82013-04-25 15:35:21 +0800618 struct virtio_scsi_event *event = &evt->event;
619 struct virtio_scsi_event __user *eventp;
620 unsigned out, in;
621 int head, ret;
622
623 if (!vq->private_data) {
624 vs->vs_events_missed = true;
625 return;
626 }
627
628again:
629 vhost_disable_notify(&vs->dev, vq);
Michael S. Tsirkin47283be2014-06-05 15:20:27 +0300630 head = vhost_get_vq_desc(vq, vq->iov,
Asias Hea6c9af82013-04-25 15:35:21 +0800631 ARRAY_SIZE(vq->iov), &out, &in,
632 NULL, NULL);
633 if (head < 0) {
634 vs->vs_events_missed = true;
635 return;
636 }
637 if (head == vq->num) {
638 if (vhost_enable_notify(&vs->dev, vq))
639 goto again;
640 vs->vs_events_missed = true;
641 return;
642 }
643
644 if ((vq->iov[out].iov_len != sizeof(struct virtio_scsi_event))) {
645 vq_err(vq, "Expecting virtio_scsi_event, got %zu bytes\n",
646 vq->iov[out].iov_len);
647 vs->vs_events_missed = true;
648 return;
649 }
650
651 if (vs->vs_events_missed) {
Michael S. Tsirkine72fd722014-11-23 18:01:34 +0200652 event->event |= cpu_to_vhost32(vq, VIRTIO_SCSI_T_EVENTS_MISSED);
Asias Hea6c9af82013-04-25 15:35:21 +0800653 vs->vs_events_missed = false;
654 }
655
656 eventp = vq->iov[out].iov_base;
657 ret = __copy_to_user(eventp, event, sizeof(*event));
658 if (!ret)
659 vhost_add_used_and_signal(&vs->dev, vq, head, 0);
660 else
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800661 vq_err(vq, "Faulted on vhost_scsi_send_event\n");
Asias Hea6c9af82013-04-25 15:35:21 +0800662}
663
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800664static void vhost_scsi_evt_work(struct vhost_work *work)
Asias Hea6c9af82013-04-25 15:35:21 +0800665{
666 struct vhost_scsi *vs = container_of(work, struct vhost_scsi,
667 vs_event_work);
Asias He3ab2e422013-04-27 11:16:48 +0800668 struct vhost_virtqueue *vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800669 struct vhost_scsi_evt *evt;
Asias Hea6c9af82013-04-25 15:35:21 +0800670 struct llist_node *llnode;
671
672 mutex_lock(&vq->mutex);
673 llnode = llist_del_all(&vs->vs_event_list);
674 while (llnode) {
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800675 evt = llist_entry(llnode, struct vhost_scsi_evt, list);
Asias Hea6c9af82013-04-25 15:35:21 +0800676 llnode = llist_next(llnode);
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800677 vhost_scsi_do_evt_work(vs, evt);
678 vhost_scsi_free_evt(vs, evt);
Asias Hea6c9af82013-04-25 15:35:21 +0800679 }
680 mutex_unlock(&vq->mutex);
681}
682
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700683/* Fill in status and signal that we are done processing this command
684 *
685 * This is scheduled in the vhost work queue so we are called with the owner
686 * process mm and can access the vring.
687 */
688static void vhost_scsi_complete_cmd_work(struct vhost_work *work)
689{
690 struct vhost_scsi *vs = container_of(work, struct vhost_scsi,
691 vs_completion_work);
Asias He1b7f3902013-02-06 13:20:59 +0800692 DECLARE_BITMAP(signal, VHOST_SCSI_MAX_VQ);
Asias He9d6064a2013-01-06 14:36:13 +0800693 struct virtio_scsi_cmd_resp v_rsp;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800694 struct vhost_scsi_cmd *cmd;
Asias He9d6064a2013-01-06 14:36:13 +0800695 struct llist_node *llnode;
696 struct se_cmd *se_cmd;
Nicholas Bellinger79c14142015-01-27 13:13:12 -0800697 struct iov_iter iov_iter;
Asias He1b7f3902013-02-06 13:20:59 +0800698 int ret, vq;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700699
Asias He1b7f3902013-02-06 13:20:59 +0800700 bitmap_zero(signal, VHOST_SCSI_MAX_VQ);
Asias He9d6064a2013-01-06 14:36:13 +0800701 llnode = llist_del_all(&vs->vs_completion_list);
702 while (llnode) {
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800703 cmd = llist_entry(llnode, struct vhost_scsi_cmd,
Asias He9d6064a2013-01-06 14:36:13 +0800704 tvc_completion_list);
705 llnode = llist_next(llnode);
Asias He3c63f662013-05-06 16:38:29 +0800706 se_cmd = &cmd->tvc_se_cmd;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700707
708 pr_debug("%s tv_cmd %p resid %u status %#02x\n", __func__,
Asias He3c63f662013-05-06 16:38:29 +0800709 cmd, se_cmd->residual_count, se_cmd->scsi_status);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700710
711 memset(&v_rsp, 0, sizeof(v_rsp));
Michael S. Tsirkine72fd722014-11-23 18:01:34 +0200712 v_rsp.resid = cpu_to_vhost32(cmd->tvc_vq, se_cmd->residual_count);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700713 /* TODO is status_qualifier field needed? */
714 v_rsp.status = se_cmd->scsi_status;
Michael S. Tsirkine72fd722014-11-23 18:01:34 +0200715 v_rsp.sense_len = cpu_to_vhost32(cmd->tvc_vq,
716 se_cmd->scsi_sense_length);
Asias He3c63f662013-05-06 16:38:29 +0800717 memcpy(v_rsp.sense, cmd->tvc_sense_buf,
Michael S. Tsirkine72fd722014-11-23 18:01:34 +0200718 se_cmd->scsi_sense_length);
Nicholas Bellinger79c14142015-01-27 13:13:12 -0800719
720 iov_iter_init(&iov_iter, READ, cmd->tvc_resp_iov,
721 cmd->tvc_in_iovs, sizeof(v_rsp));
722 ret = copy_to_iter(&v_rsp, sizeof(v_rsp), &iov_iter);
723 if (likely(ret == sizeof(v_rsp))) {
Asias He3ab2e422013-04-27 11:16:48 +0800724 struct vhost_scsi_virtqueue *q;
Asias He3c63f662013-05-06 16:38:29 +0800725 vhost_add_used(cmd->tvc_vq, cmd->tvc_vq_desc, 0);
726 q = container_of(cmd->tvc_vq, struct vhost_scsi_virtqueue, vq);
Asias He3ab2e422013-04-27 11:16:48 +0800727 vq = q - vs->vqs;
Asias He1b7f3902013-02-06 13:20:59 +0800728 __set_bit(vq, signal);
729 } else
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700730 pr_err("Faulted on virtio_scsi_cmd_resp\n");
731
Asias He3c63f662013-05-06 16:38:29 +0800732 vhost_scsi_free_cmd(cmd);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700733 }
734
Asias He1b7f3902013-02-06 13:20:59 +0800735 vq = -1;
736 while ((vq = find_next_bit(signal, VHOST_SCSI_MAX_VQ, vq + 1))
737 < VHOST_SCSI_MAX_VQ)
Asias He3ab2e422013-04-27 11:16:48 +0800738 vhost_signal(&vs->dev, &vs->vqs[vq].vq);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700739}
740
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800741static struct vhost_scsi_cmd *
742vhost_scsi_get_tag(struct vhost_virtqueue *vq, struct vhost_scsi_tpg *tpg,
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800743 unsigned char *cdb, u64 scsi_tag, u16 lun, u8 task_attr,
744 u32 exp_data_len, int data_direction)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700745{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800746 struct vhost_scsi_cmd *cmd;
747 struct vhost_scsi_nexus *tv_nexus;
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -0700748 struct se_session *se_sess;
Nicholas Bellingerb1935f62014-02-22 18:08:24 -0800749 struct scatterlist *sg, *prot_sg;
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -0700750 struct page **pages;
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -0700751 int tag;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700752
Asias He98718312013-05-06 16:38:28 +0800753 tv_nexus = tpg->tpg_nexus;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700754 if (!tv_nexus) {
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800755 pr_err("Unable to locate active struct vhost_scsi_nexus\n");
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700756 return ERR_PTR(-EIO);
757 }
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -0700758 se_sess = tv_nexus->tvn_se_sess;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700759
Kent Overstreet6f6b5d12014-01-19 08:26:37 +0000760 tag = percpu_ida_alloc(&se_sess->sess_tag_pool, TASK_RUNNING);
Nicholas Bellinger4a47d3a2013-09-23 11:42:28 -0700761 if (tag < 0) {
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800762 pr_err("Unable to obtain tag for vhost_scsi_cmd\n");
Nicholas Bellinger4a47d3a2013-09-23 11:42:28 -0700763 return ERR_PTR(-ENOMEM);
764 }
765
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800766 cmd = &((struct vhost_scsi_cmd *)se_sess->sess_cmd_map)[tag];
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -0700767 sg = cmd->tvc_sgl;
Nicholas Bellingerb1935f62014-02-22 18:08:24 -0800768 prot_sg = cmd->tvc_prot_sgl;
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -0700769 pages = cmd->tvc_upages;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800770 memset(cmd, 0, sizeof(struct vhost_scsi_cmd));
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -0700771
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -0700772 cmd->tvc_sgl = sg;
Nicholas Bellingerb1935f62014-02-22 18:08:24 -0800773 cmd->tvc_prot_sgl = prot_sg;
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -0700774 cmd->tvc_upages = pages;
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -0700775 cmd->tvc_se_cmd.map_tag = tag;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800776 cmd->tvc_tag = scsi_tag;
777 cmd->tvc_lun = lun;
778 cmd->tvc_task_attr = task_attr;
Asias He3c63f662013-05-06 16:38:29 +0800779 cmd->tvc_exp_data_len = exp_data_len;
780 cmd->tvc_data_direction = data_direction;
781 cmd->tvc_nexus = tv_nexus;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800782 cmd->inflight = vhost_scsi_get_inflight(vq);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700783
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800784 memcpy(cmd->tvc_cdb, cdb, VHOST_SCSI_MAX_CDB_SIZE);
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800785
Asias He3c63f662013-05-06 16:38:29 +0800786 return cmd;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700787}
788
789/*
790 * Map a user memory range into a scatterlist
791 *
792 * Returns the number of scatterlist entries used or -errno on error.
793 */
Asias He683bd962013-05-06 16:38:27 +0800794static int
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800795vhost_scsi_map_to_sgl(struct vhost_scsi_cmd *cmd,
Nicholas Bellingerb4078b52015-01-28 13:10:51 -0800796 void __user *ptr,
797 size_t len,
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -0700798 struct scatterlist *sgl,
Nicholas Bellinger5a01d082014-02-22 18:34:08 -0800799 bool write)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700800{
Nicholas Bellingerb4078b52015-01-28 13:10:51 -0800801 unsigned int npages = 0, offset, nbytes;
802 unsigned int pages_nr = iov_num_pages(ptr, len);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700803 struct scatterlist *sg = sgl;
Nicholas Bellingerb4078b52015-01-28 13:10:51 -0800804 struct page **pages = cmd->tvc_upages;
Asias He18100532013-01-22 11:20:27 +0800805 int ret, i;
806
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800807 if (pages_nr > VHOST_SCSI_PREALLOC_UPAGES) {
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -0700808 pr_err("vhost_scsi_map_to_sgl() pages_nr: %u greater than"
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800809 " preallocated VHOST_SCSI_PREALLOC_UPAGES: %u\n",
810 pages_nr, VHOST_SCSI_PREALLOC_UPAGES);
Nicholas Bellinger5a01d082014-02-22 18:34:08 -0800811 return -ENOBUFS;
812 }
Asias He18100532013-01-22 11:20:27 +0800813
814 ret = get_user_pages_fast((unsigned long)ptr, pages_nr, write, pages);
815 /* No pages were pinned */
816 if (ret < 0)
817 goto out;
818 /* Less pages pinned than wanted */
819 if (ret != pages_nr) {
820 for (i = 0; i < ret; i++)
821 put_page(pages[i]);
822 ret = -EFAULT;
823 goto out;
824 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700825
826 while (len > 0) {
Asias He18100532013-01-22 11:20:27 +0800827 offset = (uintptr_t)ptr & ~PAGE_MASK;
828 nbytes = min_t(unsigned int, PAGE_SIZE - offset, len);
829 sg_set_page(sg, pages[npages], nbytes, offset);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700830 ptr += nbytes;
831 len -= nbytes;
832 sg++;
833 npages++;
834 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700835
Asias He18100532013-01-22 11:20:27 +0800836out:
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700837 return ret;
838}
839
Asias He683bd962013-05-06 16:38:27 +0800840static int
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800841vhost_scsi_calc_sgls(struct iov_iter *iter, size_t bytes, int max_sgls)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700842{
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800843 int sgl_count = 0;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700844
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800845 if (!iter || !iter->iov) {
846 pr_err("%s: iter->iov is NULL, but expected bytes: %zu"
847 " present\n", __func__, bytes);
848 return -EINVAL;
Nicholas Bellinger5a01d082014-02-22 18:34:08 -0800849 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700850
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800851 sgl_count = iov_iter_npages(iter, 0xffff);
852 if (sgl_count > max_sgls) {
853 pr_err("%s: requested sgl_count: %d exceeds pre-allocated"
854 " max_sgls: %d\n", __func__, sgl_count, max_sgls);
855 return -EINVAL;
856 }
857 return sgl_count;
858}
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700859
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800860static int
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800861vhost_scsi_iov_to_sgl(struct vhost_scsi_cmd *cmd, bool write,
862 struct iov_iter *iter,
863 struct scatterlist *sg, int sg_count)
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800864{
865 size_t off = iter->iov_offset;
866 int i, ret;
Nicholas Bellinger5a01d082014-02-22 18:34:08 -0800867
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800868 for (i = 0; i < iter->nr_segs; i++) {
869 void __user *base = iter->iov[i].iov_base + off;
870 size_t len = iter->iov[i].iov_len - off;
871
872 ret = vhost_scsi_map_to_sgl(cmd, base, len, sg, write);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700873 if (ret < 0) {
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800874 for (i = 0; i < sg_count; i++) {
875 struct page *page = sg_page(&sg[i]);
876 if (page)
877 put_page(page);
878 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700879 return ret;
880 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700881 sg += ret;
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800882 off = 0;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700883 }
884 return 0;
885}
886
Nicholas Bellingere31885d2014-02-22 18:34:43 -0800887static int
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800888vhost_scsi_mapal(struct vhost_scsi_cmd *cmd,
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800889 size_t prot_bytes, struct iov_iter *prot_iter,
890 size_t data_bytes, struct iov_iter *data_iter)
Nicholas Bellingere31885d2014-02-22 18:34:43 -0800891{
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800892 int sgl_count, ret;
893 bool write = (cmd->tvc_data_direction == DMA_FROM_DEVICE);
Nicholas Bellingere31885d2014-02-22 18:34:43 -0800894
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800895 if (prot_bytes) {
896 sgl_count = vhost_scsi_calc_sgls(prot_iter, prot_bytes,
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800897 VHOST_SCSI_PREALLOC_PROT_SGLS);
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800898 if (sgl_count < 0)
899 return sgl_count;
Nicholas Bellingere31885d2014-02-22 18:34:43 -0800900
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800901 sg_init_table(cmd->tvc_prot_sgl, sgl_count);
902 cmd->tvc_prot_sgl_count = sgl_count;
903 pr_debug("%s prot_sg %p prot_sgl_count %u\n", __func__,
904 cmd->tvc_prot_sgl, cmd->tvc_prot_sgl_count);
Nicholas Bellingere31885d2014-02-22 18:34:43 -0800905
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800906 ret = vhost_scsi_iov_to_sgl(cmd, write, prot_iter,
907 cmd->tvc_prot_sgl,
908 cmd->tvc_prot_sgl_count);
Nicholas Bellingere31885d2014-02-22 18:34:43 -0800909 if (ret < 0) {
Nicholas Bellingere31885d2014-02-22 18:34:43 -0800910 cmd->tvc_prot_sgl_count = 0;
911 return ret;
912 }
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800913 }
914 sgl_count = vhost_scsi_calc_sgls(data_iter, data_bytes,
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800915 VHOST_SCSI_PREALLOC_SGLS);
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800916 if (sgl_count < 0)
917 return sgl_count;
918
919 sg_init_table(cmd->tvc_sgl, sgl_count);
920 cmd->tvc_sgl_count = sgl_count;
921 pr_debug("%s data_sg %p data_sgl_count %u\n", __func__,
922 cmd->tvc_sgl, cmd->tvc_sgl_count);
923
924 ret = vhost_scsi_iov_to_sgl(cmd, write, data_iter,
925 cmd->tvc_sgl, cmd->tvc_sgl_count);
926 if (ret < 0) {
927 cmd->tvc_sgl_count = 0;
928 return ret;
Nicholas Bellingere31885d2014-02-22 18:34:43 -0800929 }
930 return 0;
931}
932
Nicholas Bellinger46243862014-12-21 10:42:08 -0800933static int vhost_scsi_to_tcm_attr(int attr)
934{
935 switch (attr) {
936 case VIRTIO_SCSI_S_SIMPLE:
937 return TCM_SIMPLE_TAG;
938 case VIRTIO_SCSI_S_ORDERED:
939 return TCM_ORDERED_TAG;
940 case VIRTIO_SCSI_S_HEAD:
941 return TCM_HEAD_TAG;
942 case VIRTIO_SCSI_S_ACA:
943 return TCM_ACA_TAG;
944 default:
945 break;
946 }
947 return TCM_SIMPLE_TAG;
948}
949
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800950static void vhost_scsi_submission_work(struct work_struct *work)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700951{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800952 struct vhost_scsi_cmd *cmd =
953 container_of(work, struct vhost_scsi_cmd, work);
954 struct vhost_scsi_nexus *tv_nexus;
Asias He3c63f662013-05-06 16:38:29 +0800955 struct se_cmd *se_cmd = &cmd->tvc_se_cmd;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800956 struct scatterlist *sg_ptr, *sg_prot_ptr = NULL;
957 int rc;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700958
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800959 /* FIXME: BIDI operation */
Asias He3c63f662013-05-06 16:38:29 +0800960 if (cmd->tvc_sgl_count) {
961 sg_ptr = cmd->tvc_sgl;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800962
963 if (cmd->tvc_prot_sgl_count)
964 sg_prot_ptr = cmd->tvc_prot_sgl;
965 else
966 se_cmd->prot_pto = true;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700967 } else {
968 sg_ptr = NULL;
969 }
Asias He3c63f662013-05-06 16:38:29 +0800970 tv_nexus = cmd->tvc_nexus;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700971
Nicholas Bellinger9f0abc12012-10-01 18:40:55 -0700972 rc = target_submit_cmd_map_sgls(se_cmd, tv_nexus->tvn_se_sess,
Asias He3c63f662013-05-06 16:38:29 +0800973 cmd->tvc_cdb, &cmd->tvc_sense_buf[0],
974 cmd->tvc_lun, cmd->tvc_exp_data_len,
Nicholas Bellinger46243862014-12-21 10:42:08 -0800975 vhost_scsi_to_tcm_attr(cmd->tvc_task_attr),
976 cmd->tvc_data_direction, TARGET_SCF_ACK_KREF,
977 sg_ptr, cmd->tvc_sgl_count, NULL, 0, sg_prot_ptr,
978 cmd->tvc_prot_sgl_count);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700979 if (rc < 0) {
980 transport_send_check_condition_and_sense(se_cmd,
Nicholas Bellinger9f0abc12012-10-01 18:40:55 -0700981 TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE, 0);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700982 transport_generic_free_cmd(se_cmd, 0);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700983 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700984}
985
Asias He683bd962013-05-06 16:38:27 +0800986static void
987vhost_scsi_send_bad_target(struct vhost_scsi *vs,
988 struct vhost_virtqueue *vq,
989 int head, unsigned out)
Asias He637ab212013-04-10 15:06:15 +0800990{
991 struct virtio_scsi_cmd_resp __user *resp;
992 struct virtio_scsi_cmd_resp rsp;
993 int ret;
994
995 memset(&rsp, 0, sizeof(rsp));
996 rsp.response = VIRTIO_SCSI_S_BAD_TARGET;
997 resp = vq->iov[out].iov_base;
998 ret = __copy_to_user(resp, &rsp, sizeof(rsp));
999 if (!ret)
1000 vhost_add_used_and_signal(&vs->dev, vq, head, 0);
1001 else
1002 pr_err("Faulted on virtio_scsi_cmd_resp\n");
1003}
1004
Asias He683bd962013-05-06 16:38:27 +08001005static void
1006vhost_scsi_handle_vq(struct vhost_scsi *vs, struct vhost_virtqueue *vq)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001007{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001008 struct vhost_scsi_tpg **vs_tpg, *tpg;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001009 struct virtio_scsi_cmd_req v_req;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001010 struct virtio_scsi_cmd_req_pi v_req_pi;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001011 struct vhost_scsi_cmd *cmd;
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001012 struct iov_iter out_iter, in_iter, prot_iter, data_iter;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001013 u64 tag;
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001014 u32 exp_data_len, data_direction;
1015 unsigned out, in;
1016 int head, ret, prot_bytes;
1017 size_t req_size, rsp_size = sizeof(struct virtio_scsi_cmd_resp);
1018 size_t out_size, in_size;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001019 u16 lun;
1020 u8 *target, *lunp, task_attr;
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001021 bool t10_pi = vhost_has_feature(vq, VIRTIO_SCSI_F_T10_PI);
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001022 void *req, *cdb;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001023
Asias Hee7802212013-05-07 14:54:35 +08001024 mutex_lock(&vq->mutex);
Asias He4f7f46d2013-04-03 14:17:37 +08001025 /*
1026 * We can handle the vq only after the endpoint is setup by calling the
1027 * VHOST_SCSI_SET_ENDPOINT ioctl.
Asias He4f7f46d2013-04-03 14:17:37 +08001028 */
Asias Hee7802212013-05-07 14:54:35 +08001029 vs_tpg = vq->private_data;
Asias He4f7f46d2013-04-03 14:17:37 +08001030 if (!vs_tpg)
Asias Hee7802212013-05-07 14:54:35 +08001031 goto out;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001032
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001033 vhost_disable_notify(&vs->dev, vq);
1034
1035 for (;;) {
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03001036 head = vhost_get_vq_desc(vq, vq->iov,
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001037 ARRAY_SIZE(vq->iov), &out, &in,
1038 NULL, NULL);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001039 pr_debug("vhost_get_vq_desc: head: %d, out: %u in: %u\n",
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001040 head, out, in);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001041 /* On error, stop handling until the next kick. */
1042 if (unlikely(head < 0))
1043 break;
1044 /* Nothing new? Wait for eventfd to tell us they refilled. */
1045 if (head == vq->num) {
1046 if (unlikely(vhost_enable_notify(&vs->dev, vq))) {
1047 vhost_disable_notify(&vs->dev, vq);
1048 continue;
1049 }
1050 break;
1051 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001052 /*
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001053 * Check for a sane response buffer so we can report early
1054 * errors back to the guest.
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001055 */
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001056 if (unlikely(vq->iov[out].iov_len < rsp_size)) {
1057 vq_err(vq, "Expecting at least virtio_scsi_cmd_resp"
1058 " size, got %zu bytes\n", vq->iov[out].iov_len);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001059 break;
1060 }
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001061 /*
1062 * Setup pointers and values based upon different virtio-scsi
1063 * request header if T10_PI is enabled in KVM guest.
1064 */
1065 if (t10_pi) {
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001066 req = &v_req_pi;
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001067 req_size = sizeof(v_req_pi);
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001068 lunp = &v_req_pi.lun[0];
1069 target = &v_req_pi.lun[1];
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001070 } else {
1071 req = &v_req;
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001072 req_size = sizeof(v_req);
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001073 lunp = &v_req.lun[0];
1074 target = &v_req.lun[1];
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001075 }
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001076 /*
1077 * FIXME: Not correct for BIDI operation
1078 */
1079 out_size = iov_length(vq->iov, out);
1080 in_size = iov_length(&vq->iov[out], in);
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001081
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001082 /*
1083 * Copy over the virtio-scsi request header, which for a
1084 * ANY_LAYOUT enabled guest may span multiple iovecs, or a
1085 * single iovec may contain both the header + outgoing
1086 * WRITE payloads.
1087 *
1088 * copy_from_iter() will advance out_iter, so that it will
1089 * point at the start of the outgoing WRITE payload, if
1090 * DMA_TO_DEVICE is set.
1091 */
1092 iov_iter_init(&out_iter, WRITE, vq->iov, out, out_size);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001093
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001094 ret = copy_from_iter(req, req_size, &out_iter);
1095 if (unlikely(ret != req_size)) {
1096 vq_err(vq, "Faulted on copy_from_iter\n");
Nicholas Bellingerde1419e2015-01-29 17:21:13 -08001097 vhost_scsi_send_bad_target(vs, vq, head, out);
1098 continue;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001099 }
Venkatesh Srinivas7fe412d2014-02-24 14:13:32 -08001100 /* virtio-scsi spec requires byte 0 of the lun to be 1 */
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001101 if (unlikely(*lunp != 1)) {
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001102 vq_err(vq, "Illegal virtio-scsi lun: %u\n", *lunp);
Venkatesh Srinivas7fe412d2014-02-24 14:13:32 -08001103 vhost_scsi_send_bad_target(vs, vq, head, out);
1104 continue;
1105 }
1106
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001107 tpg = ACCESS_ONCE(vs_tpg[*target]);
Asias He98718312013-05-06 16:38:28 +08001108 if (unlikely(!tpg)) {
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001109 /* Target does not exist, fail the request */
Asias He637ab212013-04-10 15:06:15 +08001110 vhost_scsi_send_bad_target(vs, vq, head, out);
Asias He67e18cf2013-02-05 12:31:57 +08001111 continue;
1112 }
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001113 /*
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001114 * Determine data_direction by calculating the total outgoing
1115 * iovec sizes + incoming iovec sizes vs. virtio-scsi request +
1116 * response headers respectively.
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001117 *
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001118 * For DMA_TO_DEVICE this is out_iter, which is already pointing
1119 * to the right place.
1120 *
1121 * For DMA_FROM_DEVICE, the iovec will be just past the end
1122 * of the virtio-scsi response header in either the same
1123 * or immediately following iovec.
1124 *
1125 * Any associated T10_PI bytes for the outgoing / incoming
1126 * payloads are included in calculation of exp_data_len here.
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001127 */
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001128 prot_bytes = 0;
1129
1130 if (out_size > req_size) {
1131 data_direction = DMA_TO_DEVICE;
1132 exp_data_len = out_size - req_size;
1133 data_iter = out_iter;
1134 } else if (in_size > rsp_size) {
1135 data_direction = DMA_FROM_DEVICE;
1136 exp_data_len = in_size - rsp_size;
1137
1138 iov_iter_init(&in_iter, READ, &vq->iov[out], in,
1139 rsp_size + exp_data_len);
1140 iov_iter_advance(&in_iter, rsp_size);
1141 data_iter = in_iter;
1142 } else {
1143 data_direction = DMA_NONE;
1144 exp_data_len = 0;
1145 }
1146 /*
1147 * If T10_PI header + payload is present, setup prot_iter values
1148 * and recalculate data_iter for vhost_scsi_mapal() mapping to
1149 * host scatterlists via get_user_pages_fast().
1150 */
1151 if (t10_pi) {
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001152 if (v_req_pi.pi_bytesout) {
1153 if (data_direction != DMA_TO_DEVICE) {
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001154 vq_err(vq, "Received non zero pi_bytesout,"
1155 " but wrong data_direction\n");
Nicholas Bellingerde1419e2015-01-29 17:21:13 -08001156 vhost_scsi_send_bad_target(vs, vq, head, out);
1157 continue;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001158 }
Michael S. Tsirkine72fd722014-11-23 18:01:34 +02001159 prot_bytes = vhost32_to_cpu(vq, v_req_pi.pi_bytesout);
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001160 } else if (v_req_pi.pi_bytesin) {
1161 if (data_direction != DMA_FROM_DEVICE) {
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001162 vq_err(vq, "Received non zero pi_bytesin,"
1163 " but wrong data_direction\n");
Nicholas Bellingerde1419e2015-01-29 17:21:13 -08001164 vhost_scsi_send_bad_target(vs, vq, head, out);
1165 continue;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001166 }
Michael S. Tsirkine72fd722014-11-23 18:01:34 +02001167 prot_bytes = vhost32_to_cpu(vq, v_req_pi.pi_bytesin);
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001168 }
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001169 /*
1170 * Set prot_iter to data_iter, and advance past any
1171 * preceeding prot_bytes that may be present.
1172 *
1173 * Also fix up the exp_data_len to reflect only the
1174 * actual data payload length.
1175 */
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001176 if (prot_bytes) {
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001177 exp_data_len -= prot_bytes;
1178 prot_iter = data_iter;
1179 iov_iter_advance(&data_iter, prot_bytes);
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001180 }
Michael S. Tsirkine72fd722014-11-23 18:01:34 +02001181 tag = vhost64_to_cpu(vq, v_req_pi.tag);
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001182 task_attr = v_req_pi.task_attr;
1183 cdb = &v_req_pi.cdb[0];
1184 lun = ((v_req_pi.lun[2] << 8) | v_req_pi.lun[3]) & 0x3FFF;
1185 } else {
Michael S. Tsirkine72fd722014-11-23 18:01:34 +02001186 tag = vhost64_to_cpu(vq, v_req.tag);
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001187 task_attr = v_req.task_attr;
1188 cdb = &v_req.cdb[0];
1189 lun = ((v_req.lun[2] << 8) | v_req.lun[3]) & 0x3FFF;
1190 }
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001191 /*
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001192 * Check that the received CDB size does not exceeded our
1193 * hardcoded max for vhost-scsi, then get a pre-allocated
1194 * cmd descriptor for the new virtio-scsi tag.
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001195 *
1196 * TODO what if cdb was too small for varlen cdb header?
1197 */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001198 if (unlikely(scsi_command_size(cdb) > VHOST_SCSI_MAX_CDB_SIZE)) {
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001199 vq_err(vq, "Received SCSI CDB with command_size: %d that"
1200 " exceeds SCSI_MAX_VARLEN_CDB_SIZE: %d\n",
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001201 scsi_command_size(cdb), VHOST_SCSI_MAX_CDB_SIZE);
Nicholas Bellingerde1419e2015-01-29 17:21:13 -08001202 vhost_scsi_send_bad_target(vs, vq, head, out);
1203 continue;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001204 }
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001205 cmd = vhost_scsi_get_tag(vq, tpg, cdb, tag, lun, task_attr,
Nicholas Bellinger9f977ef2014-06-10 01:19:38 -07001206 exp_data_len + prot_bytes,
1207 data_direction);
Asias He3c63f662013-05-06 16:38:29 +08001208 if (IS_ERR(cmd)) {
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -07001209 vq_err(vq, "vhost_scsi_get_tag failed %ld\n",
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001210 PTR_ERR(cmd));
Nicholas Bellingerde1419e2015-01-29 17:21:13 -08001211 vhost_scsi_send_bad_target(vs, vq, head, out);
1212 continue;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001213 }
Asias He3c63f662013-05-06 16:38:29 +08001214 cmd->tvc_vhost = vs;
1215 cmd->tvc_vq = vq;
Nicholas Bellinger79c14142015-01-27 13:13:12 -08001216 cmd->tvc_resp_iov = &vq->iov[out];
1217 cmd->tvc_in_iovs = in;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001218
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001219 pr_debug("vhost_scsi got command opcode: %#02x, lun: %d\n",
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001220 cmd->tvc_cdb[0], cmd->tvc_lun);
1221 pr_debug("cmd: %p exp_data_len: %d, prot_bytes: %d data_direction:"
1222 " %d\n", cmd, exp_data_len, prot_bytes, data_direction);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001223
1224 if (data_direction != DMA_NONE) {
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001225 ret = vhost_scsi_mapal(cmd,
1226 prot_bytes, &prot_iter,
1227 exp_data_len, &data_iter);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001228 if (unlikely(ret)) {
1229 vq_err(vq, "Failed to map iov to sgl\n");
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001230 vhost_scsi_release_cmd(&cmd->tvc_se_cmd);
Nicholas Bellingerde1419e2015-01-29 17:21:13 -08001231 vhost_scsi_send_bad_target(vs, vq, head, out);
1232 continue;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001233 }
1234 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001235 /*
1236 * Save the descriptor from vhost_get_vq_desc() to be used to
1237 * complete the virtio-scsi request in TCM callback context via
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001238 * vhost_scsi_queue_data_in() and vhost_scsi_queue_status()
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001239 */
Asias He3c63f662013-05-06 16:38:29 +08001240 cmd->tvc_vq_desc = head;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001241 /*
Nicholas Bellinger09b13fa2015-01-25 21:14:58 -08001242 * Dispatch cmd descriptor for cmwq execution in process
1243 * context provided by vhost_scsi_workqueue. This also ensures
1244 * cmd is executed on the same kworker CPU as this vhost
1245 * thread to gain positive L2 cache locality effects.
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001246 */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001247 INIT_WORK(&cmd->work, vhost_scsi_submission_work);
1248 queue_work(vhost_scsi_workqueue, &cmd->work);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001249 }
Asias Hee7802212013-05-07 14:54:35 +08001250out:
Asias He7ea206c2013-04-10 15:06:14 +08001251 mutex_unlock(&vq->mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001252}
1253
1254static void vhost_scsi_ctl_handle_kick(struct vhost_work *work)
1255{
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001256 pr_debug("%s: The handling func for control queue.\n", __func__);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001257}
1258
Asias He683bd962013-05-06 16:38:27 +08001259static void
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001260vhost_scsi_send_evt(struct vhost_scsi *vs,
1261 struct vhost_scsi_tpg *tpg,
Asias He683bd962013-05-06 16:38:27 +08001262 struct se_lun *lun,
1263 u32 event,
1264 u32 reason)
Asias Hea6c9af82013-04-25 15:35:21 +08001265{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001266 struct vhost_scsi_evt *evt;
Asias Hea6c9af82013-04-25 15:35:21 +08001267
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001268 evt = vhost_scsi_allocate_evt(vs, event, reason);
Asias Hea6c9af82013-04-25 15:35:21 +08001269 if (!evt)
1270 return;
1271
1272 if (tpg && lun) {
1273 /* TODO: share lun setup code with virtio-scsi.ko */
1274 /*
1275 * Note: evt->event is zeroed when we allocate it and
1276 * lun[4-7] need to be zero according to virtio-scsi spec.
1277 */
1278 evt->event.lun[0] = 0x01;
Dan Carpenter59c816c2015-02-05 10:37:33 +03001279 evt->event.lun[1] = tpg->tport_tpgt;
Asias Hea6c9af82013-04-25 15:35:21 +08001280 if (lun->unpacked_lun >= 256)
1281 evt->event.lun[2] = lun->unpacked_lun >> 8 | 0x40 ;
1282 evt->event.lun[3] = lun->unpacked_lun & 0xFF;
1283 }
1284
1285 llist_add(&evt->list, &vs->vs_event_list);
1286 vhost_work_queue(&vs->dev, &vs->vs_event_work);
1287}
1288
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001289static void vhost_scsi_evt_handle_kick(struct vhost_work *work)
1290{
Asias Hea6c9af82013-04-25 15:35:21 +08001291 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
1292 poll.work);
1293 struct vhost_scsi *vs = container_of(vq->dev, struct vhost_scsi, dev);
1294
1295 mutex_lock(&vq->mutex);
1296 if (!vq->private_data)
1297 goto out;
1298
1299 if (vs->vs_events_missed)
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001300 vhost_scsi_send_evt(vs, NULL, NULL, VIRTIO_SCSI_T_NO_EVENT, 0);
Asias Hea6c9af82013-04-25 15:35:21 +08001301out:
1302 mutex_unlock(&vq->mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001303}
1304
1305static void vhost_scsi_handle_kick(struct vhost_work *work)
1306{
1307 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
1308 poll.work);
1309 struct vhost_scsi *vs = container_of(vq->dev, struct vhost_scsi, dev);
1310
Asias He1b7f3902013-02-06 13:20:59 +08001311 vhost_scsi_handle_vq(vs, vq);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001312}
1313
Asias He4f7f46d2013-04-03 14:17:37 +08001314static void vhost_scsi_flush_vq(struct vhost_scsi *vs, int index)
1315{
Asias He3ab2e422013-04-27 11:16:48 +08001316 vhost_poll_flush(&vs->vqs[index].vq.poll);
Asias He4f7f46d2013-04-03 14:17:37 +08001317}
1318
Michael S. Tsirkin3dfbff32013-04-28 15:38:52 +03001319/* Callers must hold dev mutex */
Asias He4f7f46d2013-04-03 14:17:37 +08001320static void vhost_scsi_flush(struct vhost_scsi *vs)
1321{
Asias Hef2f0173d2013-04-27 11:16:49 +08001322 struct vhost_scsi_inflight *old_inflight[VHOST_SCSI_MAX_VQ];
Asias He4f7f46d2013-04-03 14:17:37 +08001323 int i;
1324
Asias Hef2f0173d2013-04-27 11:16:49 +08001325 /* Init new inflight and remember the old inflight */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001326 vhost_scsi_init_inflight(vs, old_inflight);
Asias Hef2f0173d2013-04-27 11:16:49 +08001327
1328 /*
1329 * The inflight->kref was initialized to 1. We decrement it here to
1330 * indicate the start of the flush operation so that it will reach 0
1331 * when all the reqs are finished.
1332 */
1333 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++)
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001334 kref_put(&old_inflight[i]->kref, vhost_scsi_done_inflight);
Asias Hef2f0173d2013-04-27 11:16:49 +08001335
1336 /* Flush both the vhost poll and vhost work */
Asias He4f7f46d2013-04-03 14:17:37 +08001337 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++)
1338 vhost_scsi_flush_vq(vs, i);
1339 vhost_work_flush(&vs->dev, &vs->vs_completion_work);
Asias Hea6c9af82013-04-25 15:35:21 +08001340 vhost_work_flush(&vs->dev, &vs->vs_event_work);
Asias Hef2f0173d2013-04-27 11:16:49 +08001341
1342 /* Wait for all reqs issued before the flush to be finished */
1343 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++)
1344 wait_for_completion(&old_inflight[i]->comp);
Asias He4f7f46d2013-04-03 14:17:37 +08001345}
1346
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001347/*
1348 * Called from vhost_scsi_ioctl() context to walk the list of available
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001349 * vhost_scsi_tpg with an active struct vhost_scsi_nexus
Asias Hef2b7daf2013-04-25 15:35:20 +08001350 *
1351 * The lock nesting rule is:
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001352 * vhost_scsi_mutex -> vs->dev.mutex -> tpg->tv_tpg_mutex -> vq->mutex
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001353 */
Asias He683bd962013-05-06 16:38:27 +08001354static int
1355vhost_scsi_set_endpoint(struct vhost_scsi *vs,
1356 struct vhost_scsi_target *t)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001357{
Nicholas Bellingerab8edab2014-10-08 06:19:20 +00001358 struct se_portal_group *se_tpg;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001359 struct vhost_scsi_tport *tv_tport;
1360 struct vhost_scsi_tpg *tpg;
1361 struct vhost_scsi_tpg **vs_tpg;
Asias He4f7f46d2013-04-03 14:17:37 +08001362 struct vhost_virtqueue *vq;
1363 int index, ret, i, len;
Asias He67e18cf2013-02-05 12:31:57 +08001364 bool match = false;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001365
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001366 mutex_lock(&vhost_scsi_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001367 mutex_lock(&vs->dev.mutex);
Asias Hef2b7daf2013-04-25 15:35:20 +08001368
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001369 /* Verify that ring has been setup correctly. */
1370 for (index = 0; index < vs->dev.nvqs; ++index) {
1371 /* Verify that ring has been setup correctly. */
Asias He3ab2e422013-04-27 11:16:48 +08001372 if (!vhost_vq_access_ok(&vs->vqs[index].vq)) {
Asias Hef2b7daf2013-04-25 15:35:20 +08001373 ret = -EFAULT;
1374 goto out;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001375 }
1376 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001377
Asias He4f7f46d2013-04-03 14:17:37 +08001378 len = sizeof(vs_tpg[0]) * VHOST_SCSI_MAX_TARGET;
1379 vs_tpg = kzalloc(len, GFP_KERNEL);
1380 if (!vs_tpg) {
Asias Hef2b7daf2013-04-25 15:35:20 +08001381 ret = -ENOMEM;
1382 goto out;
Asias He4f7f46d2013-04-03 14:17:37 +08001383 }
1384 if (vs->vs_tpg)
1385 memcpy(vs_tpg, vs->vs_tpg, len);
1386
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001387 list_for_each_entry(tpg, &vhost_scsi_list, tv_tpg_list) {
Asias He98718312013-05-06 16:38:28 +08001388 mutex_lock(&tpg->tv_tpg_mutex);
1389 if (!tpg->tpg_nexus) {
1390 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001391 continue;
1392 }
Asias He98718312013-05-06 16:38:28 +08001393 if (tpg->tv_tpg_vhost_count != 0) {
1394 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001395 continue;
1396 }
Asias He98718312013-05-06 16:38:28 +08001397 tv_tport = tpg->tport;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001398
Asias He67e18cf2013-02-05 12:31:57 +08001399 if (!strcmp(tv_tport->tport_name, t->vhost_wwpn)) {
Asias He98718312013-05-06 16:38:28 +08001400 if (vs->vs_tpg && vs->vs_tpg[tpg->tport_tpgt]) {
Asias He4f7f46d2013-04-03 14:17:37 +08001401 kfree(vs_tpg);
Asias He98718312013-05-06 16:38:28 +08001402 mutex_unlock(&tpg->tv_tpg_mutex);
Asias Hef2b7daf2013-04-25 15:35:20 +08001403 ret = -EEXIST;
1404 goto out;
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001405 }
Nicholas Bellingerab8edab2014-10-08 06:19:20 +00001406 /*
1407 * In order to ensure individual vhost-scsi configfs
1408 * groups cannot be removed while in use by vhost ioctl,
1409 * go ahead and take an explicit se_tpg->tpg_group.cg_item
1410 * dependency now.
1411 */
1412 se_tpg = &tpg->se_tpg;
1413 ret = configfs_depend_item(se_tpg->se_tpg_tfo->tf_subsys,
1414 &se_tpg->tpg_group.cg_item);
1415 if (ret) {
1416 pr_warn("configfs_depend_item() failed: %d\n", ret);
1417 kfree(vs_tpg);
1418 mutex_unlock(&tpg->tv_tpg_mutex);
1419 goto out;
1420 }
Asias He98718312013-05-06 16:38:28 +08001421 tpg->tv_tpg_vhost_count++;
1422 tpg->vhost_scsi = vs;
1423 vs_tpg[tpg->tport_tpgt] = tpg;
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001424 smp_mb__after_atomic();
Asias He67e18cf2013-02-05 12:31:57 +08001425 match = true;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001426 }
Asias He98718312013-05-06 16:38:28 +08001427 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001428 }
Asias He67e18cf2013-02-05 12:31:57 +08001429
1430 if (match) {
1431 memcpy(vs->vs_vhost_wwpn, t->vhost_wwpn,
1432 sizeof(vs->vs_vhost_wwpn));
Asias He4f7f46d2013-04-03 14:17:37 +08001433 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++) {
Asias He3ab2e422013-04-27 11:16:48 +08001434 vq = &vs->vqs[i].vq;
Asias He4f7f46d2013-04-03 14:17:37 +08001435 mutex_lock(&vq->mutex);
Asias He22fa90c2013-05-07 14:54:36 +08001436 vq->private_data = vs_tpg;
Asias Hedfd5d562013-04-03 14:17:38 +08001437 vhost_init_used(vq);
Asias He4f7f46d2013-04-03 14:17:37 +08001438 mutex_unlock(&vq->mutex);
1439 }
Asias He67e18cf2013-02-05 12:31:57 +08001440 ret = 0;
1441 } else {
1442 ret = -EEXIST;
1443 }
1444
Asias He4f7f46d2013-04-03 14:17:37 +08001445 /*
1446 * Act as synchronize_rcu to make sure access to
1447 * old vs->vs_tpg is finished.
1448 */
1449 vhost_scsi_flush(vs);
1450 kfree(vs->vs_tpg);
1451 vs->vs_tpg = vs_tpg;
1452
Asias Hef2b7daf2013-04-25 15:35:20 +08001453out:
Asias He67e18cf2013-02-05 12:31:57 +08001454 mutex_unlock(&vs->dev.mutex);
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001455 mutex_unlock(&vhost_scsi_mutex);
Asias He67e18cf2013-02-05 12:31:57 +08001456 return ret;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001457}
1458
Asias He683bd962013-05-06 16:38:27 +08001459static int
1460vhost_scsi_clear_endpoint(struct vhost_scsi *vs,
1461 struct vhost_scsi_target *t)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001462{
Nicholas Bellingerab8edab2014-10-08 06:19:20 +00001463 struct se_portal_group *se_tpg;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001464 struct vhost_scsi_tport *tv_tport;
1465 struct vhost_scsi_tpg *tpg;
Asias He4f7f46d2013-04-03 14:17:37 +08001466 struct vhost_virtqueue *vq;
1467 bool match = false;
Asias He67e18cf2013-02-05 12:31:57 +08001468 int index, ret, i;
1469 u8 target;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001470
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001471 mutex_lock(&vhost_scsi_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001472 mutex_lock(&vs->dev.mutex);
1473 /* Verify that ring has been setup correctly. */
1474 for (index = 0; index < vs->dev.nvqs; ++index) {
Asias He3ab2e422013-04-27 11:16:48 +08001475 if (!vhost_vq_access_ok(&vs->vqs[index].vq)) {
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001476 ret = -EFAULT;
Asias He038e0af2013-03-15 09:14:05 +08001477 goto err_dev;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001478 }
1479 }
Asias He4f7f46d2013-04-03 14:17:37 +08001480
1481 if (!vs->vs_tpg) {
Asias Hef2b7daf2013-04-25 15:35:20 +08001482 ret = 0;
1483 goto err_dev;
Asias He4f7f46d2013-04-03 14:17:37 +08001484 }
1485
Asias He67e18cf2013-02-05 12:31:57 +08001486 for (i = 0; i < VHOST_SCSI_MAX_TARGET; i++) {
1487 target = i;
Asias He98718312013-05-06 16:38:28 +08001488 tpg = vs->vs_tpg[target];
1489 if (!tpg)
Asias He67e18cf2013-02-05 12:31:57 +08001490 continue;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001491
Asias He98718312013-05-06 16:38:28 +08001492 mutex_lock(&tpg->tv_tpg_mutex);
1493 tv_tport = tpg->tport;
Asias He67e18cf2013-02-05 12:31:57 +08001494 if (!tv_tport) {
1495 ret = -ENODEV;
Asias He038e0af2013-03-15 09:14:05 +08001496 goto err_tpg;
Asias He67e18cf2013-02-05 12:31:57 +08001497 }
1498
1499 if (strcmp(tv_tport->tport_name, t->vhost_wwpn)) {
Asias He98718312013-05-06 16:38:28 +08001500 pr_warn("tv_tport->tport_name: %s, tpg->tport_tpgt: %hu"
Asias He67e18cf2013-02-05 12:31:57 +08001501 " does not match t->vhost_wwpn: %s, t->vhost_tpgt: %hu\n",
Asias He98718312013-05-06 16:38:28 +08001502 tv_tport->tport_name, tpg->tport_tpgt,
Asias He67e18cf2013-02-05 12:31:57 +08001503 t->vhost_wwpn, t->vhost_tpgt);
1504 ret = -EINVAL;
Asias He038e0af2013-03-15 09:14:05 +08001505 goto err_tpg;
Asias He67e18cf2013-02-05 12:31:57 +08001506 }
Asias He98718312013-05-06 16:38:28 +08001507 tpg->tv_tpg_vhost_count--;
1508 tpg->vhost_scsi = NULL;
Asias He67e18cf2013-02-05 12:31:57 +08001509 vs->vs_tpg[target] = NULL;
Asias He4f7f46d2013-04-03 14:17:37 +08001510 match = true;
Asias He98718312013-05-06 16:38:28 +08001511 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellingerab8edab2014-10-08 06:19:20 +00001512 /*
1513 * Release se_tpg->tpg_group.cg_item configfs dependency now
1514 * to allow vhost-scsi WWPN se_tpg->tpg_group shutdown to occur.
1515 */
1516 se_tpg = &tpg->se_tpg;
1517 configfs_undepend_item(se_tpg->se_tpg_tfo->tf_subsys,
1518 &se_tpg->tpg_group.cg_item);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001519 }
Asias He4f7f46d2013-04-03 14:17:37 +08001520 if (match) {
1521 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++) {
Asias He3ab2e422013-04-27 11:16:48 +08001522 vq = &vs->vqs[i].vq;
Asias He4f7f46d2013-04-03 14:17:37 +08001523 mutex_lock(&vq->mutex);
Asias He22fa90c2013-05-07 14:54:36 +08001524 vq->private_data = NULL;
Asias He4f7f46d2013-04-03 14:17:37 +08001525 mutex_unlock(&vq->mutex);
1526 }
1527 }
1528 /*
1529 * Act as synchronize_rcu to make sure access to
1530 * old vs->vs_tpg is finished.
1531 */
1532 vhost_scsi_flush(vs);
1533 kfree(vs->vs_tpg);
1534 vs->vs_tpg = NULL;
Asias Hea6c9af82013-04-25 15:35:21 +08001535 WARN_ON(vs->vs_events_nr);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001536 mutex_unlock(&vs->dev.mutex);
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001537 mutex_unlock(&vhost_scsi_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001538 return 0;
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001539
Asias He038e0af2013-03-15 09:14:05 +08001540err_tpg:
Asias He98718312013-05-06 16:38:28 +08001541 mutex_unlock(&tpg->tv_tpg_mutex);
Asias He038e0af2013-03-15 09:14:05 +08001542err_dev:
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001543 mutex_unlock(&vs->dev.mutex);
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001544 mutex_unlock(&vhost_scsi_mutex);
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001545 return ret;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001546}
1547
Asias He4f7f46d2013-04-03 14:17:37 +08001548static int vhost_scsi_set_features(struct vhost_scsi *vs, u64 features)
1549{
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001550 struct vhost_virtqueue *vq;
1551 int i;
1552
Asias He4f7f46d2013-04-03 14:17:37 +08001553 if (features & ~VHOST_SCSI_FEATURES)
1554 return -EOPNOTSUPP;
1555
1556 mutex_lock(&vs->dev.mutex);
1557 if ((features & (1 << VHOST_F_LOG_ALL)) &&
1558 !vhost_log_access_ok(&vs->dev)) {
1559 mutex_unlock(&vs->dev.mutex);
1560 return -EFAULT;
1561 }
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001562
1563 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++) {
1564 vq = &vs->vqs[i].vq;
1565 mutex_lock(&vq->mutex);
1566 vq->acked_features = features;
1567 mutex_unlock(&vq->mutex);
1568 }
Asias He4f7f46d2013-04-03 14:17:37 +08001569 mutex_unlock(&vs->dev.mutex);
1570 return 0;
1571}
1572
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001573static int vhost_scsi_open(struct inode *inode, struct file *f)
1574{
Asias Hec7289312013-05-06 16:38:26 +08001575 struct vhost_scsi *vs;
Asias He3ab2e422013-04-27 11:16:48 +08001576 struct vhost_virtqueue **vqs;
Michael S. Tsirkin595cb752013-09-17 09:30:34 +03001577 int r = -ENOMEM, i;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001578
Michael S. Tsirkin595cb752013-09-17 09:30:34 +03001579 vs = kzalloc(sizeof(*vs), GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
1580 if (!vs) {
1581 vs = vzalloc(sizeof(*vs));
1582 if (!vs)
1583 goto err_vs;
1584 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001585
Asias He3ab2e422013-04-27 11:16:48 +08001586 vqs = kmalloc(VHOST_SCSI_MAX_VQ * sizeof(*vqs), GFP_KERNEL);
Michael S. Tsirkin595cb752013-09-17 09:30:34 +03001587 if (!vqs)
1588 goto err_vqs;
Asias He3ab2e422013-04-27 11:16:48 +08001589
Asias Hec7289312013-05-06 16:38:26 +08001590 vhost_work_init(&vs->vs_completion_work, vhost_scsi_complete_cmd_work);
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001591 vhost_work_init(&vs->vs_event_work, vhost_scsi_evt_work);
Asias Hea6c9af82013-04-25 15:35:21 +08001592
Asias Hec7289312013-05-06 16:38:26 +08001593 vs->vs_events_nr = 0;
1594 vs->vs_events_missed = false;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001595
Asias Hec7289312013-05-06 16:38:26 +08001596 vqs[VHOST_SCSI_VQ_CTL] = &vs->vqs[VHOST_SCSI_VQ_CTL].vq;
1597 vqs[VHOST_SCSI_VQ_EVT] = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
1598 vs->vqs[VHOST_SCSI_VQ_CTL].vq.handle_kick = vhost_scsi_ctl_handle_kick;
1599 vs->vqs[VHOST_SCSI_VQ_EVT].vq.handle_kick = vhost_scsi_evt_handle_kick;
Asias He3ab2e422013-04-27 11:16:48 +08001600 for (i = VHOST_SCSI_VQ_IO; i < VHOST_SCSI_MAX_VQ; i++) {
Asias Hec7289312013-05-06 16:38:26 +08001601 vqs[i] = &vs->vqs[i].vq;
1602 vs->vqs[i].vq.handle_kick = vhost_scsi_handle_kick;
Asias He3ab2e422013-04-27 11:16:48 +08001603 }
Zhi Yong Wu59566b6e2013-12-07 04:13:03 +08001604 vhost_dev_init(&vs->dev, vqs, VHOST_SCSI_MAX_VQ);
Asias Hef2f0173d2013-04-27 11:16:49 +08001605
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001606 vhost_scsi_init_inflight(vs, NULL);
Asias Hef2f0173d2013-04-27 11:16:49 +08001607
Asias Hec7289312013-05-06 16:38:26 +08001608 f->private_data = vs;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001609 return 0;
Michael S. Tsirkin595cb752013-09-17 09:30:34 +03001610
Michael S. Tsirkin595cb752013-09-17 09:30:34 +03001611err_vqs:
Michael S. Tsirkin684044412014-06-12 19:00:01 +03001612 kvfree(vs);
Michael S. Tsirkin595cb752013-09-17 09:30:34 +03001613err_vs:
1614 return r;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001615}
1616
1617static int vhost_scsi_release(struct inode *inode, struct file *f)
1618{
Asias Hec7289312013-05-06 16:38:26 +08001619 struct vhost_scsi *vs = f->private_data;
Asias He67e18cf2013-02-05 12:31:57 +08001620 struct vhost_scsi_target t;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001621
Asias Hec7289312013-05-06 16:38:26 +08001622 mutex_lock(&vs->dev.mutex);
1623 memcpy(t.vhost_wwpn, vs->vs_vhost_wwpn, sizeof(t.vhost_wwpn));
1624 mutex_unlock(&vs->dev.mutex);
1625 vhost_scsi_clear_endpoint(vs, &t);
1626 vhost_dev_stop(&vs->dev);
1627 vhost_dev_cleanup(&vs->dev, false);
Asias Hea6c9af82013-04-25 15:35:21 +08001628 /* Jobs can re-queue themselves in evt kick handler. Do extra flush. */
Asias Hec7289312013-05-06 16:38:26 +08001629 vhost_scsi_flush(vs);
1630 kfree(vs->dev.vqs);
Michael S. Tsirkin684044412014-06-12 19:00:01 +03001631 kvfree(vs);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001632 return 0;
1633}
1634
Asias He683bd962013-05-06 16:38:27 +08001635static long
1636vhost_scsi_ioctl(struct file *f,
1637 unsigned int ioctl,
1638 unsigned long arg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001639{
1640 struct vhost_scsi *vs = f->private_data;
1641 struct vhost_scsi_target backend;
1642 void __user *argp = (void __user *)arg;
1643 u64 __user *featurep = argp;
Asias He11c634182013-04-25 15:35:22 +08001644 u32 __user *eventsp = argp;
1645 u32 events_missed;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001646 u64 features;
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001647 int r, abi_version = VHOST_SCSI_ABI_VERSION;
Asias He3ab2e422013-04-27 11:16:48 +08001648 struct vhost_virtqueue *vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001649
1650 switch (ioctl) {
1651 case VHOST_SCSI_SET_ENDPOINT:
1652 if (copy_from_user(&backend, argp, sizeof backend))
1653 return -EFAULT;
Michael S. Tsirkin6de71452012-08-18 15:44:09 -07001654 if (backend.reserved != 0)
1655 return -EOPNOTSUPP;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001656
1657 return vhost_scsi_set_endpoint(vs, &backend);
1658 case VHOST_SCSI_CLEAR_ENDPOINT:
1659 if (copy_from_user(&backend, argp, sizeof backend))
1660 return -EFAULT;
Michael S. Tsirkin6de71452012-08-18 15:44:09 -07001661 if (backend.reserved != 0)
1662 return -EOPNOTSUPP;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001663
1664 return vhost_scsi_clear_endpoint(vs, &backend);
1665 case VHOST_SCSI_GET_ABI_VERSION:
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001666 if (copy_to_user(argp, &abi_version, sizeof abi_version))
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001667 return -EFAULT;
1668 return 0;
Asias He11c634182013-04-25 15:35:22 +08001669 case VHOST_SCSI_SET_EVENTS_MISSED:
1670 if (get_user(events_missed, eventsp))
1671 return -EFAULT;
1672 mutex_lock(&vq->mutex);
1673 vs->vs_events_missed = events_missed;
1674 mutex_unlock(&vq->mutex);
1675 return 0;
1676 case VHOST_SCSI_GET_EVENTS_MISSED:
1677 mutex_lock(&vq->mutex);
1678 events_missed = vs->vs_events_missed;
1679 mutex_unlock(&vq->mutex);
1680 if (put_user(events_missed, eventsp))
1681 return -EFAULT;
1682 return 0;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001683 case VHOST_GET_FEATURES:
Nicholas Bellinger5dade712013-03-27 17:23:41 -07001684 features = VHOST_SCSI_FEATURES;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001685 if (copy_to_user(featurep, &features, sizeof features))
1686 return -EFAULT;
1687 return 0;
1688 case VHOST_SET_FEATURES:
1689 if (copy_from_user(&features, featurep, sizeof features))
1690 return -EFAULT;
1691 return vhost_scsi_set_features(vs, features);
1692 default:
1693 mutex_lock(&vs->dev.mutex);
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001694 r = vhost_dev_ioctl(&vs->dev, ioctl, argp);
1695 /* TODO: flush backend after dev ioctl. */
1696 if (r == -ENOIOCTLCMD)
1697 r = vhost_vring_ioctl(&vs->dev, ioctl, argp);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001698 mutex_unlock(&vs->dev.mutex);
1699 return r;
1700 }
1701}
1702
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001703#ifdef CONFIG_COMPAT
1704static long vhost_scsi_compat_ioctl(struct file *f, unsigned int ioctl,
1705 unsigned long arg)
1706{
1707 return vhost_scsi_ioctl(f, ioctl, (unsigned long)compat_ptr(arg));
1708}
1709#endif
1710
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001711static const struct file_operations vhost_scsi_fops = {
1712 .owner = THIS_MODULE,
1713 .release = vhost_scsi_release,
1714 .unlocked_ioctl = vhost_scsi_ioctl,
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001715#ifdef CONFIG_COMPAT
1716 .compat_ioctl = vhost_scsi_compat_ioctl,
1717#endif
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001718 .open = vhost_scsi_open,
1719 .llseek = noop_llseek,
1720};
1721
1722static struct miscdevice vhost_scsi_misc = {
1723 MISC_DYNAMIC_MINOR,
1724 "vhost-scsi",
1725 &vhost_scsi_fops,
1726};
1727
1728static int __init vhost_scsi_register(void)
1729{
1730 return misc_register(&vhost_scsi_misc);
1731}
1732
1733static int vhost_scsi_deregister(void)
1734{
1735 return misc_deregister(&vhost_scsi_misc);
1736}
1737
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001738static char *vhost_scsi_dump_proto_id(struct vhost_scsi_tport *tport)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001739{
1740 switch (tport->tport_proto_id) {
1741 case SCSI_PROTOCOL_SAS:
1742 return "SAS";
1743 case SCSI_PROTOCOL_FCP:
1744 return "FCP";
1745 case SCSI_PROTOCOL_ISCSI:
1746 return "iSCSI";
1747 default:
1748 break;
1749 }
1750
1751 return "Unknown";
1752}
1753
Asias He683bd962013-05-06 16:38:27 +08001754static void
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001755vhost_scsi_do_plug(struct vhost_scsi_tpg *tpg,
Asias He683bd962013-05-06 16:38:27 +08001756 struct se_lun *lun, bool plug)
Asias Hea6c9af82013-04-25 15:35:21 +08001757{
1758
1759 struct vhost_scsi *vs = tpg->vhost_scsi;
1760 struct vhost_virtqueue *vq;
1761 u32 reason;
1762
1763 if (!vs)
1764 return;
1765
1766 mutex_lock(&vs->dev.mutex);
Asias Hea6c9af82013-04-25 15:35:21 +08001767
1768 if (plug)
1769 reason = VIRTIO_SCSI_EVT_RESET_RESCAN;
1770 else
1771 reason = VIRTIO_SCSI_EVT_RESET_REMOVED;
1772
Asias He3ab2e422013-04-27 11:16:48 +08001773 vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
Asias Hea6c9af82013-04-25 15:35:21 +08001774 mutex_lock(&vq->mutex);
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001775 if (vhost_has_feature(vq, VIRTIO_SCSI_F_HOTPLUG))
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001776 vhost_scsi_send_evt(vs, tpg, lun,
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001777 VIRTIO_SCSI_T_TRANSPORT_RESET, reason);
Asias Hea6c9af82013-04-25 15:35:21 +08001778 mutex_unlock(&vq->mutex);
1779 mutex_unlock(&vs->dev.mutex);
1780}
1781
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001782static void vhost_scsi_hotplug(struct vhost_scsi_tpg *tpg, struct se_lun *lun)
Asias Hea6c9af82013-04-25 15:35:21 +08001783{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001784 vhost_scsi_do_plug(tpg, lun, true);
Asias Hea6c9af82013-04-25 15:35:21 +08001785}
1786
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001787static void vhost_scsi_hotunplug(struct vhost_scsi_tpg *tpg, struct se_lun *lun)
Asias Hea6c9af82013-04-25 15:35:21 +08001788{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001789 vhost_scsi_do_plug(tpg, lun, false);
Asias Hea6c9af82013-04-25 15:35:21 +08001790}
1791
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001792static int vhost_scsi_port_link(struct se_portal_group *se_tpg,
Asias He683bd962013-05-06 16:38:27 +08001793 struct se_lun *lun)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001794{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001795 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
1796 struct vhost_scsi_tpg, se_tpg);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001797
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001798 mutex_lock(&vhost_scsi_mutex);
Asias Hea6c9af82013-04-25 15:35:21 +08001799
Asias He98718312013-05-06 16:38:28 +08001800 mutex_lock(&tpg->tv_tpg_mutex);
1801 tpg->tv_tpg_port_count++;
1802 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001803
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001804 vhost_scsi_hotplug(tpg, lun);
Asias Hea6c9af82013-04-25 15:35:21 +08001805
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001806 mutex_unlock(&vhost_scsi_mutex);
Asias Hea6c9af82013-04-25 15:35:21 +08001807
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001808 return 0;
1809}
1810
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001811static void vhost_scsi_port_unlink(struct se_portal_group *se_tpg,
Asias He683bd962013-05-06 16:38:27 +08001812 struct se_lun *lun)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001813{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001814 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
1815 struct vhost_scsi_tpg, se_tpg);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001816
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001817 mutex_lock(&vhost_scsi_mutex);
Asias Hea6c9af82013-04-25 15:35:21 +08001818
Asias He98718312013-05-06 16:38:28 +08001819 mutex_lock(&tpg->tv_tpg_mutex);
1820 tpg->tv_tpg_port_count--;
1821 mutex_unlock(&tpg->tv_tpg_mutex);
Asias Hea6c9af82013-04-25 15:35:21 +08001822
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001823 vhost_scsi_hotunplug(tpg, lun);
Asias Hea6c9af82013-04-25 15:35:21 +08001824
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001825 mutex_unlock(&vhost_scsi_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001826}
1827
Asias He683bd962013-05-06 16:38:27 +08001828static struct se_node_acl *
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001829vhost_scsi_make_nodeacl(struct se_portal_group *se_tpg,
Asias He683bd962013-05-06 16:38:27 +08001830 struct config_group *group,
1831 const char *name)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001832{
1833 struct se_node_acl *se_nacl, *se_nacl_new;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001834 struct vhost_scsi_nacl *nacl;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001835 u64 wwpn = 0;
1836 u32 nexus_depth;
1837
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001838 /* vhost_scsi_parse_wwn(name, &wwpn, 1) < 0)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001839 return ERR_PTR(-EINVAL); */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001840 se_nacl_new = vhost_scsi_alloc_fabric_acl(se_tpg);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001841 if (!se_nacl_new)
1842 return ERR_PTR(-ENOMEM);
1843
1844 nexus_depth = 1;
1845 /*
1846 * se_nacl_new may be released by core_tpg_add_initiator_node_acl()
1847 * when converting a NodeACL from demo mode -> explict
1848 */
1849 se_nacl = core_tpg_add_initiator_node_acl(se_tpg, se_nacl_new,
1850 name, nexus_depth);
1851 if (IS_ERR(se_nacl)) {
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001852 vhost_scsi_release_fabric_acl(se_tpg, se_nacl_new);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001853 return se_nacl;
1854 }
1855 /*
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001856 * Locate our struct vhost_scsi_nacl and set the FC Nport WWPN
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001857 */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001858 nacl = container_of(se_nacl, struct vhost_scsi_nacl, se_node_acl);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001859 nacl->iport_wwpn = wwpn;
1860
1861 return se_nacl;
1862}
1863
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001864static void vhost_scsi_drop_nodeacl(struct se_node_acl *se_acl)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001865{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001866 struct vhost_scsi_nacl *nacl = container_of(se_acl,
1867 struct vhost_scsi_nacl, se_node_acl);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001868 core_tpg_del_initiator_node_acl(se_acl->se_tpg, se_acl, 1);
1869 kfree(nacl);
1870}
1871
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001872static void vhost_scsi_free_cmd_map_res(struct vhost_scsi_nexus *nexus,
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001873 struct se_session *se_sess)
1874{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001875 struct vhost_scsi_cmd *tv_cmd;
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001876 unsigned int i;
1877
1878 if (!se_sess->sess_cmd_map)
1879 return;
1880
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001881 for (i = 0; i < VHOST_SCSI_DEFAULT_TAGS; i++) {
1882 tv_cmd = &((struct vhost_scsi_cmd *)se_sess->sess_cmd_map)[i];
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001883
1884 kfree(tv_cmd->tvc_sgl);
Nicholas Bellingerb1935f62014-02-22 18:08:24 -08001885 kfree(tv_cmd->tvc_prot_sgl);
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001886 kfree(tv_cmd->tvc_upages);
1887 }
1888}
1889
Nicholas Bellingerb1d75fe2015-03-28 00:03:51 -07001890static ssize_t vhost_scsi_tpg_attrib_store_fabric_prot_type(
1891 struct se_portal_group *se_tpg,
1892 const char *page,
1893 size_t count)
1894{
1895 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
1896 struct vhost_scsi_tpg, se_tpg);
1897 unsigned long val;
1898 int ret = kstrtoul(page, 0, &val);
1899
1900 if (ret) {
1901 pr_err("kstrtoul() returned %d for fabric_prot_type\n", ret);
1902 return ret;
1903 }
1904 if (val != 0 && val != 1 && val != 3) {
1905 pr_err("Invalid vhost_scsi fabric_prot_type: %lu\n", val);
1906 return -EINVAL;
1907 }
1908 tpg->tv_fabric_prot_type = val;
1909
1910 return count;
1911}
1912
1913static ssize_t vhost_scsi_tpg_attrib_show_fabric_prot_type(
1914 struct se_portal_group *se_tpg,
1915 char *page)
1916{
1917 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
1918 struct vhost_scsi_tpg, se_tpg);
1919
1920 return sprintf(page, "%d\n", tpg->tv_fabric_prot_type);
1921}
1922TF_TPG_ATTRIB_ATTR(vhost_scsi, fabric_prot_type, S_IRUGO | S_IWUSR);
1923
1924static struct configfs_attribute *vhost_scsi_tpg_attrib_attrs[] = {
1925 &vhost_scsi_tpg_attrib_fabric_prot_type.attr,
1926 NULL,
1927};
1928
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001929static int vhost_scsi_make_nexus(struct vhost_scsi_tpg *tpg,
Asias He683bd962013-05-06 16:38:27 +08001930 const char *name)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001931{
1932 struct se_portal_group *se_tpg;
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001933 struct se_session *se_sess;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001934 struct vhost_scsi_nexus *tv_nexus;
1935 struct vhost_scsi_cmd *tv_cmd;
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001936 unsigned int i;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001937
Asias He98718312013-05-06 16:38:28 +08001938 mutex_lock(&tpg->tv_tpg_mutex);
1939 if (tpg->tpg_nexus) {
1940 mutex_unlock(&tpg->tv_tpg_mutex);
1941 pr_debug("tpg->tpg_nexus already exists\n");
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001942 return -EEXIST;
1943 }
Asias He98718312013-05-06 16:38:28 +08001944 se_tpg = &tpg->se_tpg;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001945
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001946 tv_nexus = kzalloc(sizeof(struct vhost_scsi_nexus), GFP_KERNEL);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001947 if (!tv_nexus) {
Asias He98718312013-05-06 16:38:28 +08001948 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001949 pr_err("Unable to allocate struct vhost_scsi_nexus\n");
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001950 return -ENOMEM;
1951 }
1952 /*
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -07001953 * Initialize the struct se_session pointer and setup tagpool
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001954 * for struct vhost_scsi_cmd descriptors
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001955 */
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -07001956 tv_nexus->tvn_se_sess = transport_init_session_tags(
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001957 VHOST_SCSI_DEFAULT_TAGS,
1958 sizeof(struct vhost_scsi_cmd),
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001959 TARGET_PROT_DIN_PASS | TARGET_PROT_DOUT_PASS);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001960 if (IS_ERR(tv_nexus->tvn_se_sess)) {
Asias He98718312013-05-06 16:38:28 +08001961 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001962 kfree(tv_nexus);
1963 return -ENOMEM;
1964 }
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001965 se_sess = tv_nexus->tvn_se_sess;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001966 for (i = 0; i < VHOST_SCSI_DEFAULT_TAGS; i++) {
1967 tv_cmd = &((struct vhost_scsi_cmd *)se_sess->sess_cmd_map)[i];
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001968
1969 tv_cmd->tvc_sgl = kzalloc(sizeof(struct scatterlist) *
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001970 VHOST_SCSI_PREALLOC_SGLS, GFP_KERNEL);
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001971 if (!tv_cmd->tvc_sgl) {
1972 mutex_unlock(&tpg->tv_tpg_mutex);
1973 pr_err("Unable to allocate tv_cmd->tvc_sgl\n");
1974 goto out;
1975 }
1976
1977 tv_cmd->tvc_upages = kzalloc(sizeof(struct page *) *
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001978 VHOST_SCSI_PREALLOC_UPAGES, GFP_KERNEL);
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001979 if (!tv_cmd->tvc_upages) {
1980 mutex_unlock(&tpg->tv_tpg_mutex);
1981 pr_err("Unable to allocate tv_cmd->tvc_upages\n");
1982 goto out;
1983 }
Nicholas Bellingerb1935f62014-02-22 18:08:24 -08001984
1985 tv_cmd->tvc_prot_sgl = kzalloc(sizeof(struct scatterlist) *
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001986 VHOST_SCSI_PREALLOC_PROT_SGLS, GFP_KERNEL);
Nicholas Bellingerb1935f62014-02-22 18:08:24 -08001987 if (!tv_cmd->tvc_prot_sgl) {
1988 mutex_unlock(&tpg->tv_tpg_mutex);
1989 pr_err("Unable to allocate tv_cmd->tvc_prot_sgl\n");
1990 goto out;
1991 }
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001992 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001993 /*
1994 * Since we are running in 'demo mode' this call with generate a
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001995 * struct se_node_acl for the vhost_scsi struct se_portal_group with
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001996 * the SCSI Initiator port name of the passed configfs group 'name'.
1997 */
1998 tv_nexus->tvn_se_sess->se_node_acl = core_tpg_check_initiator_node_acl(
1999 se_tpg, (unsigned char *)name);
2000 if (!tv_nexus->tvn_se_sess->se_node_acl) {
Asias He98718312013-05-06 16:38:28 +08002001 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002002 pr_debug("core_tpg_check_initiator_node_acl() failed"
2003 " for %s\n", name);
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07002004 goto out;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002005 }
2006 /*
Bart Van Assche2f450cc2015-02-12 11:48:49 +01002007 * Now register the TCM vhost virtual I_T Nexus as active.
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002008 */
Bart Van Assche2f450cc2015-02-12 11:48:49 +01002009 transport_register_session(se_tpg, tv_nexus->tvn_se_sess->se_node_acl,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002010 tv_nexus->tvn_se_sess, tv_nexus);
Asias He98718312013-05-06 16:38:28 +08002011 tpg->tpg_nexus = tv_nexus;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002012
Asias He98718312013-05-06 16:38:28 +08002013 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002014 return 0;
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07002015
2016out:
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002017 vhost_scsi_free_cmd_map_res(tv_nexus, se_sess);
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07002018 transport_free_session(se_sess);
2019 kfree(tv_nexus);
2020 return -ENOMEM;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002021}
2022
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002023static int vhost_scsi_drop_nexus(struct vhost_scsi_tpg *tpg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002024{
2025 struct se_session *se_sess;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002026 struct vhost_scsi_nexus *tv_nexus;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002027
2028 mutex_lock(&tpg->tv_tpg_mutex);
2029 tv_nexus = tpg->tpg_nexus;
2030 if (!tv_nexus) {
2031 mutex_unlock(&tpg->tv_tpg_mutex);
2032 return -ENODEV;
2033 }
2034
2035 se_sess = tv_nexus->tvn_se_sess;
2036 if (!se_sess) {
2037 mutex_unlock(&tpg->tv_tpg_mutex);
2038 return -ENODEV;
2039 }
2040
Nicholas Bellinger101998f2012-07-30 13:30:00 -07002041 if (tpg->tv_tpg_port_count != 0) {
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002042 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger101998f2012-07-30 13:30:00 -07002043 pr_err("Unable to remove TCM_vhost I_T Nexus with"
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002044 " active TPG port count: %d\n",
Nicholas Bellinger101998f2012-07-30 13:30:00 -07002045 tpg->tv_tpg_port_count);
2046 return -EBUSY;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002047 }
2048
Nicholas Bellinger101998f2012-07-30 13:30:00 -07002049 if (tpg->tv_tpg_vhost_count != 0) {
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002050 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger101998f2012-07-30 13:30:00 -07002051 pr_err("Unable to remove TCM_vhost I_T Nexus with"
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002052 " active TPG vhost count: %d\n",
Nicholas Bellinger101998f2012-07-30 13:30:00 -07002053 tpg->tv_tpg_vhost_count);
2054 return -EBUSY;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002055 }
2056
Nicholas Bellinger101998f2012-07-30 13:30:00 -07002057 pr_debug("TCM_vhost_ConfigFS: Removing I_T Nexus to emulated"
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002058 " %s Initiator Port: %s\n", vhost_scsi_dump_proto_id(tpg->tport),
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002059 tv_nexus->tvn_se_sess->se_node_acl->initiatorname);
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07002060
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002061 vhost_scsi_free_cmd_map_res(tv_nexus, se_sess);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002062 /*
Nicholas Bellinger101998f2012-07-30 13:30:00 -07002063 * Release the SCSI I_T Nexus to the emulated vhost Target Port
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002064 */
2065 transport_deregister_session(tv_nexus->tvn_se_sess);
2066 tpg->tpg_nexus = NULL;
2067 mutex_unlock(&tpg->tv_tpg_mutex);
2068
2069 kfree(tv_nexus);
2070 return 0;
2071}
2072
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002073static ssize_t vhost_scsi_tpg_show_nexus(struct se_portal_group *se_tpg,
Asias He683bd962013-05-06 16:38:27 +08002074 char *page)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002075{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002076 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
2077 struct vhost_scsi_tpg, se_tpg);
2078 struct vhost_scsi_nexus *tv_nexus;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002079 ssize_t ret;
2080
Asias He98718312013-05-06 16:38:28 +08002081 mutex_lock(&tpg->tv_tpg_mutex);
2082 tv_nexus = tpg->tpg_nexus;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002083 if (!tv_nexus) {
Asias He98718312013-05-06 16:38:28 +08002084 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002085 return -ENODEV;
2086 }
2087 ret = snprintf(page, PAGE_SIZE, "%s\n",
2088 tv_nexus->tvn_se_sess->se_node_acl->initiatorname);
Asias He98718312013-05-06 16:38:28 +08002089 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002090
2091 return ret;
2092}
2093
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002094static ssize_t vhost_scsi_tpg_store_nexus(struct se_portal_group *se_tpg,
Asias He683bd962013-05-06 16:38:27 +08002095 const char *page,
2096 size_t count)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002097{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002098 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
2099 struct vhost_scsi_tpg, se_tpg);
2100 struct vhost_scsi_tport *tport_wwn = tpg->tport;
2101 unsigned char i_port[VHOST_SCSI_NAMELEN], *ptr, *port_ptr;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002102 int ret;
2103 /*
2104 * Shutdown the active I_T nexus if 'NULL' is passed..
2105 */
2106 if (!strncmp(page, "NULL", 4)) {
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002107 ret = vhost_scsi_drop_nexus(tpg);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002108 return (!ret) ? count : ret;
2109 }
2110 /*
2111 * Otherwise make sure the passed virtual Initiator port WWN matches
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002112 * the fabric protocol_id set in vhost_scsi_make_tport(), and call
2113 * vhost_scsi_make_nexus().
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002114 */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002115 if (strlen(page) >= VHOST_SCSI_NAMELEN) {
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002116 pr_err("Emulated NAA Sas Address: %s, exceeds"
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002117 " max: %d\n", page, VHOST_SCSI_NAMELEN);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002118 return -EINVAL;
2119 }
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002120 snprintf(&i_port[0], VHOST_SCSI_NAMELEN, "%s", page);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002121
2122 ptr = strstr(i_port, "naa.");
2123 if (ptr) {
2124 if (tport_wwn->tport_proto_id != SCSI_PROTOCOL_SAS) {
2125 pr_err("Passed SAS Initiator Port %s does not"
2126 " match target port protoid: %s\n", i_port,
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002127 vhost_scsi_dump_proto_id(tport_wwn));
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002128 return -EINVAL;
2129 }
2130 port_ptr = &i_port[0];
2131 goto check_newline;
2132 }
2133 ptr = strstr(i_port, "fc.");
2134 if (ptr) {
2135 if (tport_wwn->tport_proto_id != SCSI_PROTOCOL_FCP) {
2136 pr_err("Passed FCP Initiator Port %s does not"
2137 " match target port protoid: %s\n", i_port,
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002138 vhost_scsi_dump_proto_id(tport_wwn));
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002139 return -EINVAL;
2140 }
2141 port_ptr = &i_port[3]; /* Skip over "fc." */
2142 goto check_newline;
2143 }
2144 ptr = strstr(i_port, "iqn.");
2145 if (ptr) {
2146 if (tport_wwn->tport_proto_id != SCSI_PROTOCOL_ISCSI) {
2147 pr_err("Passed iSCSI Initiator Port %s does not"
2148 " match target port protoid: %s\n", i_port,
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002149 vhost_scsi_dump_proto_id(tport_wwn));
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002150 return -EINVAL;
2151 }
2152 port_ptr = &i_port[0];
2153 goto check_newline;
2154 }
2155 pr_err("Unable to locate prefix for emulated Initiator Port:"
2156 " %s\n", i_port);
2157 return -EINVAL;
2158 /*
2159 * Clear any trailing newline for the NAA WWN
2160 */
2161check_newline:
2162 if (i_port[strlen(i_port)-1] == '\n')
2163 i_port[strlen(i_port)-1] = '\0';
2164
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002165 ret = vhost_scsi_make_nexus(tpg, port_ptr);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002166 if (ret < 0)
2167 return ret;
2168
2169 return count;
2170}
2171
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002172TF_TPG_BASE_ATTR(vhost_scsi, nexus, S_IRUGO | S_IWUSR);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002173
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002174static struct configfs_attribute *vhost_scsi_tpg_attrs[] = {
2175 &vhost_scsi_tpg_nexus.attr,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002176 NULL,
2177};
2178
Asias He683bd962013-05-06 16:38:27 +08002179static struct se_portal_group *
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002180vhost_scsi_make_tpg(struct se_wwn *wwn,
Asias He683bd962013-05-06 16:38:27 +08002181 struct config_group *group,
2182 const char *name)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002183{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002184 struct vhost_scsi_tport *tport = container_of(wwn,
2185 struct vhost_scsi_tport, tport_wwn);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002186
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002187 struct vhost_scsi_tpg *tpg;
Dan Carpenter59c816c2015-02-05 10:37:33 +03002188 u16 tpgt;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002189 int ret;
2190
2191 if (strstr(name, "tpgt_") != name)
2192 return ERR_PTR(-EINVAL);
Dan Carpenter59c816c2015-02-05 10:37:33 +03002193 if (kstrtou16(name + 5, 10, &tpgt) || tpgt >= VHOST_SCSI_MAX_TARGET)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002194 return ERR_PTR(-EINVAL);
2195
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002196 tpg = kzalloc(sizeof(struct vhost_scsi_tpg), GFP_KERNEL);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002197 if (!tpg) {
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002198 pr_err("Unable to allocate struct vhost_scsi_tpg");
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002199 return ERR_PTR(-ENOMEM);
2200 }
2201 mutex_init(&tpg->tv_tpg_mutex);
2202 INIT_LIST_HEAD(&tpg->tv_tpg_list);
2203 tpg->tport = tport;
2204 tpg->tport_tpgt = tpgt;
2205
Christoph Hellwig9ac89282015-04-08 20:01:35 +02002206 ret = core_tpg_register(&vhost_scsi_ops, wwn,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002207 &tpg->se_tpg, tpg, TRANSPORT_TPG_TYPE_NORMAL);
2208 if (ret < 0) {
2209 kfree(tpg);
2210 return NULL;
2211 }
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002212 mutex_lock(&vhost_scsi_mutex);
2213 list_add_tail(&tpg->tv_tpg_list, &vhost_scsi_list);
2214 mutex_unlock(&vhost_scsi_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002215
2216 return &tpg->se_tpg;
2217}
2218
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002219static void vhost_scsi_drop_tpg(struct se_portal_group *se_tpg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002220{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002221 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
2222 struct vhost_scsi_tpg, se_tpg);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002223
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002224 mutex_lock(&vhost_scsi_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002225 list_del(&tpg->tv_tpg_list);
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002226 mutex_unlock(&vhost_scsi_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002227 /*
Nicholas Bellinger101998f2012-07-30 13:30:00 -07002228 * Release the virtual I_T Nexus for this vhost TPG
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002229 */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002230 vhost_scsi_drop_nexus(tpg);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002231 /*
2232 * Deregister the se_tpg from TCM..
2233 */
2234 core_tpg_deregister(se_tpg);
2235 kfree(tpg);
2236}
2237
Asias He683bd962013-05-06 16:38:27 +08002238static struct se_wwn *
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002239vhost_scsi_make_tport(struct target_fabric_configfs *tf,
Asias He683bd962013-05-06 16:38:27 +08002240 struct config_group *group,
2241 const char *name)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002242{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002243 struct vhost_scsi_tport *tport;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002244 char *ptr;
2245 u64 wwpn = 0;
2246 int off = 0;
2247
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002248 /* if (vhost_scsi_parse_wwn(name, &wwpn, 1) < 0)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002249 return ERR_PTR(-EINVAL); */
2250
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002251 tport = kzalloc(sizeof(struct vhost_scsi_tport), GFP_KERNEL);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002252 if (!tport) {
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002253 pr_err("Unable to allocate struct vhost_scsi_tport");
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002254 return ERR_PTR(-ENOMEM);
2255 }
2256 tport->tport_wwpn = wwpn;
2257 /*
2258 * Determine the emulated Protocol Identifier and Target Port Name
2259 * based on the incoming configfs directory name.
2260 */
2261 ptr = strstr(name, "naa.");
2262 if (ptr) {
2263 tport->tport_proto_id = SCSI_PROTOCOL_SAS;
2264 goto check_len;
2265 }
2266 ptr = strstr(name, "fc.");
2267 if (ptr) {
2268 tport->tport_proto_id = SCSI_PROTOCOL_FCP;
2269 off = 3; /* Skip over "fc." */
2270 goto check_len;
2271 }
2272 ptr = strstr(name, "iqn.");
2273 if (ptr) {
2274 tport->tport_proto_id = SCSI_PROTOCOL_ISCSI;
2275 goto check_len;
2276 }
2277
2278 pr_err("Unable to locate prefix for emulated Target Port:"
2279 " %s\n", name);
2280 kfree(tport);
2281 return ERR_PTR(-EINVAL);
2282
2283check_len:
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002284 if (strlen(name) >= VHOST_SCSI_NAMELEN) {
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002285 pr_err("Emulated %s Address: %s, exceeds"
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002286 " max: %d\n", name, vhost_scsi_dump_proto_id(tport),
2287 VHOST_SCSI_NAMELEN);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002288 kfree(tport);
2289 return ERR_PTR(-EINVAL);
2290 }
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002291 snprintf(&tport->tport_name[0], VHOST_SCSI_NAMELEN, "%s", &name[off]);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002292
2293 pr_debug("TCM_VHost_ConfigFS: Allocated emulated Target"
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002294 " %s Address: %s\n", vhost_scsi_dump_proto_id(tport), name);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002295
2296 return &tport->tport_wwn;
2297}
2298
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002299static void vhost_scsi_drop_tport(struct se_wwn *wwn)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002300{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002301 struct vhost_scsi_tport *tport = container_of(wwn,
2302 struct vhost_scsi_tport, tport_wwn);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002303
2304 pr_debug("TCM_VHost_ConfigFS: Deallocating emulated Target"
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002305 " %s Address: %s\n", vhost_scsi_dump_proto_id(tport),
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002306 tport->tport_name);
2307
2308 kfree(tport);
2309}
2310
Asias He683bd962013-05-06 16:38:27 +08002311static ssize_t
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002312vhost_scsi_wwn_show_attr_version(struct target_fabric_configfs *tf,
Asias He683bd962013-05-06 16:38:27 +08002313 char *page)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002314{
2315 return sprintf(page, "TCM_VHOST fabric module %s on %s/%s"
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002316 "on "UTS_RELEASE"\n", VHOST_SCSI_VERSION, utsname()->sysname,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002317 utsname()->machine);
2318}
2319
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002320TF_WWN_ATTR_RO(vhost_scsi, version);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002321
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002322static struct configfs_attribute *vhost_scsi_wwn_attrs[] = {
2323 &vhost_scsi_wwn_version.attr,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002324 NULL,
2325};
2326
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002327static struct target_core_fabric_ops vhost_scsi_ops = {
Christoph Hellwig9ac89282015-04-08 20:01:35 +02002328 .module = THIS_MODULE,
2329 .name = "vhost",
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002330 .get_fabric_name = vhost_scsi_get_fabric_name,
2331 .get_fabric_proto_ident = vhost_scsi_get_fabric_proto_ident,
2332 .tpg_get_wwn = vhost_scsi_get_fabric_wwn,
2333 .tpg_get_tag = vhost_scsi_get_tpgt,
2334 .tpg_get_default_depth = vhost_scsi_get_default_depth,
2335 .tpg_get_pr_transport_id = vhost_scsi_get_pr_transport_id,
2336 .tpg_get_pr_transport_id_len = vhost_scsi_get_pr_transport_id_len,
2337 .tpg_parse_pr_out_transport_id = vhost_scsi_parse_pr_out_transport_id,
2338 .tpg_check_demo_mode = vhost_scsi_check_true,
2339 .tpg_check_demo_mode_cache = vhost_scsi_check_true,
2340 .tpg_check_demo_mode_write_protect = vhost_scsi_check_false,
2341 .tpg_check_prod_mode_write_protect = vhost_scsi_check_false,
Nicholas Bellingerb1d75fe2015-03-28 00:03:51 -07002342 .tpg_check_prot_fabric_only = vhost_scsi_check_prot_fabric_only,
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002343 .tpg_alloc_fabric_acl = vhost_scsi_alloc_fabric_acl,
2344 .tpg_release_fabric_acl = vhost_scsi_release_fabric_acl,
2345 .tpg_get_inst_index = vhost_scsi_tpg_get_inst_index,
2346 .release_cmd = vhost_scsi_release_cmd,
Nicholas Bellinger084ed452013-06-06 02:20:41 -07002347 .check_stop_free = vhost_scsi_check_stop_free,
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002348 .shutdown_session = vhost_scsi_shutdown_session,
2349 .close_session = vhost_scsi_close_session,
2350 .sess_get_index = vhost_scsi_sess_get_index,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002351 .sess_get_initiator_sid = NULL,
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002352 .write_pending = vhost_scsi_write_pending,
2353 .write_pending_status = vhost_scsi_write_pending_status,
2354 .set_default_node_attributes = vhost_scsi_set_default_node_attrs,
2355 .get_task_tag = vhost_scsi_get_task_tag,
2356 .get_cmd_state = vhost_scsi_get_cmd_state,
2357 .queue_data_in = vhost_scsi_queue_data_in,
2358 .queue_status = vhost_scsi_queue_status,
2359 .queue_tm_rsp = vhost_scsi_queue_tm_rsp,
2360 .aborted_task = vhost_scsi_aborted_task,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002361 /*
2362 * Setup callers for generic logic in target_core_fabric_configfs.c
2363 */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002364 .fabric_make_wwn = vhost_scsi_make_tport,
2365 .fabric_drop_wwn = vhost_scsi_drop_tport,
2366 .fabric_make_tpg = vhost_scsi_make_tpg,
2367 .fabric_drop_tpg = vhost_scsi_drop_tpg,
2368 .fabric_post_link = vhost_scsi_port_link,
2369 .fabric_pre_unlink = vhost_scsi_port_unlink,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002370 .fabric_make_np = NULL,
2371 .fabric_drop_np = NULL,
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002372 .fabric_make_nodeacl = vhost_scsi_make_nodeacl,
2373 .fabric_drop_nodeacl = vhost_scsi_drop_nodeacl,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002374
Christoph Hellwig9ac89282015-04-08 20:01:35 +02002375 .tfc_wwn_attrs = vhost_scsi_wwn_attrs,
2376 .tfc_tpg_base_attrs = vhost_scsi_tpg_attrs,
2377 .tfc_tpg_attrib_attrs = vhost_scsi_tpg_attrib_attrs,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002378};
2379
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002380static int __init vhost_scsi_init(void)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002381{
2382 int ret = -ENOMEM;
Christoph Hellwig9ac89282015-04-08 20:01:35 +02002383
2384 pr_debug("TCM_VHOST fabric module %s on %s/%s"
2385 " on "UTS_RELEASE"\n", VHOST_SCSI_VERSION, utsname()->sysname,
2386 utsname()->machine);
2387
Nicholas Bellinger101998f2012-07-30 13:30:00 -07002388 /*
2389 * Use our own dedicated workqueue for submitting I/O into
2390 * target core to avoid contention within system_wq.
2391 */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002392 vhost_scsi_workqueue = alloc_workqueue("vhost_scsi", 0, 0);
2393 if (!vhost_scsi_workqueue)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002394 goto out;
2395
2396 ret = vhost_scsi_register();
2397 if (ret < 0)
2398 goto out_destroy_workqueue;
2399
Christoph Hellwig9ac89282015-04-08 20:01:35 +02002400 ret = target_register_template(&vhost_scsi_ops);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002401 if (ret < 0)
2402 goto out_vhost_scsi_deregister;
2403
2404 return 0;
2405
2406out_vhost_scsi_deregister:
2407 vhost_scsi_deregister();
2408out_destroy_workqueue:
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002409 destroy_workqueue(vhost_scsi_workqueue);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002410out:
2411 return ret;
2412};
2413
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002414static void vhost_scsi_exit(void)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002415{
Christoph Hellwig9ac89282015-04-08 20:01:35 +02002416 target_unregister_template(&vhost_scsi_ops);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002417 vhost_scsi_deregister();
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002418 destroy_workqueue(vhost_scsi_workqueue);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002419};
2420
Michael S. Tsirkin181c04a2013-05-02 03:52:59 +03002421MODULE_DESCRIPTION("VHOST_SCSI series fabric driver");
2422MODULE_ALIAS("tcm_vhost");
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002423MODULE_LICENSE("GPL");
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002424module_init(vhost_scsi_init);
2425module_exit(vhost_scsi_exit);