blob: 4ce9f00ae10e84ba7ad6272a37e0d29bd0671e9b [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>
David S. Miller5538d292015-05-28 11:35:41 -070038#include <linux/vmalloc.h>
Nicholas Bellinger057cbf42012-07-18 14:31:32 -070039#include <linux/miscdevice.h>
40#include <asm/unaligned.h>
Bart Van Asscheba929992015-05-08 10:11:12 +020041#include <scsi/scsi_common.h>
42#include <scsi/scsi_proto.h>
Nicholas Bellinger057cbf42012-07-18 14:31:32 -070043#include <target/target_core_base.h>
44#include <target/target_core_fabric.h>
Nicholas Bellinger057cbf42012-07-18 14:31:32 -070045#include <linux/vhost.h>
Nicholas Bellinger057cbf42012-07-18 14:31:32 -070046#include <linux/virtio_scsi.h>
Asias He9d6064a2013-01-06 14:36:13 +080047#include <linux/llist.h>
Asias He1b7f3902013-02-06 13:20:59 +080048#include <linux/bitmap.h>
Nicholas Bellinger057cbf42012-07-18 14:31:32 -070049
Nicholas Bellinger057cbf42012-07-18 14:31:32 -070050#include "vhost.h"
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +030051
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -080052#define VHOST_SCSI_VERSION "v0.1"
53#define VHOST_SCSI_NAMELEN 256
54#define VHOST_SCSI_MAX_CDB_SIZE 32
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -080055#define VHOST_SCSI_PREALLOC_SGLS 2048
56#define VHOST_SCSI_PREALLOC_UPAGES 2048
Greg Edwards864d39d2018-08-08 13:29:55 -060057#define VHOST_SCSI_PREALLOC_PROT_SGLS 2048
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +030058
Jason Wange82b9b02019-05-17 00:29:49 -040059/* Max number of requests before requeueing the job.
60 * Using this limit prevents one virtqueue from starving others with
61 * request.
62 */
63#define VHOST_SCSI_WEIGHT 256
64
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +030065struct vhost_scsi_inflight {
66 /* Wait for the flush operation to finish */
67 struct completion comp;
68 /* Refcount for the inflight reqs */
69 struct kref kref;
70};
71
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -080072struct vhost_scsi_cmd {
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +030073 /* Descriptor from vhost_get_vq_desc() for virt_queue segment */
74 int tvc_vq_desc;
75 /* virtio-scsi initiator task attribute */
76 int tvc_task_attr;
Nicholas Bellinger79c14142015-01-27 13:13:12 -080077 /* virtio-scsi response incoming iovecs */
78 int tvc_in_iovs;
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +030079 /* virtio-scsi initiator data direction */
80 enum dma_data_direction tvc_data_direction;
81 /* Expected data transfer length from virtio-scsi header */
82 u32 tvc_exp_data_len;
83 /* The Tag from include/linux/virtio_scsi.h:struct virtio_scsi_cmd_req */
84 u64 tvc_tag;
85 /* The number of scatterlists associated with this cmd */
86 u32 tvc_sgl_count;
Nicholas Bellingere31885d2014-02-22 18:34:43 -080087 u32 tvc_prot_sgl_count;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -080088 /* Saved unpacked SCSI LUN for vhost_scsi_submission_work() */
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +030089 u32 tvc_lun;
90 /* Pointer to the SGL formatted memory from virtio-scsi */
91 struct scatterlist *tvc_sgl;
Nicholas Bellingerb1935f62014-02-22 18:08:24 -080092 struct scatterlist *tvc_prot_sgl;
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -070093 struct page **tvc_upages;
Nicholas Bellinger79c14142015-01-27 13:13:12 -080094 /* Pointer to response header iovec */
Benjamin Coddingtona77ec832016-06-06 18:07:59 -040095 struct iovec tvc_resp_iov;
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +030096 /* Pointer to vhost_scsi for our device */
97 struct vhost_scsi *tvc_vhost;
98 /* Pointer to vhost_virtqueue for the cmd */
99 struct vhost_virtqueue *tvc_vq;
100 /* Pointer to vhost nexus memory */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800101 struct vhost_scsi_nexus *tvc_nexus;
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300102 /* The TCM I/O descriptor that is accessed via container_of() */
103 struct se_cmd tvc_se_cmd;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800104 /* work item used for cmwq dispatch to vhost_scsi_submission_work() */
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300105 struct work_struct work;
106 /* Copy of the incoming SCSI command descriptor block (CDB) */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800107 unsigned char tvc_cdb[VHOST_SCSI_MAX_CDB_SIZE];
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300108 /* Sense buffer that will be mapped into outgoing status */
109 unsigned char tvc_sense_buf[TRANSPORT_SENSE_BUFFER];
110 /* Completed commands list, serviced from vhost worker thread */
111 struct llist_node tvc_completion_list;
112 /* Used to track inflight cmd */
113 struct vhost_scsi_inflight *inflight;
114};
115
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800116struct vhost_scsi_nexus {
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300117 /* Pointer to TCM session for I_T Nexus */
118 struct se_session *tvn_se_sess;
119};
120
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800121struct vhost_scsi_tpg {
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300122 /* Vhost port target portal group tag for TCM */
123 u16 tport_tpgt;
124 /* Used to track number of TPG Port/Lun Links wrt to explict I_T Nexus shutdown */
125 int tv_tpg_port_count;
126 /* Used for vhost_scsi device reference to tpg_nexus, protected by tv_tpg_mutex */
127 int tv_tpg_vhost_count;
Nicholas Bellingerb1d75fe2015-03-28 00:03:51 -0700128 /* Used for enabling T10-PI with legacy devices */
129 int tv_fabric_prot_type;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800130 /* list for vhost_scsi_list */
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300131 struct list_head tv_tpg_list;
132 /* Used to protect access for tpg_nexus */
133 struct mutex tv_tpg_mutex;
134 /* Pointer to the TCM VHost I_T Nexus for this TPG endpoint */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800135 struct vhost_scsi_nexus *tpg_nexus;
136 /* Pointer back to vhost_scsi_tport */
137 struct vhost_scsi_tport *tport;
138 /* Returned by vhost_scsi_make_tpg() */
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300139 struct se_portal_group se_tpg;
140 /* Pointer back to vhost_scsi, protected by tv_tpg_mutex */
141 struct vhost_scsi *vhost_scsi;
Mike Christieefd838f2020-11-09 23:33:23 -0600142 struct list_head tmf_queue;
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300143};
144
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800145struct vhost_scsi_tport {
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300146 /* SCSI protocol the tport is providing */
147 u8 tport_proto_id;
148 /* Binary World Wide unique Port Name for Vhost Target port */
149 u64 tport_wwpn;
150 /* ASCII formatted WWPN for Vhost Target port */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800151 char tport_name[VHOST_SCSI_NAMELEN];
152 /* Returned by vhost_scsi_make_tport() */
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300153 struct se_wwn tport_wwn;
154};
155
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800156struct vhost_scsi_evt {
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300157 /* event to be sent to guest */
158 struct virtio_scsi_event event;
159 /* event list, serviced from vhost worker thread */
160 struct llist_node list;
161};
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700162
Nicholas Bellinger101998f2012-07-30 13:30:00 -0700163enum {
164 VHOST_SCSI_VQ_CTL = 0,
165 VHOST_SCSI_VQ_EVT = 1,
166 VHOST_SCSI_VQ_IO = 2,
167};
168
Michael S. Tsirkine72fd722014-11-23 18:01:34 +0200169/* Note: can't set VIRTIO_F_VERSION_1 yet, since that implies ANY_LAYOUT. */
Nicholas Bellinger5dade712013-03-27 17:23:41 -0700170enum {
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800171 VHOST_SCSI_FEATURES = VHOST_FEATURES | (1ULL << VIRTIO_SCSI_F_HOTPLUG) |
Michael S. Tsirkin4e9fa502015-09-09 22:24:56 +0300172 (1ULL << VIRTIO_SCSI_F_T10_PI)
Nicholas Bellinger5dade712013-03-27 17:23:41 -0700173};
174
Asias He1b7f3902013-02-06 13:20:59 +0800175#define VHOST_SCSI_MAX_TARGET 256
176#define VHOST_SCSI_MAX_VQ 128
Asias Hea6c9af82013-04-25 15:35:21 +0800177#define VHOST_SCSI_MAX_EVENT 128
Asias He67e18cf2013-02-05 12:31:57 +0800178
Asias He3ab2e422013-04-27 11:16:48 +0800179struct vhost_scsi_virtqueue {
180 struct vhost_virtqueue vq;
Michael S. Tsirkin3dfbff32013-04-28 15:38:52 +0300181 /*
182 * Reference counting for inflight reqs, used for flush operation. At
183 * each time, one reference tracks new commands submitted, while we
184 * wait for another one to reach 0.
185 */
Asias Hef2f0173d2013-04-27 11:16:49 +0800186 struct vhost_scsi_inflight inflights[2];
Michael S. Tsirkin3dfbff32013-04-28 15:38:52 +0300187 /*
188 * Indicate current inflight in use, protected by vq->mutex.
189 * Writers must also take dev mutex and flush under it.
190 */
Asias Hef2f0173d2013-04-27 11:16:49 +0800191 int inflight_idx;
Mike Christie25b98b62020-11-09 23:33:20 -0600192 struct vhost_scsi_cmd *scsi_cmds;
193 struct sbitmap scsi_tags;
194 int max_cmds;
Asias He3ab2e422013-04-27 11:16:48 +0800195};
196
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700197struct vhost_scsi {
Asias He67e18cf2013-02-05 12:31:57 +0800198 /* Protected by vhost_scsi->dev.mutex */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800199 struct vhost_scsi_tpg **vs_tpg;
Asias He67e18cf2013-02-05 12:31:57 +0800200 char vs_vhost_wwpn[TRANSPORT_IQN_LEN];
Asias He67e18cf2013-02-05 12:31:57 +0800201
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700202 struct vhost_dev dev;
Asias He3ab2e422013-04-27 11:16:48 +0800203 struct vhost_scsi_virtqueue vqs[VHOST_SCSI_MAX_VQ];
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700204
205 struct vhost_work vs_completion_work; /* cmd completion work item */
Asias He9d6064a2013-01-06 14:36:13 +0800206 struct llist_head vs_completion_list; /* cmd completion queue */
Asias Hea6c9af82013-04-25 15:35:21 +0800207
208 struct vhost_work vs_event_work; /* evt injection work item */
209 struct llist_head vs_event_list; /* evt injection queue */
210
211 bool vs_events_missed; /* any missed events, protected by vq->mutex */
212 int vs_events_nr; /* num of pending events, protected by vq->mutex */
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700213};
214
Mike Christieefd838f2020-11-09 23:33:23 -0600215struct vhost_scsi_tmf {
216 struct vhost_work vwork;
217 struct vhost_scsi_tpg *tpg;
218 struct vhost_scsi *vhost;
219 struct vhost_scsi_virtqueue *svq;
220 struct list_head queue_entry;
221
222 struct se_cmd se_cmd;
Mike Christieb4fffc12020-11-20 09:50:59 -0600223 u8 scsi_resp;
Mike Christieefd838f2020-11-09 23:33:23 -0600224 struct vhost_scsi_inflight *inflight;
225 struct iovec resp_iov;
226 int in_iovs;
227 int vq_desc;
228};
229
Bijan Mottahedeh3f8ca2e2018-09-17 17:09:48 -0700230/*
231 * Context for processing request and control queue operations.
232 */
233struct vhost_scsi_ctx {
234 int head;
235 unsigned int out, in;
236 size_t req_size, rsp_size;
237 size_t out_size, in_size;
238 u8 *target, *lunp;
239 void *req;
240 struct iov_iter out_iter;
241};
242
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800243static struct workqueue_struct *vhost_scsi_workqueue;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700244
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800245/* Global spinlock to protect vhost_scsi TPG list for vhost IOCTL access */
246static DEFINE_MUTEX(vhost_scsi_mutex);
247static LIST_HEAD(vhost_scsi_list);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700248
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800249static void vhost_scsi_done_inflight(struct kref *kref)
Asias Hef2f0173d2013-04-27 11:16:49 +0800250{
251 struct vhost_scsi_inflight *inflight;
252
253 inflight = container_of(kref, struct vhost_scsi_inflight, kref);
254 complete(&inflight->comp);
255}
256
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800257static void vhost_scsi_init_inflight(struct vhost_scsi *vs,
Asias Hef2f0173d2013-04-27 11:16:49 +0800258 struct vhost_scsi_inflight *old_inflight[])
259{
260 struct vhost_scsi_inflight *new_inflight;
261 struct vhost_virtqueue *vq;
262 int idx, i;
263
264 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++) {
265 vq = &vs->vqs[i].vq;
266
267 mutex_lock(&vq->mutex);
268
269 /* store old infight */
270 idx = vs->vqs[i].inflight_idx;
271 if (old_inflight)
272 old_inflight[i] = &vs->vqs[i].inflights[idx];
273
274 /* setup new infight */
275 vs->vqs[i].inflight_idx = idx ^ 1;
276 new_inflight = &vs->vqs[i].inflights[idx ^ 1];
277 kref_init(&new_inflight->kref);
278 init_completion(&new_inflight->comp);
279
280 mutex_unlock(&vq->mutex);
281 }
282}
283
284static struct vhost_scsi_inflight *
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800285vhost_scsi_get_inflight(struct vhost_virtqueue *vq)
Asias Hef2f0173d2013-04-27 11:16:49 +0800286{
287 struct vhost_scsi_inflight *inflight;
288 struct vhost_scsi_virtqueue *svq;
289
290 svq = container_of(vq, struct vhost_scsi_virtqueue, vq);
291 inflight = &svq->inflights[svq->inflight_idx];
292 kref_get(&inflight->kref);
293
294 return inflight;
295}
296
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800297static void vhost_scsi_put_inflight(struct vhost_scsi_inflight *inflight)
Asias Hef2f0173d2013-04-27 11:16:49 +0800298{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800299 kref_put(&inflight->kref, vhost_scsi_done_inflight);
Asias Hef2f0173d2013-04-27 11:16:49 +0800300}
301
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800302static int vhost_scsi_check_true(struct se_portal_group *se_tpg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700303{
304 return 1;
305}
306
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800307static int vhost_scsi_check_false(struct se_portal_group *se_tpg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700308{
309 return 0;
310}
311
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800312static char *vhost_scsi_get_fabric_wwn(struct se_portal_group *se_tpg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700313{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800314 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
315 struct vhost_scsi_tpg, se_tpg);
316 struct vhost_scsi_tport *tport = tpg->tport;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700317
318 return &tport->tport_name[0];
319}
320
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800321static u16 vhost_scsi_get_tpgt(struct se_portal_group *se_tpg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700322{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800323 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
324 struct vhost_scsi_tpg, se_tpg);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700325 return tpg->tport_tpgt;
326}
327
Nicholas Bellingerb1d75fe2015-03-28 00:03:51 -0700328static int vhost_scsi_check_prot_fabric_only(struct se_portal_group *se_tpg)
329{
330 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
331 struct vhost_scsi_tpg, se_tpg);
332
333 return tpg->tv_fabric_prot_type;
334}
335
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800336static u32 vhost_scsi_tpg_get_inst_index(struct se_portal_group *se_tpg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700337{
338 return 1;
339}
340
Mike Christie47a35652020-11-09 23:33:21 -0600341static void vhost_scsi_release_cmd_res(struct se_cmd *se_cmd)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700342{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800343 struct vhost_scsi_cmd *tv_cmd = container_of(se_cmd,
344 struct vhost_scsi_cmd, tvc_se_cmd);
Mike Christie25b98b62020-11-09 23:33:20 -0600345 struct vhost_scsi_virtqueue *svq = container_of(tv_cmd->tvc_vq,
346 struct vhost_scsi_virtqueue, vq);
347 struct vhost_scsi_inflight *inflight = tv_cmd->inflight;
Nicholas Bellingere31885d2014-02-22 18:34:43 -0800348 int i;
Nicholas Bellinger084ed452013-06-06 02:20:41 -0700349
350 if (tv_cmd->tvc_sgl_count) {
Nicholas Bellinger084ed452013-06-06 02:20:41 -0700351 for (i = 0; i < tv_cmd->tvc_sgl_count; i++)
352 put_page(sg_page(&tv_cmd->tvc_sgl[i]));
Michael S. Tsirkind3d665a2013-09-17 22:54:31 +0300353 }
Nicholas Bellingere31885d2014-02-22 18:34:43 -0800354 if (tv_cmd->tvc_prot_sgl_count) {
355 for (i = 0; i < tv_cmd->tvc_prot_sgl_count; i++)
356 put_page(sg_page(&tv_cmd->tvc_prot_sgl[i]));
357 }
Nicholas Bellinger084ed452013-06-06 02:20:41 -0700358
Mike Christie25b98b62020-11-09 23:33:20 -0600359 sbitmap_clear_bit(&svq->scsi_tags, se_cmd->map_tag);
360 vhost_scsi_put_inflight(inflight);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700361}
362
Mike Christieefd838f2020-11-09 23:33:23 -0600363static void vhost_scsi_release_tmf_res(struct vhost_scsi_tmf *tmf)
364{
365 struct vhost_scsi_tpg *tpg = tmf->tpg;
366 struct vhost_scsi_inflight *inflight = tmf->inflight;
367
368 mutex_lock(&tpg->tv_tpg_mutex);
369 list_add_tail(&tpg->tmf_queue, &tmf->queue_entry);
370 mutex_unlock(&tpg->tv_tpg_mutex);
371 vhost_scsi_put_inflight(inflight);
372}
373
Mike Christie47a35652020-11-09 23:33:21 -0600374static void vhost_scsi_release_cmd(struct se_cmd *se_cmd)
375{
Mike Christieefd838f2020-11-09 23:33:23 -0600376 if (se_cmd->se_cmd_flags & SCF_SCSI_TMR_CDB) {
377 struct vhost_scsi_tmf *tmf = container_of(se_cmd,
378 struct vhost_scsi_tmf, se_cmd);
Mike Christie47a35652020-11-09 23:33:21 -0600379
Mike Christieefd838f2020-11-09 23:33:23 -0600380 vhost_work_queue(&tmf->vhost->dev, &tmf->vwork);
381 } else {
382 struct vhost_scsi_cmd *cmd = container_of(se_cmd,
383 struct vhost_scsi_cmd, tvc_se_cmd);
384 struct vhost_scsi *vs = cmd->tvc_vhost;
385
386 llist_add(&cmd->tvc_completion_list, &vs->vs_completion_list);
387 vhost_work_queue(&vs->dev, &vs->vs_completion_work);
388 }
Mike Christie47a35652020-11-09 23:33:21 -0600389}
390
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800391static u32 vhost_scsi_sess_get_index(struct se_session *se_sess)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700392{
393 return 0;
394}
395
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800396static int vhost_scsi_write_pending(struct se_cmd *se_cmd)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700397{
398 /* Go ahead and process the write immediately */
399 target_execute_cmd(se_cmd);
400 return 0;
401}
402
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800403static void vhost_scsi_set_default_node_attrs(struct se_node_acl *nacl)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700404{
405 return;
406}
407
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800408static int vhost_scsi_get_cmd_state(struct se_cmd *se_cmd)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700409{
410 return 0;
411}
412
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800413static int vhost_scsi_queue_data_in(struct se_cmd *se_cmd)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700414{
Mike Christie47a35652020-11-09 23:33:21 -0600415 transport_generic_free_cmd(se_cmd, 0);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700416 return 0;
417}
418
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800419static int vhost_scsi_queue_status(struct se_cmd *se_cmd)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700420{
Mike Christie47a35652020-11-09 23:33:21 -0600421 transport_generic_free_cmd(se_cmd, 0);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700422 return 0;
423}
424
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800425static void vhost_scsi_queue_tm_rsp(struct se_cmd *se_cmd)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700426{
Mike Christieefd838f2020-11-09 23:33:23 -0600427 struct vhost_scsi_tmf *tmf = container_of(se_cmd, struct vhost_scsi_tmf,
428 se_cmd);
429
Mike Christieb4fffc12020-11-20 09:50:59 -0600430 tmf->scsi_resp = se_cmd->se_tmr_req->response;
Mike Christieefd838f2020-11-09 23:33:23 -0600431 transport_generic_free_cmd(&tmf->se_cmd, 0);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700432}
433
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800434static void vhost_scsi_aborted_task(struct se_cmd *se_cmd)
Nicholas Bellinger131e6ab2014-03-22 14:55:56 -0700435{
436 return;
437}
438
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800439static void vhost_scsi_free_evt(struct vhost_scsi *vs, struct vhost_scsi_evt *evt)
Asias Hea6c9af82013-04-25 15:35:21 +0800440{
441 vs->vs_events_nr--;
442 kfree(evt);
443}
444
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800445static struct vhost_scsi_evt *
446vhost_scsi_allocate_evt(struct vhost_scsi *vs,
Asias He683bd962013-05-06 16:38:27 +0800447 u32 event, u32 reason)
Asias Hea6c9af82013-04-25 15:35:21 +0800448{
Asias He3ab2e422013-04-27 11:16:48 +0800449 struct vhost_virtqueue *vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800450 struct vhost_scsi_evt *evt;
Asias Hea6c9af82013-04-25 15:35:21 +0800451
452 if (vs->vs_events_nr > VHOST_SCSI_MAX_EVENT) {
453 vs->vs_events_missed = true;
454 return NULL;
455 }
456
457 evt = kzalloc(sizeof(*evt), GFP_KERNEL);
458 if (!evt) {
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800459 vq_err(vq, "Failed to allocate vhost_scsi_evt\n");
Asias Hea6c9af82013-04-25 15:35:21 +0800460 vs->vs_events_missed = true;
461 return NULL;
462 }
463
Michael S. Tsirkine72fd722014-11-23 18:01:34 +0200464 evt->event.event = cpu_to_vhost32(vq, event);
465 evt->event.reason = cpu_to_vhost32(vq, reason);
Asias Hea6c9af82013-04-25 15:35:21 +0800466 vs->vs_events_nr++;
467
468 return evt;
469}
470
Nicholas Bellinger084ed452013-06-06 02:20:41 -0700471static int vhost_scsi_check_stop_free(struct se_cmd *se_cmd)
472{
Bart Van Asscheafc16602015-04-27 13:52:36 +0200473 return target_put_sess_cmd(se_cmd);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700474}
475
Asias He683bd962013-05-06 16:38:27 +0800476static void
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800477vhost_scsi_do_evt_work(struct vhost_scsi *vs, struct vhost_scsi_evt *evt)
Asias Hea6c9af82013-04-25 15:35:21 +0800478{
Asias He3ab2e422013-04-27 11:16:48 +0800479 struct vhost_virtqueue *vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
Asias Hea6c9af82013-04-25 15:35:21 +0800480 struct virtio_scsi_event *event = &evt->event;
481 struct virtio_scsi_event __user *eventp;
482 unsigned out, in;
483 int head, ret;
484
Eugenio Pérez247643f2020-03-31 21:27:57 +0200485 if (!vhost_vq_get_backend(vq)) {
Asias Hea6c9af82013-04-25 15:35:21 +0800486 vs->vs_events_missed = true;
487 return;
488 }
489
490again:
491 vhost_disable_notify(&vs->dev, vq);
Michael S. Tsirkin47283be2014-06-05 15:20:27 +0300492 head = vhost_get_vq_desc(vq, vq->iov,
Asias Hea6c9af82013-04-25 15:35:21 +0800493 ARRAY_SIZE(vq->iov), &out, &in,
494 NULL, NULL);
495 if (head < 0) {
496 vs->vs_events_missed = true;
497 return;
498 }
499 if (head == vq->num) {
500 if (vhost_enable_notify(&vs->dev, vq))
501 goto again;
502 vs->vs_events_missed = true;
503 return;
504 }
505
506 if ((vq->iov[out].iov_len != sizeof(struct virtio_scsi_event))) {
507 vq_err(vq, "Expecting virtio_scsi_event, got %zu bytes\n",
508 vq->iov[out].iov_len);
509 vs->vs_events_missed = true;
510 return;
511 }
512
513 if (vs->vs_events_missed) {
Michael S. Tsirkine72fd722014-11-23 18:01:34 +0200514 event->event |= cpu_to_vhost32(vq, VIRTIO_SCSI_T_EVENTS_MISSED);
Asias Hea6c9af82013-04-25 15:35:21 +0800515 vs->vs_events_missed = false;
516 }
517
518 eventp = vq->iov[out].iov_base;
519 ret = __copy_to_user(eventp, event, sizeof(*event));
520 if (!ret)
521 vhost_add_used_and_signal(&vs->dev, vq, head, 0);
522 else
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800523 vq_err(vq, "Faulted on vhost_scsi_send_event\n");
Asias Hea6c9af82013-04-25 15:35:21 +0800524}
525
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800526static void vhost_scsi_evt_work(struct vhost_work *work)
Asias Hea6c9af82013-04-25 15:35:21 +0800527{
528 struct vhost_scsi *vs = container_of(work, struct vhost_scsi,
529 vs_event_work);
Asias He3ab2e422013-04-27 11:16:48 +0800530 struct vhost_virtqueue *vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
Byungchul Park12bdcbd2017-05-12 09:42:56 +0900531 struct vhost_scsi_evt *evt, *t;
Asias Hea6c9af82013-04-25 15:35:21 +0800532 struct llist_node *llnode;
533
534 mutex_lock(&vq->mutex);
535 llnode = llist_del_all(&vs->vs_event_list);
Byungchul Park12bdcbd2017-05-12 09:42:56 +0900536 llist_for_each_entry_safe(evt, t, llnode, list) {
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800537 vhost_scsi_do_evt_work(vs, evt);
538 vhost_scsi_free_evt(vs, evt);
Asias Hea6c9af82013-04-25 15:35:21 +0800539 }
540 mutex_unlock(&vq->mutex);
541}
542
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700543/* Fill in status and signal that we are done processing this command
544 *
545 * This is scheduled in the vhost work queue so we are called with the owner
546 * process mm and can access the vring.
547 */
548static void vhost_scsi_complete_cmd_work(struct vhost_work *work)
549{
550 struct vhost_scsi *vs = container_of(work, struct vhost_scsi,
551 vs_completion_work);
Asias He1b7f3902013-02-06 13:20:59 +0800552 DECLARE_BITMAP(signal, VHOST_SCSI_MAX_VQ);
Asias He9d6064a2013-01-06 14:36:13 +0800553 struct virtio_scsi_cmd_resp v_rsp;
Byungchul Park816e85e2017-11-09 09:00:21 +0900554 struct vhost_scsi_cmd *cmd, *t;
Asias He9d6064a2013-01-06 14:36:13 +0800555 struct llist_node *llnode;
556 struct se_cmd *se_cmd;
Nicholas Bellinger79c14142015-01-27 13:13:12 -0800557 struct iov_iter iov_iter;
Asias He1b7f3902013-02-06 13:20:59 +0800558 int ret, vq;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700559
Asias He1b7f3902013-02-06 13:20:59 +0800560 bitmap_zero(signal, VHOST_SCSI_MAX_VQ);
Asias He9d6064a2013-01-06 14:36:13 +0800561 llnode = llist_del_all(&vs->vs_completion_list);
Byungchul Park816e85e2017-11-09 09:00:21 +0900562 llist_for_each_entry_safe(cmd, t, llnode, tvc_completion_list) {
Asias He3c63f662013-05-06 16:38:29 +0800563 se_cmd = &cmd->tvc_se_cmd;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700564
565 pr_debug("%s tv_cmd %p resid %u status %#02x\n", __func__,
Asias He3c63f662013-05-06 16:38:29 +0800566 cmd, se_cmd->residual_count, se_cmd->scsi_status);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700567
568 memset(&v_rsp, 0, sizeof(v_rsp));
Michael S. Tsirkine72fd722014-11-23 18:01:34 +0200569 v_rsp.resid = cpu_to_vhost32(cmd->tvc_vq, se_cmd->residual_count);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700570 /* TODO is status_qualifier field needed? */
571 v_rsp.status = se_cmd->scsi_status;
Michael S. Tsirkine72fd722014-11-23 18:01:34 +0200572 v_rsp.sense_len = cpu_to_vhost32(cmd->tvc_vq,
573 se_cmd->scsi_sense_length);
Asias He3c63f662013-05-06 16:38:29 +0800574 memcpy(v_rsp.sense, cmd->tvc_sense_buf,
Michael S. Tsirkine72fd722014-11-23 18:01:34 +0200575 se_cmd->scsi_sense_length);
Nicholas Bellinger79c14142015-01-27 13:13:12 -0800576
Benjamin Coddingtona77ec832016-06-06 18:07:59 -0400577 iov_iter_init(&iov_iter, READ, &cmd->tvc_resp_iov,
Nicholas Bellinger79c14142015-01-27 13:13:12 -0800578 cmd->tvc_in_iovs, sizeof(v_rsp));
579 ret = copy_to_iter(&v_rsp, sizeof(v_rsp), &iov_iter);
580 if (likely(ret == sizeof(v_rsp))) {
Asias He3ab2e422013-04-27 11:16:48 +0800581 struct vhost_scsi_virtqueue *q;
Asias He3c63f662013-05-06 16:38:29 +0800582 vhost_add_used(cmd->tvc_vq, cmd->tvc_vq_desc, 0);
583 q = container_of(cmd->tvc_vq, struct vhost_scsi_virtqueue, vq);
Asias He3ab2e422013-04-27 11:16:48 +0800584 vq = q - vs->vqs;
Asias He1b7f3902013-02-06 13:20:59 +0800585 __set_bit(vq, signal);
586 } else
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700587 pr_err("Faulted on virtio_scsi_cmd_resp\n");
588
Mike Christie47a35652020-11-09 23:33:21 -0600589 vhost_scsi_release_cmd_res(se_cmd);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700590 }
591
Asias He1b7f3902013-02-06 13:20:59 +0800592 vq = -1;
593 while ((vq = find_next_bit(signal, VHOST_SCSI_MAX_VQ, vq + 1))
594 < VHOST_SCSI_MAX_VQ)
Asias He3ab2e422013-04-27 11:16:48 +0800595 vhost_signal(&vs->dev, &vs->vqs[vq].vq);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700596}
597
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800598static struct vhost_scsi_cmd *
Mike Christie25b98b62020-11-09 23:33:20 -0600599vhost_scsi_get_cmd(struct vhost_virtqueue *vq, struct vhost_scsi_tpg *tpg,
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800600 unsigned char *cdb, u64 scsi_tag, u16 lun, u8 task_attr,
601 u32 exp_data_len, int data_direction)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700602{
Mike Christie25b98b62020-11-09 23:33:20 -0600603 struct vhost_scsi_virtqueue *svq = container_of(vq,
604 struct vhost_scsi_virtqueue, vq);
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800605 struct vhost_scsi_cmd *cmd;
606 struct vhost_scsi_nexus *tv_nexus;
Nicholas Bellingerb1935f62014-02-22 18:08:24 -0800607 struct scatterlist *sg, *prot_sg;
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -0700608 struct page **pages;
Mike Christie25b98b62020-11-09 23:33:20 -0600609 int tag;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700610
Asias He98718312013-05-06 16:38:28 +0800611 tv_nexus = tpg->tpg_nexus;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700612 if (!tv_nexus) {
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800613 pr_err("Unable to locate active struct vhost_scsi_nexus\n");
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700614 return ERR_PTR(-EIO);
615 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700616
Mike Christie25b98b62020-11-09 23:33:20 -0600617 tag = sbitmap_get(&svq->scsi_tags, 0, false);
Nicholas Bellinger4a47d3a2013-09-23 11:42:28 -0700618 if (tag < 0) {
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800619 pr_err("Unable to obtain tag for vhost_scsi_cmd\n");
Nicholas Bellinger4a47d3a2013-09-23 11:42:28 -0700620 return ERR_PTR(-ENOMEM);
621 }
622
Mike Christie25b98b62020-11-09 23:33:20 -0600623 cmd = &svq->scsi_cmds[tag];
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -0700624 sg = cmd->tvc_sgl;
Nicholas Bellingerb1935f62014-02-22 18:08:24 -0800625 prot_sg = cmd->tvc_prot_sgl;
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -0700626 pages = cmd->tvc_upages;
Markus Elfring473f0b12017-05-20 13:48:44 +0200627 memset(cmd, 0, sizeof(*cmd));
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -0700628 cmd->tvc_sgl = sg;
Nicholas Bellingerb1935f62014-02-22 18:08:24 -0800629 cmd->tvc_prot_sgl = prot_sg;
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -0700630 cmd->tvc_upages = pages;
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -0700631 cmd->tvc_se_cmd.map_tag = tag;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800632 cmd->tvc_tag = scsi_tag;
633 cmd->tvc_lun = lun;
634 cmd->tvc_task_attr = task_attr;
Asias He3c63f662013-05-06 16:38:29 +0800635 cmd->tvc_exp_data_len = exp_data_len;
636 cmd->tvc_data_direction = data_direction;
637 cmd->tvc_nexus = tv_nexus;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800638 cmd->inflight = vhost_scsi_get_inflight(vq);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700639
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800640 memcpy(cmd->tvc_cdb, cdb, VHOST_SCSI_MAX_CDB_SIZE);
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800641
Asias He3c63f662013-05-06 16:38:29 +0800642 return cmd;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700643}
644
645/*
646 * Map a user memory range into a scatterlist
647 *
648 * Returns the number of scatterlist entries used or -errno on error.
649 */
Asias He683bd962013-05-06 16:38:27 +0800650static int
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800651vhost_scsi_map_to_sgl(struct vhost_scsi_cmd *cmd,
Al Viro2f240c42017-09-24 22:07:59 -0400652 struct iov_iter *iter,
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -0700653 struct scatterlist *sgl,
Nicholas Bellinger5a01d082014-02-22 18:34:08 -0800654 bool write)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700655{
Nicholas Bellingerb4078b52015-01-28 13:10:51 -0800656 struct page **pages = cmd->tvc_upages;
Al Viro2f240c42017-09-24 22:07:59 -0400657 struct scatterlist *sg = sgl;
658 ssize_t bytes;
659 size_t offset;
660 unsigned int npages = 0;
Asias He18100532013-01-22 11:20:27 +0800661
Al Viro2f240c42017-09-24 22:07:59 -0400662 bytes = iov_iter_get_pages(iter, pages, LONG_MAX,
663 VHOST_SCSI_PREALLOC_UPAGES, &offset);
Asias He18100532013-01-22 11:20:27 +0800664 /* No pages were pinned */
Al Viro2f240c42017-09-24 22:07:59 -0400665 if (bytes <= 0)
666 return bytes < 0 ? bytes : -EFAULT;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700667
Al Viro2f240c42017-09-24 22:07:59 -0400668 iov_iter_advance(iter, bytes);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700669
Al Viro2f240c42017-09-24 22:07:59 -0400670 while (bytes) {
671 unsigned n = min_t(unsigned, PAGE_SIZE - offset, bytes);
672 sg_set_page(sg++, pages[npages++], n, offset);
673 bytes -= n;
674 offset = 0;
675 }
676 return npages;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700677}
678
Asias He683bd962013-05-06 16:38:27 +0800679static int
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800680vhost_scsi_calc_sgls(struct iov_iter *iter, size_t bytes, int max_sgls)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700681{
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800682 int sgl_count = 0;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700683
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800684 if (!iter || !iter->iov) {
685 pr_err("%s: iter->iov is NULL, but expected bytes: %zu"
686 " present\n", __func__, bytes);
687 return -EINVAL;
Nicholas Bellinger5a01d082014-02-22 18:34:08 -0800688 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700689
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800690 sgl_count = iov_iter_npages(iter, 0xffff);
691 if (sgl_count > max_sgls) {
692 pr_err("%s: requested sgl_count: %d exceeds pre-allocated"
693 " max_sgls: %d\n", __func__, sgl_count, max_sgls);
694 return -EINVAL;
695 }
696 return sgl_count;
697}
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700698
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800699static int
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800700vhost_scsi_iov_to_sgl(struct vhost_scsi_cmd *cmd, bool write,
701 struct iov_iter *iter,
702 struct scatterlist *sg, int sg_count)
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800703{
Al Viro11d49e92017-09-24 18:36:44 -0400704 struct scatterlist *p = sg;
Al Viro2f240c42017-09-24 22:07:59 -0400705 int ret;
Nicholas Bellinger5a01d082014-02-22 18:34:08 -0800706
Al Viro2f240c42017-09-24 22:07:59 -0400707 while (iov_iter_count(iter)) {
708 ret = vhost_scsi_map_to_sgl(cmd, iter, sg, write);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700709 if (ret < 0) {
Al Viro11d49e92017-09-24 18:36:44 -0400710 while (p < sg) {
711 struct page *page = sg_page(p++);
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800712 if (page)
713 put_page(page);
714 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700715 return ret;
716 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700717 sg += ret;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700718 }
719 return 0;
720}
721
Nicholas Bellingere31885d2014-02-22 18:34:43 -0800722static int
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800723vhost_scsi_mapal(struct vhost_scsi_cmd *cmd,
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800724 size_t prot_bytes, struct iov_iter *prot_iter,
725 size_t data_bytes, struct iov_iter *data_iter)
Nicholas Bellingere31885d2014-02-22 18:34:43 -0800726{
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800727 int sgl_count, ret;
728 bool write = (cmd->tvc_data_direction == DMA_FROM_DEVICE);
Nicholas Bellingere31885d2014-02-22 18:34:43 -0800729
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800730 if (prot_bytes) {
731 sgl_count = vhost_scsi_calc_sgls(prot_iter, prot_bytes,
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800732 VHOST_SCSI_PREALLOC_PROT_SGLS);
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800733 if (sgl_count < 0)
734 return sgl_count;
Nicholas Bellingere31885d2014-02-22 18:34:43 -0800735
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800736 sg_init_table(cmd->tvc_prot_sgl, sgl_count);
737 cmd->tvc_prot_sgl_count = sgl_count;
738 pr_debug("%s prot_sg %p prot_sgl_count %u\n", __func__,
739 cmd->tvc_prot_sgl, cmd->tvc_prot_sgl_count);
Nicholas Bellingere31885d2014-02-22 18:34:43 -0800740
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800741 ret = vhost_scsi_iov_to_sgl(cmd, write, prot_iter,
742 cmd->tvc_prot_sgl,
743 cmd->tvc_prot_sgl_count);
Nicholas Bellingere31885d2014-02-22 18:34:43 -0800744 if (ret < 0) {
Nicholas Bellingere31885d2014-02-22 18:34:43 -0800745 cmd->tvc_prot_sgl_count = 0;
746 return ret;
747 }
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800748 }
749 sgl_count = vhost_scsi_calc_sgls(data_iter, data_bytes,
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800750 VHOST_SCSI_PREALLOC_SGLS);
Nicholas Bellingere8de56b2015-01-28 00:15:00 -0800751 if (sgl_count < 0)
752 return sgl_count;
753
754 sg_init_table(cmd->tvc_sgl, sgl_count);
755 cmd->tvc_sgl_count = sgl_count;
756 pr_debug("%s data_sg %p data_sgl_count %u\n", __func__,
757 cmd->tvc_sgl, cmd->tvc_sgl_count);
758
759 ret = vhost_scsi_iov_to_sgl(cmd, write, data_iter,
760 cmd->tvc_sgl, cmd->tvc_sgl_count);
761 if (ret < 0) {
762 cmd->tvc_sgl_count = 0;
763 return ret;
Nicholas Bellingere31885d2014-02-22 18:34:43 -0800764 }
765 return 0;
766}
767
Nicholas Bellinger46243862014-12-21 10:42:08 -0800768static int vhost_scsi_to_tcm_attr(int attr)
769{
770 switch (attr) {
771 case VIRTIO_SCSI_S_SIMPLE:
772 return TCM_SIMPLE_TAG;
773 case VIRTIO_SCSI_S_ORDERED:
774 return TCM_ORDERED_TAG;
775 case VIRTIO_SCSI_S_HEAD:
776 return TCM_HEAD_TAG;
777 case VIRTIO_SCSI_S_ACA:
778 return TCM_ACA_TAG;
779 default:
780 break;
781 }
782 return TCM_SIMPLE_TAG;
783}
784
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800785static void vhost_scsi_submission_work(struct work_struct *work)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700786{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -0800787 struct vhost_scsi_cmd *cmd =
788 container_of(work, struct vhost_scsi_cmd, work);
789 struct vhost_scsi_nexus *tv_nexus;
Asias He3c63f662013-05-06 16:38:29 +0800790 struct se_cmd *se_cmd = &cmd->tvc_se_cmd;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800791 struct scatterlist *sg_ptr, *sg_prot_ptr = NULL;
792 int rc;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700793
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800794 /* FIXME: BIDI operation */
Asias He3c63f662013-05-06 16:38:29 +0800795 if (cmd->tvc_sgl_count) {
796 sg_ptr = cmd->tvc_sgl;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800797
798 if (cmd->tvc_prot_sgl_count)
799 sg_prot_ptr = cmd->tvc_prot_sgl;
800 else
801 se_cmd->prot_pto = true;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700802 } else {
803 sg_ptr = NULL;
804 }
Asias He3c63f662013-05-06 16:38:29 +0800805 tv_nexus = cmd->tvc_nexus;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700806
Bart Van Assche649ee052015-04-14 13:26:44 +0200807 se_cmd->tag = 0;
Nicholas Bellinger9f0abc12012-10-01 18:40:55 -0700808 rc = target_submit_cmd_map_sgls(se_cmd, tv_nexus->tvn_se_sess,
Asias He3c63f662013-05-06 16:38:29 +0800809 cmd->tvc_cdb, &cmd->tvc_sense_buf[0],
810 cmd->tvc_lun, cmd->tvc_exp_data_len,
Nicholas Bellinger46243862014-12-21 10:42:08 -0800811 vhost_scsi_to_tcm_attr(cmd->tvc_task_attr),
812 cmd->tvc_data_direction, TARGET_SCF_ACK_KREF,
813 sg_ptr, cmd->tvc_sgl_count, NULL, 0, sg_prot_ptr,
814 cmd->tvc_prot_sgl_count);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700815 if (rc < 0) {
816 transport_send_check_condition_and_sense(se_cmd,
Nicholas Bellinger9f0abc12012-10-01 18:40:55 -0700817 TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE, 0);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700818 transport_generic_free_cmd(se_cmd, 0);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700819 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700820}
821
Asias He683bd962013-05-06 16:38:27 +0800822static void
823vhost_scsi_send_bad_target(struct vhost_scsi *vs,
824 struct vhost_virtqueue *vq,
825 int head, unsigned out)
Asias He637ab212013-04-10 15:06:15 +0800826{
827 struct virtio_scsi_cmd_resp __user *resp;
828 struct virtio_scsi_cmd_resp rsp;
829 int ret;
830
831 memset(&rsp, 0, sizeof(rsp));
832 rsp.response = VIRTIO_SCSI_S_BAD_TARGET;
833 resp = vq->iov[out].iov_base;
834 ret = __copy_to_user(resp, &rsp, sizeof(rsp));
835 if (!ret)
836 vhost_add_used_and_signal(&vs->dev, vq, head, 0);
837 else
838 pr_err("Faulted on virtio_scsi_cmd_resp\n");
839}
840
Bijan Mottahedeh3f8ca2e2018-09-17 17:09:48 -0700841static int
842vhost_scsi_get_desc(struct vhost_scsi *vs, struct vhost_virtqueue *vq,
843 struct vhost_scsi_ctx *vc)
844{
845 int ret = -ENXIO;
846
847 vc->head = vhost_get_vq_desc(vq, vq->iov,
848 ARRAY_SIZE(vq->iov), &vc->out, &vc->in,
849 NULL, NULL);
850
851 pr_debug("vhost_get_vq_desc: head: %d, out: %u in: %u\n",
852 vc->head, vc->out, vc->in);
853
854 /* On error, stop handling until the next kick. */
855 if (unlikely(vc->head < 0))
856 goto done;
857
858 /* Nothing new? Wait for eventfd to tell us they refilled. */
859 if (vc->head == vq->num) {
860 if (unlikely(vhost_enable_notify(&vs->dev, vq))) {
861 vhost_disable_notify(&vs->dev, vq);
862 ret = -EAGAIN;
863 }
864 goto done;
865 }
866
867 /*
868 * Get the size of request and response buffers.
Bijan Mottahedeh09d75832018-09-17 17:09:49 -0700869 * FIXME: Not correct for BIDI operation
Bijan Mottahedeh3f8ca2e2018-09-17 17:09:48 -0700870 */
871 vc->out_size = iov_length(vq->iov, vc->out);
872 vc->in_size = iov_length(&vq->iov[vc->out], vc->in);
873
874 /*
875 * Copy over the virtio-scsi request header, which for a
876 * ANY_LAYOUT enabled guest may span multiple iovecs, or a
877 * single iovec may contain both the header + outgoing
878 * WRITE payloads.
879 *
880 * copy_from_iter() will advance out_iter, so that it will
881 * point at the start of the outgoing WRITE payload, if
882 * DMA_TO_DEVICE is set.
883 */
884 iov_iter_init(&vc->out_iter, WRITE, vq->iov, vc->out, vc->out_size);
885 ret = 0;
886
887done:
888 return ret;
889}
890
891static int
892vhost_scsi_chk_size(struct vhost_virtqueue *vq, struct vhost_scsi_ctx *vc)
893{
894 if (unlikely(vc->in_size < vc->rsp_size)) {
895 vq_err(vq,
896 "Response buf too small, need min %zu bytes got %zu",
897 vc->rsp_size, vc->in_size);
898 return -EINVAL;
899 } else if (unlikely(vc->out_size < vc->req_size)) {
900 vq_err(vq,
901 "Request buf too small, need min %zu bytes got %zu",
902 vc->req_size, vc->out_size);
903 return -EIO;
904 }
905
906 return 0;
907}
908
909static int
910vhost_scsi_get_req(struct vhost_virtqueue *vq, struct vhost_scsi_ctx *vc,
911 struct vhost_scsi_tpg **tpgp)
912{
913 int ret = -EIO;
914
915 if (unlikely(!copy_from_iter_full(vc->req, vc->req_size,
Bijan Mottahedeh09d75832018-09-17 17:09:49 -0700916 &vc->out_iter))) {
wangyana691ffb2018-12-13 09:10:14 +0800917 vq_err(vq, "Faulted on copy_from_iter_full\n");
Bijan Mottahedeh09d75832018-09-17 17:09:49 -0700918 } else if (unlikely(*vc->lunp != 1)) {
Bijan Mottahedeh3f8ca2e2018-09-17 17:09:48 -0700919 /* virtio-scsi spec requires byte 0 of the lun to be 1 */
920 vq_err(vq, "Illegal virtio-scsi lun: %u\n", *vc->lunp);
Bijan Mottahedeh09d75832018-09-17 17:09:49 -0700921 } else {
Bijan Mottahedeh3f8ca2e2018-09-17 17:09:48 -0700922 struct vhost_scsi_tpg **vs_tpg, *tpg;
923
Eugenio Pérez247643f2020-03-31 21:27:57 +0200924 vs_tpg = vhost_vq_get_backend(vq); /* validated at handler entry */
Bijan Mottahedeh3f8ca2e2018-09-17 17:09:48 -0700925
926 tpg = READ_ONCE(vs_tpg[*vc->target]);
Bijan Mottahedeh09d75832018-09-17 17:09:49 -0700927 if (unlikely(!tpg)) {
Bijan Mottahedeh3f8ca2e2018-09-17 17:09:48 -0700928 vq_err(vq, "Target 0x%x does not exist\n", *vc->target);
Bijan Mottahedeh09d75832018-09-17 17:09:49 -0700929 } else {
Bijan Mottahedeh3f8ca2e2018-09-17 17:09:48 -0700930 if (tpgp)
931 *tpgp = tpg;
932 ret = 0;
933 }
934 }
935
936 return ret;
937}
938
Mike Christie18f1bec2020-11-09 23:33:22 -0600939static u16 vhost_buf_to_lun(u8 *lun_buf)
940{
941 return ((lun_buf[2] << 8) | lun_buf[3]) & 0x3FFF;
942}
943
Bijan Mottahedeh0d02dbd2018-09-17 17:09:47 -0700944static void
Bijan Mottahedeh09d75832018-09-17 17:09:49 -0700945vhost_scsi_handle_vq(struct vhost_scsi *vs, struct vhost_virtqueue *vq)
946{
947 struct vhost_scsi_tpg **vs_tpg, *tpg;
948 struct virtio_scsi_cmd_req v_req;
949 struct virtio_scsi_cmd_req_pi v_req_pi;
950 struct vhost_scsi_ctx vc;
951 struct vhost_scsi_cmd *cmd;
952 struct iov_iter in_iter, prot_iter, data_iter;
953 u64 tag;
954 u32 exp_data_len, data_direction;
Jason Wangc1ea02f2019-05-17 00:29:52 -0400955 int ret, prot_bytes, c = 0;
Bijan Mottahedeh09d75832018-09-17 17:09:49 -0700956 u16 lun;
957 u8 task_attr;
958 bool t10_pi = vhost_has_feature(vq, VIRTIO_SCSI_F_T10_PI);
959 void *cdb;
960
961 mutex_lock(&vq->mutex);
962 /*
963 * We can handle the vq only after the endpoint is setup by calling the
964 * VHOST_SCSI_SET_ENDPOINT ioctl.
965 */
Eugenio Pérez247643f2020-03-31 21:27:57 +0200966 vs_tpg = vhost_vq_get_backend(vq);
Bijan Mottahedeh09d75832018-09-17 17:09:49 -0700967 if (!vs_tpg)
968 goto out;
969
970 memset(&vc, 0, sizeof(vc));
971 vc.rsp_size = sizeof(struct virtio_scsi_cmd_resp);
972
973 vhost_disable_notify(&vs->dev, vq);
974
Jason Wangc1ea02f2019-05-17 00:29:52 -0400975 do {
Bijan Mottahedeh09d75832018-09-17 17:09:49 -0700976 ret = vhost_scsi_get_desc(vs, vq, &vc);
977 if (ret)
978 goto err;
979
980 /*
981 * Setup pointers and values based upon different virtio-scsi
982 * request header if T10_PI is enabled in KVM guest.
983 */
984 if (t10_pi) {
985 vc.req = &v_req_pi;
986 vc.req_size = sizeof(v_req_pi);
987 vc.lunp = &v_req_pi.lun[0];
988 vc.target = &v_req_pi.lun[1];
989 } else {
990 vc.req = &v_req;
991 vc.req_size = sizeof(v_req);
992 vc.lunp = &v_req.lun[0];
993 vc.target = &v_req.lun[1];
994 }
995
996 /*
997 * Validate the size of request and response buffers.
998 * Check for a sane response buffer so we can report
999 * early errors back to the guest.
1000 */
1001 ret = vhost_scsi_chk_size(vq, &vc);
1002 if (ret)
1003 goto err;
1004
1005 ret = vhost_scsi_get_req(vq, &vc, &tpg);
1006 if (ret)
1007 goto err;
1008
1009 ret = -EIO; /* bad target on any error from here on */
1010
1011 /*
1012 * Determine data_direction by calculating the total outgoing
1013 * iovec sizes + incoming iovec sizes vs. virtio-scsi request +
1014 * response headers respectively.
1015 *
1016 * For DMA_TO_DEVICE this is out_iter, which is already pointing
1017 * to the right place.
1018 *
1019 * For DMA_FROM_DEVICE, the iovec will be just past the end
1020 * of the virtio-scsi response header in either the same
1021 * or immediately following iovec.
1022 *
1023 * Any associated T10_PI bytes for the outgoing / incoming
1024 * payloads are included in calculation of exp_data_len here.
1025 */
1026 prot_bytes = 0;
1027
1028 if (vc.out_size > vc.req_size) {
1029 data_direction = DMA_TO_DEVICE;
1030 exp_data_len = vc.out_size - vc.req_size;
1031 data_iter = vc.out_iter;
1032 } else if (vc.in_size > vc.rsp_size) {
1033 data_direction = DMA_FROM_DEVICE;
1034 exp_data_len = vc.in_size - vc.rsp_size;
1035
1036 iov_iter_init(&in_iter, READ, &vq->iov[vc.out], vc.in,
1037 vc.rsp_size + exp_data_len);
1038 iov_iter_advance(&in_iter, vc.rsp_size);
1039 data_iter = in_iter;
1040 } else {
1041 data_direction = DMA_NONE;
1042 exp_data_len = 0;
1043 }
1044 /*
1045 * If T10_PI header + payload is present, setup prot_iter values
1046 * and recalculate data_iter for vhost_scsi_mapal() mapping to
1047 * host scatterlists via get_user_pages_fast().
1048 */
1049 if (t10_pi) {
1050 if (v_req_pi.pi_bytesout) {
1051 if (data_direction != DMA_TO_DEVICE) {
1052 vq_err(vq, "Received non zero pi_bytesout,"
1053 " but wrong data_direction\n");
1054 goto err;
1055 }
1056 prot_bytes = vhost32_to_cpu(vq, v_req_pi.pi_bytesout);
1057 } else if (v_req_pi.pi_bytesin) {
1058 if (data_direction != DMA_FROM_DEVICE) {
1059 vq_err(vq, "Received non zero pi_bytesin,"
1060 " but wrong data_direction\n");
1061 goto err;
1062 }
1063 prot_bytes = vhost32_to_cpu(vq, v_req_pi.pi_bytesin);
1064 }
1065 /*
1066 * Set prot_iter to data_iter and truncate it to
1067 * prot_bytes, and advance data_iter past any
1068 * preceeding prot_bytes that may be present.
1069 *
1070 * Also fix up the exp_data_len to reflect only the
1071 * actual data payload length.
1072 */
1073 if (prot_bytes) {
1074 exp_data_len -= prot_bytes;
1075 prot_iter = data_iter;
1076 iov_iter_truncate(&prot_iter, prot_bytes);
1077 iov_iter_advance(&data_iter, prot_bytes);
1078 }
1079 tag = vhost64_to_cpu(vq, v_req_pi.tag);
1080 task_attr = v_req_pi.task_attr;
1081 cdb = &v_req_pi.cdb[0];
Mike Christie18f1bec2020-11-09 23:33:22 -06001082 lun = vhost_buf_to_lun(v_req_pi.lun);
Bijan Mottahedeh09d75832018-09-17 17:09:49 -07001083 } else {
1084 tag = vhost64_to_cpu(vq, v_req.tag);
1085 task_attr = v_req.task_attr;
1086 cdb = &v_req.cdb[0];
Mike Christie18f1bec2020-11-09 23:33:22 -06001087 lun = vhost_buf_to_lun(v_req.lun);
Bijan Mottahedeh09d75832018-09-17 17:09:49 -07001088 }
1089 /*
1090 * Check that the received CDB size does not exceeded our
1091 * hardcoded max for vhost-scsi, then get a pre-allocated
1092 * cmd descriptor for the new virtio-scsi tag.
1093 *
1094 * TODO what if cdb was too small for varlen cdb header?
1095 */
1096 if (unlikely(scsi_command_size(cdb) > VHOST_SCSI_MAX_CDB_SIZE)) {
1097 vq_err(vq, "Received SCSI CDB with command_size: %d that"
1098 " exceeds SCSI_MAX_VARLEN_CDB_SIZE: %d\n",
1099 scsi_command_size(cdb), VHOST_SCSI_MAX_CDB_SIZE);
1100 goto err;
1101 }
Mike Christie25b98b62020-11-09 23:33:20 -06001102 cmd = vhost_scsi_get_cmd(vq, tpg, cdb, tag, lun, task_attr,
Bijan Mottahedeh09d75832018-09-17 17:09:49 -07001103 exp_data_len + prot_bytes,
1104 data_direction);
1105 if (IS_ERR(cmd)) {
Mike Christie25b98b62020-11-09 23:33:20 -06001106 vq_err(vq, "vhost_scsi_get_cmd failed %ld\n",
Bijan Mottahedeh09d75832018-09-17 17:09:49 -07001107 PTR_ERR(cmd));
1108 goto err;
1109 }
1110 cmd->tvc_vhost = vs;
1111 cmd->tvc_vq = vq;
1112 cmd->tvc_resp_iov = vq->iov[vc.out];
1113 cmd->tvc_in_iovs = vc.in;
1114
1115 pr_debug("vhost_scsi got command opcode: %#02x, lun: %d\n",
1116 cmd->tvc_cdb[0], cmd->tvc_lun);
1117 pr_debug("cmd: %p exp_data_len: %d, prot_bytes: %d data_direction:"
1118 " %d\n", cmd, exp_data_len, prot_bytes, data_direction);
1119
1120 if (data_direction != DMA_NONE) {
1121 if (unlikely(vhost_scsi_mapal(cmd, prot_bytes,
1122 &prot_iter, exp_data_len,
1123 &data_iter))) {
1124 vq_err(vq, "Failed to map iov to sgl\n");
Mike Christie47a35652020-11-09 23:33:21 -06001125 vhost_scsi_release_cmd_res(&cmd->tvc_se_cmd);
Bijan Mottahedeh09d75832018-09-17 17:09:49 -07001126 goto err;
1127 }
1128 }
1129 /*
1130 * Save the descriptor from vhost_get_vq_desc() to be used to
1131 * complete the virtio-scsi request in TCM callback context via
1132 * vhost_scsi_queue_data_in() and vhost_scsi_queue_status()
1133 */
1134 cmd->tvc_vq_desc = vc.head;
1135 /*
1136 * Dispatch cmd descriptor for cmwq execution in process
1137 * context provided by vhost_scsi_workqueue. This also ensures
1138 * cmd is executed on the same kworker CPU as this vhost
1139 * thread to gain positive L2 cache locality effects.
1140 */
1141 INIT_WORK(&cmd->work, vhost_scsi_submission_work);
1142 queue_work(vhost_scsi_workqueue, &cmd->work);
1143 ret = 0;
1144err:
1145 /*
1146 * ENXIO: No more requests, or read error, wait for next kick
1147 * EINVAL: Invalid response buffer, drop the request
1148 * EIO: Respond with bad target
1149 * EAGAIN: Pending request
1150 */
1151 if (ret == -ENXIO)
1152 break;
1153 else if (ret == -EIO)
1154 vhost_scsi_send_bad_target(vs, vq, vc.head, vc.out);
Jason Wangc1ea02f2019-05-17 00:29:52 -04001155 } while (likely(!vhost_exceeds_weight(vq, ++c, 0)));
Bijan Mottahedeh09d75832018-09-17 17:09:49 -07001156out:
1157 mutex_unlock(&vq->mutex);
1158}
1159
1160static void
Mike Christieefd838f2020-11-09 23:33:23 -06001161vhost_scsi_send_tmf_resp(struct vhost_scsi *vs, struct vhost_virtqueue *vq,
1162 int in_iovs, int vq_desc, struct iovec *resp_iov,
1163 int tmf_resp_code)
Bijan Mottahedeh0d02dbd2018-09-17 17:09:47 -07001164{
Bijan Mottahedeh0d02dbd2018-09-17 17:09:47 -07001165 struct virtio_scsi_ctrl_tmf_resp rsp;
Bijan Mottahedeh8e5dadf2018-12-03 16:48:23 -08001166 struct iov_iter iov_iter;
Bijan Mottahedeh0d02dbd2018-09-17 17:09:47 -07001167 int ret;
1168
1169 pr_debug("%s\n", __func__);
1170 memset(&rsp, 0, sizeof(rsp));
Mike Christieefd838f2020-11-09 23:33:23 -06001171 rsp.response = tmf_resp_code;
Bijan Mottahedeh8e5dadf2018-12-03 16:48:23 -08001172
Mike Christieefd838f2020-11-09 23:33:23 -06001173 iov_iter_init(&iov_iter, READ, resp_iov, in_iovs, sizeof(rsp));
Bijan Mottahedeh8e5dadf2018-12-03 16:48:23 -08001174
1175 ret = copy_to_iter(&rsp, sizeof(rsp), &iov_iter);
1176 if (likely(ret == sizeof(rsp)))
Mike Christieefd838f2020-11-09 23:33:23 -06001177 vhost_add_used_and_signal(&vs->dev, vq, vq_desc, 0);
Bijan Mottahedeh0d02dbd2018-09-17 17:09:47 -07001178 else
1179 pr_err("Faulted on virtio_scsi_ctrl_tmf_resp\n");
1180}
1181
Mike Christieefd838f2020-11-09 23:33:23 -06001182static void vhost_scsi_tmf_resp_work(struct vhost_work *work)
1183{
1184 struct vhost_scsi_tmf *tmf = container_of(work, struct vhost_scsi_tmf,
1185 vwork);
1186 int resp_code;
1187
Mike Christieb4fffc12020-11-20 09:50:59 -06001188 if (tmf->scsi_resp == TMR_FUNCTION_COMPLETE)
Mike Christieefd838f2020-11-09 23:33:23 -06001189 resp_code = VIRTIO_SCSI_S_FUNCTION_SUCCEEDED;
1190 else
1191 resp_code = VIRTIO_SCSI_S_FUNCTION_REJECTED;
1192
1193 vhost_scsi_send_tmf_resp(tmf->vhost, &tmf->svq->vq, tmf->in_iovs,
1194 tmf->vq_desc, &tmf->resp_iov, resp_code);
1195 vhost_scsi_release_tmf_res(tmf);
1196}
1197
1198static void
1199vhost_scsi_handle_tmf(struct vhost_scsi *vs, struct vhost_scsi_tpg *tpg,
1200 struct vhost_virtqueue *vq,
1201 struct virtio_scsi_ctrl_tmf_req *vtmf,
1202 struct vhost_scsi_ctx *vc)
1203{
1204 struct vhost_scsi_virtqueue *svq = container_of(vq,
1205 struct vhost_scsi_virtqueue, vq);
1206 struct vhost_scsi_tmf *tmf;
1207
1208 if (vhost32_to_cpu(vq, vtmf->subtype) !=
1209 VIRTIO_SCSI_T_TMF_LOGICAL_UNIT_RESET)
1210 goto send_reject;
1211
1212 if (!tpg->tpg_nexus || !tpg->tpg_nexus->tvn_se_sess) {
1213 pr_err("Unable to locate active struct vhost_scsi_nexus for LUN RESET.\n");
1214 goto send_reject;
1215 }
1216
1217 mutex_lock(&tpg->tv_tpg_mutex);
1218 if (list_empty(&tpg->tmf_queue)) {
1219 pr_err("Missing reserve TMF. Could not handle LUN RESET.\n");
1220 mutex_unlock(&tpg->tv_tpg_mutex);
1221 goto send_reject;
1222 }
1223
1224 tmf = list_first_entry(&tpg->tmf_queue, struct vhost_scsi_tmf,
1225 queue_entry);
1226 list_del_init(&tmf->queue_entry);
1227 mutex_unlock(&tpg->tv_tpg_mutex);
1228
1229 tmf->tpg = tpg;
1230 tmf->vhost = vs;
1231 tmf->svq = svq;
1232 tmf->resp_iov = vq->iov[vc->out];
1233 tmf->vq_desc = vc->head;
1234 tmf->in_iovs = vc->in;
1235 tmf->inflight = vhost_scsi_get_inflight(vq);
1236
1237 if (target_submit_tmr(&tmf->se_cmd, tpg->tpg_nexus->tvn_se_sess, NULL,
1238 vhost_buf_to_lun(vtmf->lun), NULL,
1239 TMR_LUN_RESET, GFP_KERNEL, 0,
1240 TARGET_SCF_ACK_KREF) < 0) {
1241 vhost_scsi_release_tmf_res(tmf);
1242 goto send_reject;
1243 }
1244
1245 return;
1246
1247send_reject:
1248 vhost_scsi_send_tmf_resp(vs, vq, vc->in, vc->head, &vq->iov[vc->out],
1249 VIRTIO_SCSI_S_FUNCTION_REJECTED);
1250}
1251
Bijan Mottahedeh0d02dbd2018-09-17 17:09:47 -07001252static void
1253vhost_scsi_send_an_resp(struct vhost_scsi *vs,
Bijan Mottahedeh3f8ca2e2018-09-17 17:09:48 -07001254 struct vhost_virtqueue *vq,
1255 struct vhost_scsi_ctx *vc)
Bijan Mottahedeh0d02dbd2018-09-17 17:09:47 -07001256{
Bijan Mottahedeh0d02dbd2018-09-17 17:09:47 -07001257 struct virtio_scsi_ctrl_an_resp rsp;
Bijan Mottahedeh8e5dadf2018-12-03 16:48:23 -08001258 struct iov_iter iov_iter;
Bijan Mottahedeh0d02dbd2018-09-17 17:09:47 -07001259 int ret;
1260
1261 pr_debug("%s\n", __func__);
1262 memset(&rsp, 0, sizeof(rsp)); /* event_actual = 0 */
1263 rsp.response = VIRTIO_SCSI_S_OK;
Bijan Mottahedeh8e5dadf2018-12-03 16:48:23 -08001264
1265 iov_iter_init(&iov_iter, READ, &vq->iov[vc->out], vc->in, sizeof(rsp));
1266
1267 ret = copy_to_iter(&rsp, sizeof(rsp), &iov_iter);
1268 if (likely(ret == sizeof(rsp)))
Bijan Mottahedeh3f8ca2e2018-09-17 17:09:48 -07001269 vhost_add_used_and_signal(&vs->dev, vq, vc->head, 0);
Bijan Mottahedeh0d02dbd2018-09-17 17:09:47 -07001270 else
1271 pr_err("Faulted on virtio_scsi_ctrl_an_resp\n");
1272}
1273
1274static void
1275vhost_scsi_ctl_handle_vq(struct vhost_scsi *vs, struct vhost_virtqueue *vq)
1276{
Mike Christieefd838f2020-11-09 23:33:23 -06001277 struct vhost_scsi_tpg *tpg;
Bijan Mottahedeh0d02dbd2018-09-17 17:09:47 -07001278 union {
1279 __virtio32 type;
1280 struct virtio_scsi_ctrl_an_req an;
1281 struct virtio_scsi_ctrl_tmf_req tmf;
1282 } v_req;
Bijan Mottahedeh3f8ca2e2018-09-17 17:09:48 -07001283 struct vhost_scsi_ctx vc;
1284 size_t typ_size;
Jason Wangc1ea02f2019-05-17 00:29:52 -04001285 int ret, c = 0;
Bijan Mottahedeh0d02dbd2018-09-17 17:09:47 -07001286
1287 mutex_lock(&vq->mutex);
1288 /*
1289 * We can handle the vq only after the endpoint is setup by calling the
1290 * VHOST_SCSI_SET_ENDPOINT ioctl.
1291 */
Eugenio Pérez247643f2020-03-31 21:27:57 +02001292 if (!vhost_vq_get_backend(vq))
Bijan Mottahedeh0d02dbd2018-09-17 17:09:47 -07001293 goto out;
1294
Bijan Mottahedeh3f8ca2e2018-09-17 17:09:48 -07001295 memset(&vc, 0, sizeof(vc));
1296
Bijan Mottahedeh0d02dbd2018-09-17 17:09:47 -07001297 vhost_disable_notify(&vs->dev, vq);
1298
Jason Wangc1ea02f2019-05-17 00:29:52 -04001299 do {
Bijan Mottahedeh3f8ca2e2018-09-17 17:09:48 -07001300 ret = vhost_scsi_get_desc(vs, vq, &vc);
1301 if (ret)
1302 goto err;
Bijan Mottahedeh0d02dbd2018-09-17 17:09:47 -07001303
1304 /*
Bijan Mottahedeh3f8ca2e2018-09-17 17:09:48 -07001305 * Get the request type first in order to setup
1306 * other parameters dependent on the type.
Bijan Mottahedeh0d02dbd2018-09-17 17:09:47 -07001307 */
Bijan Mottahedeh3f8ca2e2018-09-17 17:09:48 -07001308 vc.req = &v_req.type;
Bijan Mottahedeh0d02dbd2018-09-17 17:09:47 -07001309 typ_size = sizeof(v_req.type);
1310
Bijan Mottahedeh3f8ca2e2018-09-17 17:09:48 -07001311 if (unlikely(!copy_from_iter_full(vc.req, typ_size,
1312 &vc.out_iter))) {
Bijan Mottahedeh0d02dbd2018-09-17 17:09:47 -07001313 vq_err(vq, "Faulted on copy_from_iter tmf type\n");
1314 /*
Bijan Mottahedeh3f8ca2e2018-09-17 17:09:48 -07001315 * The size of the response buffer depends on the
1316 * request type and must be validated against it.
Bijan Mottahedeh0d02dbd2018-09-17 17:09:47 -07001317 * Since the request type is not known, don't send
1318 * a response.
1319 */
1320 continue;
1321 }
1322
Michael S. Tsirkin295c1b92020-07-10 06:36:16 -04001323 switch (vhost32_to_cpu(vq, v_req.type)) {
Bijan Mottahedeh0d02dbd2018-09-17 17:09:47 -07001324 case VIRTIO_SCSI_T_TMF:
Bijan Mottahedeh3f8ca2e2018-09-17 17:09:48 -07001325 vc.req = &v_req.tmf;
1326 vc.req_size = sizeof(struct virtio_scsi_ctrl_tmf_req);
1327 vc.rsp_size = sizeof(struct virtio_scsi_ctrl_tmf_resp);
1328 vc.lunp = &v_req.tmf.lun[0];
1329 vc.target = &v_req.tmf.lun[1];
Bijan Mottahedeh0d02dbd2018-09-17 17:09:47 -07001330 break;
1331 case VIRTIO_SCSI_T_AN_QUERY:
1332 case VIRTIO_SCSI_T_AN_SUBSCRIBE:
Bijan Mottahedeh3f8ca2e2018-09-17 17:09:48 -07001333 vc.req = &v_req.an;
1334 vc.req_size = sizeof(struct virtio_scsi_ctrl_an_req);
1335 vc.rsp_size = sizeof(struct virtio_scsi_ctrl_an_resp);
1336 vc.lunp = &v_req.an.lun[0];
1337 vc.target = NULL;
Bijan Mottahedeh0d02dbd2018-09-17 17:09:47 -07001338 break;
1339 default:
1340 vq_err(vq, "Unknown control request %d", v_req.type);
1341 continue;
1342 }
1343
1344 /*
Bijan Mottahedeh3f8ca2e2018-09-17 17:09:48 -07001345 * Validate the size of request and response buffers.
1346 * Check for a sane response buffer so we can report
1347 * early errors back to the guest.
Bijan Mottahedeh0d02dbd2018-09-17 17:09:47 -07001348 */
Bijan Mottahedeh3f8ca2e2018-09-17 17:09:48 -07001349 ret = vhost_scsi_chk_size(vq, &vc);
1350 if (ret)
1351 goto err;
Bijan Mottahedeh0d02dbd2018-09-17 17:09:47 -07001352
Bijan Mottahedeh3f8ca2e2018-09-17 17:09:48 -07001353 /*
1354 * Get the rest of the request now that its size is known.
1355 */
1356 vc.req += typ_size;
1357 vc.req_size -= typ_size;
Bijan Mottahedeh0d02dbd2018-09-17 17:09:47 -07001358
Mike Christieefd838f2020-11-09 23:33:23 -06001359 ret = vhost_scsi_get_req(vq, &vc, &tpg);
Bijan Mottahedeh3f8ca2e2018-09-17 17:09:48 -07001360 if (ret)
1361 goto err;
Bijan Mottahedeh0d02dbd2018-09-17 17:09:47 -07001362
Bijan Mottahedeh3f8ca2e2018-09-17 17:09:48 -07001363 if (v_req.type == VIRTIO_SCSI_T_TMF)
Mike Christieefd838f2020-11-09 23:33:23 -06001364 vhost_scsi_handle_tmf(vs, tpg, vq, &v_req.tmf, &vc);
Bijan Mottahedeh3f8ca2e2018-09-17 17:09:48 -07001365 else
1366 vhost_scsi_send_an_resp(vs, vq, &vc);
1367err:
1368 /*
1369 * ENXIO: No more requests, or read error, wait for next kick
1370 * EINVAL: Invalid response buffer, drop the request
1371 * EIO: Respond with bad target
1372 * EAGAIN: Pending request
1373 */
1374 if (ret == -ENXIO)
1375 break;
1376 else if (ret == -EIO)
1377 vhost_scsi_send_bad_target(vs, vq, vc.head, vc.out);
Jason Wangc1ea02f2019-05-17 00:29:52 -04001378 } while (likely(!vhost_exceeds_weight(vq, ++c, 0)));
Bijan Mottahedeh0d02dbd2018-09-17 17:09:47 -07001379out:
1380 mutex_unlock(&vq->mutex);
1381}
1382
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001383static void vhost_scsi_ctl_handle_kick(struct vhost_work *work)
1384{
Bijan Mottahedeh0d02dbd2018-09-17 17:09:47 -07001385 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
1386 poll.work);
1387 struct vhost_scsi *vs = container_of(vq->dev, struct vhost_scsi, dev);
1388
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001389 pr_debug("%s: The handling func for control queue.\n", __func__);
Bijan Mottahedeh0d02dbd2018-09-17 17:09:47 -07001390 vhost_scsi_ctl_handle_vq(vs, vq);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001391}
1392
Asias He683bd962013-05-06 16:38:27 +08001393static void
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001394vhost_scsi_send_evt(struct vhost_scsi *vs,
1395 struct vhost_scsi_tpg *tpg,
Asias He683bd962013-05-06 16:38:27 +08001396 struct se_lun *lun,
1397 u32 event,
1398 u32 reason)
Asias Hea6c9af82013-04-25 15:35:21 +08001399{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001400 struct vhost_scsi_evt *evt;
Asias Hea6c9af82013-04-25 15:35:21 +08001401
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001402 evt = vhost_scsi_allocate_evt(vs, event, reason);
Asias Hea6c9af82013-04-25 15:35:21 +08001403 if (!evt)
1404 return;
1405
1406 if (tpg && lun) {
1407 /* TODO: share lun setup code with virtio-scsi.ko */
1408 /*
1409 * Note: evt->event is zeroed when we allocate it and
1410 * lun[4-7] need to be zero according to virtio-scsi spec.
1411 */
1412 evt->event.lun[0] = 0x01;
Dan Carpenter59c816c2015-02-05 10:37:33 +03001413 evt->event.lun[1] = tpg->tport_tpgt;
Asias Hea6c9af82013-04-25 15:35:21 +08001414 if (lun->unpacked_lun >= 256)
1415 evt->event.lun[2] = lun->unpacked_lun >> 8 | 0x40 ;
1416 evt->event.lun[3] = lun->unpacked_lun & 0xFF;
1417 }
1418
1419 llist_add(&evt->list, &vs->vs_event_list);
1420 vhost_work_queue(&vs->dev, &vs->vs_event_work);
1421}
1422
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001423static void vhost_scsi_evt_handle_kick(struct vhost_work *work)
1424{
Asias Hea6c9af82013-04-25 15:35:21 +08001425 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
1426 poll.work);
1427 struct vhost_scsi *vs = container_of(vq->dev, struct vhost_scsi, dev);
1428
1429 mutex_lock(&vq->mutex);
Eugenio Pérez247643f2020-03-31 21:27:57 +02001430 if (!vhost_vq_get_backend(vq))
Asias Hea6c9af82013-04-25 15:35:21 +08001431 goto out;
1432
1433 if (vs->vs_events_missed)
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001434 vhost_scsi_send_evt(vs, NULL, NULL, VIRTIO_SCSI_T_NO_EVENT, 0);
Asias Hea6c9af82013-04-25 15:35:21 +08001435out:
1436 mutex_unlock(&vq->mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001437}
1438
1439static void vhost_scsi_handle_kick(struct vhost_work *work)
1440{
1441 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
1442 poll.work);
1443 struct vhost_scsi *vs = container_of(vq->dev, struct vhost_scsi, dev);
1444
Asias He1b7f3902013-02-06 13:20:59 +08001445 vhost_scsi_handle_vq(vs, vq);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001446}
1447
Asias He4f7f46d2013-04-03 14:17:37 +08001448static void vhost_scsi_flush_vq(struct vhost_scsi *vs, int index)
1449{
Asias He3ab2e422013-04-27 11:16:48 +08001450 vhost_poll_flush(&vs->vqs[index].vq.poll);
Asias He4f7f46d2013-04-03 14:17:37 +08001451}
1452
Michael S. Tsirkin3dfbff32013-04-28 15:38:52 +03001453/* Callers must hold dev mutex */
Asias He4f7f46d2013-04-03 14:17:37 +08001454static void vhost_scsi_flush(struct vhost_scsi *vs)
1455{
Asias Hef2f0173d2013-04-27 11:16:49 +08001456 struct vhost_scsi_inflight *old_inflight[VHOST_SCSI_MAX_VQ];
Asias He4f7f46d2013-04-03 14:17:37 +08001457 int i;
1458
Asias Hef2f0173d2013-04-27 11:16:49 +08001459 /* Init new inflight and remember the old inflight */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001460 vhost_scsi_init_inflight(vs, old_inflight);
Asias Hef2f0173d2013-04-27 11:16:49 +08001461
1462 /*
1463 * The inflight->kref was initialized to 1. We decrement it here to
1464 * indicate the start of the flush operation so that it will reach 0
1465 * when all the reqs are finished.
1466 */
1467 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++)
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001468 kref_put(&old_inflight[i]->kref, vhost_scsi_done_inflight);
Asias Hef2f0173d2013-04-27 11:16:49 +08001469
1470 /* Flush both the vhost poll and vhost work */
Asias He4f7f46d2013-04-03 14:17:37 +08001471 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++)
1472 vhost_scsi_flush_vq(vs, i);
1473 vhost_work_flush(&vs->dev, &vs->vs_completion_work);
Asias Hea6c9af82013-04-25 15:35:21 +08001474 vhost_work_flush(&vs->dev, &vs->vs_event_work);
Asias Hef2f0173d2013-04-27 11:16:49 +08001475
1476 /* Wait for all reqs issued before the flush to be finished */
1477 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++)
1478 wait_for_completion(&old_inflight[i]->comp);
Asias He4f7f46d2013-04-03 14:17:37 +08001479}
1480
Mike Christie25b98b62020-11-09 23:33:20 -06001481static void vhost_scsi_destroy_vq_cmds(struct vhost_virtqueue *vq)
1482{
1483 struct vhost_scsi_virtqueue *svq = container_of(vq,
1484 struct vhost_scsi_virtqueue, vq);
1485 struct vhost_scsi_cmd *tv_cmd;
1486 unsigned int i;
1487
1488 if (!svq->scsi_cmds)
1489 return;
1490
1491 for (i = 0; i < svq->max_cmds; i++) {
1492 tv_cmd = &svq->scsi_cmds[i];
1493
1494 kfree(tv_cmd->tvc_sgl);
1495 kfree(tv_cmd->tvc_prot_sgl);
1496 kfree(tv_cmd->tvc_upages);
1497 }
1498
1499 sbitmap_free(&svq->scsi_tags);
1500 kfree(svq->scsi_cmds);
1501 svq->scsi_cmds = NULL;
1502}
1503
1504static int vhost_scsi_setup_vq_cmds(struct vhost_virtqueue *vq, int max_cmds)
1505{
1506 struct vhost_scsi_virtqueue *svq = container_of(vq,
1507 struct vhost_scsi_virtqueue, vq);
1508 struct vhost_scsi_cmd *tv_cmd;
1509 unsigned int i;
1510
1511 if (svq->scsi_cmds)
1512 return 0;
1513
1514 if (sbitmap_init_node(&svq->scsi_tags, max_cmds, -1, GFP_KERNEL,
1515 NUMA_NO_NODE))
1516 return -ENOMEM;
1517 svq->max_cmds = max_cmds;
1518
1519 svq->scsi_cmds = kcalloc(max_cmds, sizeof(*tv_cmd), GFP_KERNEL);
1520 if (!svq->scsi_cmds) {
1521 sbitmap_free(&svq->scsi_tags);
1522 return -ENOMEM;
1523 }
1524
1525 for (i = 0; i < max_cmds; i++) {
1526 tv_cmd = &svq->scsi_cmds[i];
1527
1528 tv_cmd->tvc_sgl = kcalloc(VHOST_SCSI_PREALLOC_SGLS,
1529 sizeof(struct scatterlist),
1530 GFP_KERNEL);
1531 if (!tv_cmd->tvc_sgl) {
1532 pr_err("Unable to allocate tv_cmd->tvc_sgl\n");
1533 goto out;
1534 }
1535
1536 tv_cmd->tvc_upages = kcalloc(VHOST_SCSI_PREALLOC_UPAGES,
1537 sizeof(struct page *),
1538 GFP_KERNEL);
1539 if (!tv_cmd->tvc_upages) {
1540 pr_err("Unable to allocate tv_cmd->tvc_upages\n");
1541 goto out;
1542 }
1543
1544 tv_cmd->tvc_prot_sgl = kcalloc(VHOST_SCSI_PREALLOC_PROT_SGLS,
1545 sizeof(struct scatterlist),
1546 GFP_KERNEL);
1547 if (!tv_cmd->tvc_prot_sgl) {
1548 pr_err("Unable to allocate tv_cmd->tvc_prot_sgl\n");
1549 goto out;
1550 }
1551 }
1552 return 0;
1553out:
1554 vhost_scsi_destroy_vq_cmds(vq);
1555 return -ENOMEM;
1556}
1557
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001558/*
1559 * Called from vhost_scsi_ioctl() context to walk the list of available
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001560 * vhost_scsi_tpg with an active struct vhost_scsi_nexus
Asias Hef2b7daf2013-04-25 15:35:20 +08001561 *
1562 * The lock nesting rule is:
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001563 * vhost_scsi_mutex -> vs->dev.mutex -> tpg->tv_tpg_mutex -> vq->mutex
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001564 */
Asias He683bd962013-05-06 16:38:27 +08001565static int
1566vhost_scsi_set_endpoint(struct vhost_scsi *vs,
1567 struct vhost_scsi_target *t)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001568{
Nicholas Bellingerab8edab2014-10-08 06:19:20 +00001569 struct se_portal_group *se_tpg;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001570 struct vhost_scsi_tport *tv_tport;
1571 struct vhost_scsi_tpg *tpg;
1572 struct vhost_scsi_tpg **vs_tpg;
Asias He4f7f46d2013-04-03 14:17:37 +08001573 struct vhost_virtqueue *vq;
1574 int index, ret, i, len;
Asias He67e18cf2013-02-05 12:31:57 +08001575 bool match = false;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001576
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001577 mutex_lock(&vhost_scsi_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001578 mutex_lock(&vs->dev.mutex);
Asias Hef2b7daf2013-04-25 15:35:20 +08001579
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001580 /* Verify that ring has been setup correctly. */
1581 for (index = 0; index < vs->dev.nvqs; ++index) {
1582 /* Verify that ring has been setup correctly. */
Asias He3ab2e422013-04-27 11:16:48 +08001583 if (!vhost_vq_access_ok(&vs->vqs[index].vq)) {
Asias Hef2b7daf2013-04-25 15:35:20 +08001584 ret = -EFAULT;
1585 goto out;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001586 }
1587 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001588
Asias He4f7f46d2013-04-03 14:17:37 +08001589 len = sizeof(vs_tpg[0]) * VHOST_SCSI_MAX_TARGET;
1590 vs_tpg = kzalloc(len, GFP_KERNEL);
1591 if (!vs_tpg) {
Asias Hef2b7daf2013-04-25 15:35:20 +08001592 ret = -ENOMEM;
1593 goto out;
Asias He4f7f46d2013-04-03 14:17:37 +08001594 }
1595 if (vs->vs_tpg)
1596 memcpy(vs_tpg, vs->vs_tpg, len);
1597
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001598 list_for_each_entry(tpg, &vhost_scsi_list, tv_tpg_list) {
Asias He98718312013-05-06 16:38:28 +08001599 mutex_lock(&tpg->tv_tpg_mutex);
1600 if (!tpg->tpg_nexus) {
1601 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001602 continue;
1603 }
Asias He98718312013-05-06 16:38:28 +08001604 if (tpg->tv_tpg_vhost_count != 0) {
1605 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001606 continue;
1607 }
Asias He98718312013-05-06 16:38:28 +08001608 tv_tport = tpg->tport;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001609
Asias He67e18cf2013-02-05 12:31:57 +08001610 if (!strcmp(tv_tport->tport_name, t->vhost_wwpn)) {
Asias He98718312013-05-06 16:38:28 +08001611 if (vs->vs_tpg && vs->vs_tpg[tpg->tport_tpgt]) {
Asias He98718312013-05-06 16:38:28 +08001612 mutex_unlock(&tpg->tv_tpg_mutex);
Asias Hef2b7daf2013-04-25 15:35:20 +08001613 ret = -EEXIST;
Mike Christie25b98b62020-11-09 23:33:20 -06001614 goto undepend;
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001615 }
Nicholas Bellingerab8edab2014-10-08 06:19:20 +00001616 /*
1617 * In order to ensure individual vhost-scsi configfs
1618 * groups cannot be removed while in use by vhost ioctl,
1619 * go ahead and take an explicit se_tpg->tpg_group.cg_item
1620 * dependency now.
1621 */
1622 se_tpg = &tpg->se_tpg;
Christoph Hellwigd588cf82015-05-03 08:50:52 +02001623 ret = target_depend_item(&se_tpg->tpg_group.cg_item);
Nicholas Bellingerab8edab2014-10-08 06:19:20 +00001624 if (ret) {
wangyana691ffb2018-12-13 09:10:14 +08001625 pr_warn("target_depend_item() failed: %d\n", ret);
Nicholas Bellingerab8edab2014-10-08 06:19:20 +00001626 mutex_unlock(&tpg->tv_tpg_mutex);
Mike Christie25b98b62020-11-09 23:33:20 -06001627 goto undepend;
Nicholas Bellingerab8edab2014-10-08 06:19:20 +00001628 }
Asias He98718312013-05-06 16:38:28 +08001629 tpg->tv_tpg_vhost_count++;
1630 tpg->vhost_scsi = vs;
1631 vs_tpg[tpg->tport_tpgt] = tpg;
Asias He67e18cf2013-02-05 12:31:57 +08001632 match = true;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001633 }
Asias He98718312013-05-06 16:38:28 +08001634 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001635 }
Asias He67e18cf2013-02-05 12:31:57 +08001636
1637 if (match) {
1638 memcpy(vs->vs_vhost_wwpn, t->vhost_wwpn,
1639 sizeof(vs->vs_vhost_wwpn));
Mike Christie25b98b62020-11-09 23:33:20 -06001640
1641 for (i = VHOST_SCSI_VQ_IO; i < VHOST_SCSI_MAX_VQ; i++) {
1642 vq = &vs->vqs[i].vq;
1643 if (!vhost_vq_is_setup(vq))
1644 continue;
1645
Zhang Changzhong2e1139d2020-12-04 16:43:30 +08001646 ret = vhost_scsi_setup_vq_cmds(vq, vq->num);
1647 if (ret)
Mike Christie25b98b62020-11-09 23:33:20 -06001648 goto destroy_vq_cmds;
1649 }
1650
Asias He4f7f46d2013-04-03 14:17:37 +08001651 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++) {
Asias He3ab2e422013-04-27 11:16:48 +08001652 vq = &vs->vqs[i].vq;
Asias He4f7f46d2013-04-03 14:17:37 +08001653 mutex_lock(&vq->mutex);
Eugenio Pérez247643f2020-03-31 21:27:57 +02001654 vhost_vq_set_backend(vq, vs_tpg);
Greg Kurz80f7d032016-02-16 15:59:44 +01001655 vhost_vq_init_access(vq);
Asias He4f7f46d2013-04-03 14:17:37 +08001656 mutex_unlock(&vq->mutex);
1657 }
Asias He67e18cf2013-02-05 12:31:57 +08001658 ret = 0;
1659 } else {
1660 ret = -EEXIST;
1661 }
1662
Asias He4f7f46d2013-04-03 14:17:37 +08001663 /*
1664 * Act as synchronize_rcu to make sure access to
1665 * old vs->vs_tpg is finished.
1666 */
1667 vhost_scsi_flush(vs);
1668 kfree(vs->vs_tpg);
1669 vs->vs_tpg = vs_tpg;
Mike Christie25b98b62020-11-09 23:33:20 -06001670 goto out;
Asias He4f7f46d2013-04-03 14:17:37 +08001671
Mike Christie25b98b62020-11-09 23:33:20 -06001672destroy_vq_cmds:
1673 for (i--; i >= VHOST_SCSI_VQ_IO; i--) {
1674 if (!vhost_vq_get_backend(&vs->vqs[i].vq))
1675 vhost_scsi_destroy_vq_cmds(&vs->vqs[i].vq);
1676 }
1677undepend:
1678 for (i = 0; i < VHOST_SCSI_MAX_TARGET; i++) {
1679 tpg = vs_tpg[i];
1680 if (tpg) {
1681 tpg->tv_tpg_vhost_count--;
1682 target_undepend_item(&tpg->se_tpg.tpg_group.cg_item);
1683 }
1684 }
1685 kfree(vs_tpg);
Asias Hef2b7daf2013-04-25 15:35:20 +08001686out:
Asias He67e18cf2013-02-05 12:31:57 +08001687 mutex_unlock(&vs->dev.mutex);
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001688 mutex_unlock(&vhost_scsi_mutex);
Asias He67e18cf2013-02-05 12:31:57 +08001689 return ret;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001690}
1691
Asias He683bd962013-05-06 16:38:27 +08001692static int
1693vhost_scsi_clear_endpoint(struct vhost_scsi *vs,
1694 struct vhost_scsi_target *t)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001695{
Nicholas Bellingerab8edab2014-10-08 06:19:20 +00001696 struct se_portal_group *se_tpg;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001697 struct vhost_scsi_tport *tv_tport;
1698 struct vhost_scsi_tpg *tpg;
Asias He4f7f46d2013-04-03 14:17:37 +08001699 struct vhost_virtqueue *vq;
1700 bool match = false;
Asias He67e18cf2013-02-05 12:31:57 +08001701 int index, ret, i;
1702 u8 target;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001703
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001704 mutex_lock(&vhost_scsi_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001705 mutex_lock(&vs->dev.mutex);
1706 /* Verify that ring has been setup correctly. */
1707 for (index = 0; index < vs->dev.nvqs; ++index) {
Asias He3ab2e422013-04-27 11:16:48 +08001708 if (!vhost_vq_access_ok(&vs->vqs[index].vq)) {
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001709 ret = -EFAULT;
Asias He038e0af42013-03-15 09:14:05 +08001710 goto err_dev;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001711 }
1712 }
Asias He4f7f46d2013-04-03 14:17:37 +08001713
1714 if (!vs->vs_tpg) {
Asias Hef2b7daf2013-04-25 15:35:20 +08001715 ret = 0;
1716 goto err_dev;
Asias He4f7f46d2013-04-03 14:17:37 +08001717 }
1718
Asias He67e18cf2013-02-05 12:31:57 +08001719 for (i = 0; i < VHOST_SCSI_MAX_TARGET; i++) {
1720 target = i;
Asias He98718312013-05-06 16:38:28 +08001721 tpg = vs->vs_tpg[target];
1722 if (!tpg)
Asias He67e18cf2013-02-05 12:31:57 +08001723 continue;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001724
Asias He98718312013-05-06 16:38:28 +08001725 mutex_lock(&tpg->tv_tpg_mutex);
1726 tv_tport = tpg->tport;
Asias He67e18cf2013-02-05 12:31:57 +08001727 if (!tv_tport) {
1728 ret = -ENODEV;
Asias He038e0af42013-03-15 09:14:05 +08001729 goto err_tpg;
Asias He67e18cf2013-02-05 12:31:57 +08001730 }
1731
1732 if (strcmp(tv_tport->tport_name, t->vhost_wwpn)) {
Asias He98718312013-05-06 16:38:28 +08001733 pr_warn("tv_tport->tport_name: %s, tpg->tport_tpgt: %hu"
Asias He67e18cf2013-02-05 12:31:57 +08001734 " does not match t->vhost_wwpn: %s, t->vhost_tpgt: %hu\n",
Asias He98718312013-05-06 16:38:28 +08001735 tv_tport->tport_name, tpg->tport_tpgt,
Asias He67e18cf2013-02-05 12:31:57 +08001736 t->vhost_wwpn, t->vhost_tpgt);
1737 ret = -EINVAL;
Asias He038e0af42013-03-15 09:14:05 +08001738 goto err_tpg;
Asias He67e18cf2013-02-05 12:31:57 +08001739 }
Asias He98718312013-05-06 16:38:28 +08001740 tpg->tv_tpg_vhost_count--;
1741 tpg->vhost_scsi = NULL;
Asias He67e18cf2013-02-05 12:31:57 +08001742 vs->vs_tpg[target] = NULL;
Asias He4f7f46d2013-04-03 14:17:37 +08001743 match = true;
Asias He98718312013-05-06 16:38:28 +08001744 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellingerab8edab2014-10-08 06:19:20 +00001745 /*
1746 * Release se_tpg->tpg_group.cg_item configfs dependency now
1747 * to allow vhost-scsi WWPN se_tpg->tpg_group shutdown to occur.
1748 */
1749 se_tpg = &tpg->se_tpg;
Christoph Hellwigd588cf82015-05-03 08:50:52 +02001750 target_undepend_item(&se_tpg->tpg_group.cg_item);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001751 }
Asias He4f7f46d2013-04-03 14:17:37 +08001752 if (match) {
1753 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++) {
Asias He3ab2e422013-04-27 11:16:48 +08001754 vq = &vs->vqs[i].vq;
Asias He4f7f46d2013-04-03 14:17:37 +08001755 mutex_lock(&vq->mutex);
Eugenio Pérez247643f2020-03-31 21:27:57 +02001756 vhost_vq_set_backend(vq, NULL);
Asias He4f7f46d2013-04-03 14:17:37 +08001757 mutex_unlock(&vq->mutex);
Mike Christie25b98b62020-11-09 23:33:20 -06001758 /*
1759 * Make sure cmds are not running before tearing them
1760 * down.
1761 */
1762 vhost_scsi_flush(vs);
1763 vhost_scsi_destroy_vq_cmds(vq);
Asias He4f7f46d2013-04-03 14:17:37 +08001764 }
1765 }
1766 /*
1767 * Act as synchronize_rcu to make sure access to
1768 * old vs->vs_tpg is finished.
1769 */
1770 vhost_scsi_flush(vs);
1771 kfree(vs->vs_tpg);
1772 vs->vs_tpg = NULL;
Asias Hea6c9af82013-04-25 15:35:21 +08001773 WARN_ON(vs->vs_events_nr);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001774 mutex_unlock(&vs->dev.mutex);
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001775 mutex_unlock(&vhost_scsi_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001776 return 0;
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001777
Asias He038e0af42013-03-15 09:14:05 +08001778err_tpg:
Asias He98718312013-05-06 16:38:28 +08001779 mutex_unlock(&tpg->tv_tpg_mutex);
Asias He038e0af42013-03-15 09:14:05 +08001780err_dev:
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001781 mutex_unlock(&vs->dev.mutex);
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001782 mutex_unlock(&vhost_scsi_mutex);
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001783 return ret;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001784}
1785
Asias He4f7f46d2013-04-03 14:17:37 +08001786static int vhost_scsi_set_features(struct vhost_scsi *vs, u64 features)
1787{
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001788 struct vhost_virtqueue *vq;
1789 int i;
1790
Asias He4f7f46d2013-04-03 14:17:37 +08001791 if (features & ~VHOST_SCSI_FEATURES)
1792 return -EOPNOTSUPP;
1793
1794 mutex_lock(&vs->dev.mutex);
1795 if ((features & (1 << VHOST_F_LOG_ALL)) &&
1796 !vhost_log_access_ok(&vs->dev)) {
1797 mutex_unlock(&vs->dev.mutex);
1798 return -EFAULT;
1799 }
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001800
1801 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++) {
1802 vq = &vs->vqs[i].vq;
1803 mutex_lock(&vq->mutex);
1804 vq->acked_features = features;
1805 mutex_unlock(&vq->mutex);
1806 }
Asias He4f7f46d2013-04-03 14:17:37 +08001807 mutex_unlock(&vs->dev.mutex);
1808 return 0;
1809}
1810
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001811static int vhost_scsi_open(struct inode *inode, struct file *f)
1812{
Asias Hec7289312013-05-06 16:38:26 +08001813 struct vhost_scsi *vs;
Asias He3ab2e422013-04-27 11:16:48 +08001814 struct vhost_virtqueue **vqs;
Michael S. Tsirkin595cb752013-09-17 09:30:34 +03001815 int r = -ENOMEM, i;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001816
Michal Hockodcda9b02017-07-12 14:36:45 -07001817 vs = kzalloc(sizeof(*vs), GFP_KERNEL | __GFP_NOWARN | __GFP_RETRY_MAYFAIL);
Michael S. Tsirkin595cb752013-09-17 09:30:34 +03001818 if (!vs) {
1819 vs = vzalloc(sizeof(*vs));
1820 if (!vs)
1821 goto err_vs;
1822 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001823
Kees Cook6da2ec52018-06-12 13:55:00 -07001824 vqs = kmalloc_array(VHOST_SCSI_MAX_VQ, sizeof(*vqs), GFP_KERNEL);
Michael S. Tsirkin595cb752013-09-17 09:30:34 +03001825 if (!vqs)
1826 goto err_vqs;
Asias He3ab2e422013-04-27 11:16:48 +08001827
Asias Hec7289312013-05-06 16:38:26 +08001828 vhost_work_init(&vs->vs_completion_work, vhost_scsi_complete_cmd_work);
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001829 vhost_work_init(&vs->vs_event_work, vhost_scsi_evt_work);
Asias Hea6c9af82013-04-25 15:35:21 +08001830
Asias Hec7289312013-05-06 16:38:26 +08001831 vs->vs_events_nr = 0;
1832 vs->vs_events_missed = false;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001833
Asias Hec7289312013-05-06 16:38:26 +08001834 vqs[VHOST_SCSI_VQ_CTL] = &vs->vqs[VHOST_SCSI_VQ_CTL].vq;
1835 vqs[VHOST_SCSI_VQ_EVT] = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
1836 vs->vqs[VHOST_SCSI_VQ_CTL].vq.handle_kick = vhost_scsi_ctl_handle_kick;
1837 vs->vqs[VHOST_SCSI_VQ_EVT].vq.handle_kick = vhost_scsi_evt_handle_kick;
Asias He3ab2e422013-04-27 11:16:48 +08001838 for (i = VHOST_SCSI_VQ_IO; i < VHOST_SCSI_MAX_VQ; i++) {
Asias Hec7289312013-05-06 16:38:26 +08001839 vqs[i] = &vs->vqs[i].vq;
1840 vs->vqs[i].vq.handle_kick = vhost_scsi_handle_kick;
Asias He3ab2e422013-04-27 11:16:48 +08001841 }
Jason Wange82b9b02019-05-17 00:29:49 -04001842 vhost_dev_init(&vs->dev, vqs, VHOST_SCSI_MAX_VQ, UIO_MAXIOV,
Jason Wang01fcb1c2020-05-29 16:02:58 +08001843 VHOST_SCSI_WEIGHT, 0, true, NULL);
Asias Hef2f0173d2013-04-27 11:16:49 +08001844
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001845 vhost_scsi_init_inflight(vs, NULL);
Asias Hef2f0173d2013-04-27 11:16:49 +08001846
Asias Hec7289312013-05-06 16:38:26 +08001847 f->private_data = vs;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001848 return 0;
Michael S. Tsirkin595cb752013-09-17 09:30:34 +03001849
Michael S. Tsirkin595cb752013-09-17 09:30:34 +03001850err_vqs:
Michael S. Tsirkin68404442014-06-12 19:00:01 +03001851 kvfree(vs);
Michael S. Tsirkin595cb752013-09-17 09:30:34 +03001852err_vs:
1853 return r;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001854}
1855
1856static int vhost_scsi_release(struct inode *inode, struct file *f)
1857{
Asias Hec7289312013-05-06 16:38:26 +08001858 struct vhost_scsi *vs = f->private_data;
Asias He67e18cf2013-02-05 12:31:57 +08001859 struct vhost_scsi_target t;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001860
Asias Hec7289312013-05-06 16:38:26 +08001861 mutex_lock(&vs->dev.mutex);
1862 memcpy(t.vhost_wwpn, vs->vs_vhost_wwpn, sizeof(t.vhost_wwpn));
1863 mutex_unlock(&vs->dev.mutex);
1864 vhost_scsi_clear_endpoint(vs, &t);
1865 vhost_dev_stop(&vs->dev);
夷则(Caspar)f6f93f72017-12-25 00:08:58 +08001866 vhost_dev_cleanup(&vs->dev);
Asias Hea6c9af82013-04-25 15:35:21 +08001867 /* Jobs can re-queue themselves in evt kick handler. Do extra flush. */
Asias Hec7289312013-05-06 16:38:26 +08001868 vhost_scsi_flush(vs);
1869 kfree(vs->dev.vqs);
Michael S. Tsirkin68404442014-06-12 19:00:01 +03001870 kvfree(vs);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001871 return 0;
1872}
1873
Asias He683bd962013-05-06 16:38:27 +08001874static long
1875vhost_scsi_ioctl(struct file *f,
1876 unsigned int ioctl,
1877 unsigned long arg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001878{
1879 struct vhost_scsi *vs = f->private_data;
1880 struct vhost_scsi_target backend;
1881 void __user *argp = (void __user *)arg;
1882 u64 __user *featurep = argp;
Asias He11c63412013-04-25 15:35:22 +08001883 u32 __user *eventsp = argp;
1884 u32 events_missed;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001885 u64 features;
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001886 int r, abi_version = VHOST_SCSI_ABI_VERSION;
Asias He3ab2e422013-04-27 11:16:48 +08001887 struct vhost_virtqueue *vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001888
1889 switch (ioctl) {
1890 case VHOST_SCSI_SET_ENDPOINT:
1891 if (copy_from_user(&backend, argp, sizeof backend))
1892 return -EFAULT;
Michael S. Tsirkin6de71452012-08-18 15:44:09 -07001893 if (backend.reserved != 0)
1894 return -EOPNOTSUPP;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001895
1896 return vhost_scsi_set_endpoint(vs, &backend);
1897 case VHOST_SCSI_CLEAR_ENDPOINT:
1898 if (copy_from_user(&backend, argp, sizeof backend))
1899 return -EFAULT;
Michael S. Tsirkin6de71452012-08-18 15:44:09 -07001900 if (backend.reserved != 0)
1901 return -EOPNOTSUPP;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001902
1903 return vhost_scsi_clear_endpoint(vs, &backend);
1904 case VHOST_SCSI_GET_ABI_VERSION:
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001905 if (copy_to_user(argp, &abi_version, sizeof abi_version))
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001906 return -EFAULT;
1907 return 0;
Asias He11c63412013-04-25 15:35:22 +08001908 case VHOST_SCSI_SET_EVENTS_MISSED:
1909 if (get_user(events_missed, eventsp))
1910 return -EFAULT;
1911 mutex_lock(&vq->mutex);
1912 vs->vs_events_missed = events_missed;
1913 mutex_unlock(&vq->mutex);
1914 return 0;
1915 case VHOST_SCSI_GET_EVENTS_MISSED:
1916 mutex_lock(&vq->mutex);
1917 events_missed = vs->vs_events_missed;
1918 mutex_unlock(&vq->mutex);
1919 if (put_user(events_missed, eventsp))
1920 return -EFAULT;
1921 return 0;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001922 case VHOST_GET_FEATURES:
Nicholas Bellinger5dade712013-03-27 17:23:41 -07001923 features = VHOST_SCSI_FEATURES;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001924 if (copy_to_user(featurep, &features, sizeof features))
1925 return -EFAULT;
1926 return 0;
1927 case VHOST_SET_FEATURES:
1928 if (copy_from_user(&features, featurep, sizeof features))
1929 return -EFAULT;
1930 return vhost_scsi_set_features(vs, features);
1931 default:
1932 mutex_lock(&vs->dev.mutex);
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001933 r = vhost_dev_ioctl(&vs->dev, ioctl, argp);
1934 /* TODO: flush backend after dev ioctl. */
1935 if (r == -ENOIOCTLCMD)
1936 r = vhost_vring_ioctl(&vs->dev, ioctl, argp);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001937 mutex_unlock(&vs->dev.mutex);
1938 return r;
1939 }
1940}
1941
1942static const struct file_operations vhost_scsi_fops = {
1943 .owner = THIS_MODULE,
1944 .release = vhost_scsi_release,
1945 .unlocked_ioctl = vhost_scsi_ioctl,
Arnd Bergmann407e9ef2018-09-11 17:23:00 +02001946 .compat_ioctl = compat_ptr_ioctl,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001947 .open = vhost_scsi_open,
1948 .llseek = noop_llseek,
1949};
1950
1951static struct miscdevice vhost_scsi_misc = {
1952 MISC_DYNAMIC_MINOR,
1953 "vhost-scsi",
1954 &vhost_scsi_fops,
1955};
1956
1957static int __init vhost_scsi_register(void)
1958{
1959 return misc_register(&vhost_scsi_misc);
1960}
1961
Greg Kroah-Hartmanf368ed62015-07-30 15:59:57 -07001962static void vhost_scsi_deregister(void)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001963{
Greg Kroah-Hartmanf368ed62015-07-30 15:59:57 -07001964 misc_deregister(&vhost_scsi_misc);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001965}
1966
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001967static char *vhost_scsi_dump_proto_id(struct vhost_scsi_tport *tport)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001968{
1969 switch (tport->tport_proto_id) {
1970 case SCSI_PROTOCOL_SAS:
1971 return "SAS";
1972 case SCSI_PROTOCOL_FCP:
1973 return "FCP";
1974 case SCSI_PROTOCOL_ISCSI:
1975 return "iSCSI";
1976 default:
1977 break;
1978 }
1979
1980 return "Unknown";
1981}
1982
Asias He683bd962013-05-06 16:38:27 +08001983static void
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08001984vhost_scsi_do_plug(struct vhost_scsi_tpg *tpg,
Asias He683bd962013-05-06 16:38:27 +08001985 struct se_lun *lun, bool plug)
Asias Hea6c9af82013-04-25 15:35:21 +08001986{
1987
1988 struct vhost_scsi *vs = tpg->vhost_scsi;
1989 struct vhost_virtqueue *vq;
1990 u32 reason;
1991
1992 if (!vs)
1993 return;
1994
1995 mutex_lock(&vs->dev.mutex);
Asias Hea6c9af82013-04-25 15:35:21 +08001996
1997 if (plug)
1998 reason = VIRTIO_SCSI_EVT_RESET_RESCAN;
1999 else
2000 reason = VIRTIO_SCSI_EVT_RESET_REMOVED;
2001
Asias He3ab2e422013-04-27 11:16:48 +08002002 vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
Asias Hea6c9af82013-04-25 15:35:21 +08002003 mutex_lock(&vq->mutex);
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002004 if (vhost_has_feature(vq, VIRTIO_SCSI_F_HOTPLUG))
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002005 vhost_scsi_send_evt(vs, tpg, lun,
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002006 VIRTIO_SCSI_T_TRANSPORT_RESET, reason);
Asias Hea6c9af82013-04-25 15:35:21 +08002007 mutex_unlock(&vq->mutex);
2008 mutex_unlock(&vs->dev.mutex);
2009}
2010
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002011static void vhost_scsi_hotplug(struct vhost_scsi_tpg *tpg, struct se_lun *lun)
Asias Hea6c9af82013-04-25 15:35:21 +08002012{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002013 vhost_scsi_do_plug(tpg, lun, true);
Asias Hea6c9af82013-04-25 15:35:21 +08002014}
2015
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002016static void vhost_scsi_hotunplug(struct vhost_scsi_tpg *tpg, struct se_lun *lun)
Asias Hea6c9af82013-04-25 15:35:21 +08002017{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002018 vhost_scsi_do_plug(tpg, lun, false);
Asias Hea6c9af82013-04-25 15:35:21 +08002019}
2020
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002021static int vhost_scsi_port_link(struct se_portal_group *se_tpg,
Asias He683bd962013-05-06 16:38:27 +08002022 struct se_lun *lun)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002023{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002024 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
2025 struct vhost_scsi_tpg, se_tpg);
Mike Christieefd838f2020-11-09 23:33:23 -06002026 struct vhost_scsi_tmf *tmf;
2027
2028 tmf = kzalloc(sizeof(*tmf), GFP_KERNEL);
2029 if (!tmf)
2030 return -ENOMEM;
2031 INIT_LIST_HEAD(&tmf->queue_entry);
2032 vhost_work_init(&tmf->vwork, vhost_scsi_tmf_resp_work);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002033
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002034 mutex_lock(&vhost_scsi_mutex);
Asias Hea6c9af82013-04-25 15:35:21 +08002035
Asias He98718312013-05-06 16:38:28 +08002036 mutex_lock(&tpg->tv_tpg_mutex);
2037 tpg->tv_tpg_port_count++;
Mike Christieefd838f2020-11-09 23:33:23 -06002038 list_add_tail(&tmf->queue_entry, &tpg->tmf_queue);
Asias He98718312013-05-06 16:38:28 +08002039 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002040
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002041 vhost_scsi_hotplug(tpg, lun);
Asias Hea6c9af82013-04-25 15:35:21 +08002042
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002043 mutex_unlock(&vhost_scsi_mutex);
Asias Hea6c9af82013-04-25 15:35:21 +08002044
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002045 return 0;
2046}
2047
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002048static void vhost_scsi_port_unlink(struct se_portal_group *se_tpg,
Asias He683bd962013-05-06 16:38:27 +08002049 struct se_lun *lun)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002050{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002051 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
2052 struct vhost_scsi_tpg, se_tpg);
Mike Christieefd838f2020-11-09 23:33:23 -06002053 struct vhost_scsi_tmf *tmf;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002054
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002055 mutex_lock(&vhost_scsi_mutex);
Asias Hea6c9af82013-04-25 15:35:21 +08002056
Asias He98718312013-05-06 16:38:28 +08002057 mutex_lock(&tpg->tv_tpg_mutex);
2058 tpg->tv_tpg_port_count--;
Mike Christieefd838f2020-11-09 23:33:23 -06002059 tmf = list_first_entry(&tpg->tmf_queue, struct vhost_scsi_tmf,
2060 queue_entry);
2061 list_del(&tmf->queue_entry);
2062 kfree(tmf);
Asias He98718312013-05-06 16:38:28 +08002063 mutex_unlock(&tpg->tv_tpg_mutex);
Asias Hea6c9af82013-04-25 15:35:21 +08002064
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002065 vhost_scsi_hotunplug(tpg, lun);
Asias Hea6c9af82013-04-25 15:35:21 +08002066
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002067 mutex_unlock(&vhost_scsi_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002068}
2069
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002070static ssize_t vhost_scsi_tpg_attrib_fabric_prot_type_store(
2071 struct config_item *item, const char *page, size_t count)
Nicholas Bellingerb1d75fe2015-03-28 00:03:51 -07002072{
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002073 struct se_portal_group *se_tpg = attrib_to_tpg(item);
Nicholas Bellingerb1d75fe2015-03-28 00:03:51 -07002074 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
2075 struct vhost_scsi_tpg, se_tpg);
2076 unsigned long val;
2077 int ret = kstrtoul(page, 0, &val);
2078
2079 if (ret) {
2080 pr_err("kstrtoul() returned %d for fabric_prot_type\n", ret);
2081 return ret;
2082 }
2083 if (val != 0 && val != 1 && val != 3) {
2084 pr_err("Invalid vhost_scsi fabric_prot_type: %lu\n", val);
2085 return -EINVAL;
2086 }
2087 tpg->tv_fabric_prot_type = val;
2088
2089 return count;
2090}
2091
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002092static ssize_t vhost_scsi_tpg_attrib_fabric_prot_type_show(
2093 struct config_item *item, char *page)
Nicholas Bellingerb1d75fe2015-03-28 00:03:51 -07002094{
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002095 struct se_portal_group *se_tpg = attrib_to_tpg(item);
Nicholas Bellingerb1d75fe2015-03-28 00:03:51 -07002096 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
2097 struct vhost_scsi_tpg, se_tpg);
2098
2099 return sprintf(page, "%d\n", tpg->tv_fabric_prot_type);
2100}
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002101
2102CONFIGFS_ATTR(vhost_scsi_tpg_attrib_, fabric_prot_type);
Nicholas Bellingerb1d75fe2015-03-28 00:03:51 -07002103
2104static struct configfs_attribute *vhost_scsi_tpg_attrib_attrs[] = {
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002105 &vhost_scsi_tpg_attrib_attr_fabric_prot_type,
Nicholas Bellingerb1d75fe2015-03-28 00:03:51 -07002106 NULL,
2107};
2108
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002109static int vhost_scsi_make_nexus(struct vhost_scsi_tpg *tpg,
Asias He683bd962013-05-06 16:38:27 +08002110 const char *name)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002111{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002112 struct vhost_scsi_nexus *tv_nexus;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002113
Asias He98718312013-05-06 16:38:28 +08002114 mutex_lock(&tpg->tv_tpg_mutex);
2115 if (tpg->tpg_nexus) {
2116 mutex_unlock(&tpg->tv_tpg_mutex);
2117 pr_debug("tpg->tpg_nexus already exists\n");
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002118 return -EEXIST;
2119 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002120
Markus Elfring473f0b12017-05-20 13:48:44 +02002121 tv_nexus = kzalloc(sizeof(*tv_nexus), GFP_KERNEL);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002122 if (!tv_nexus) {
Asias He98718312013-05-06 16:38:28 +08002123 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002124 pr_err("Unable to allocate struct vhost_scsi_nexus\n");
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002125 return -ENOMEM;
2126 }
2127 /*
Nicholas Bellinger65ea7892016-01-09 05:47:55 -08002128 * Since we are running in 'demo mode' this call with generate a
2129 * struct se_node_acl for the vhost_scsi struct se_portal_group with
2130 * the SCSI Initiator port name of the passed configfs group 'name'.
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002131 */
Mike Christie25b98b62020-11-09 23:33:20 -06002132 tv_nexus->tvn_se_sess = target_setup_session(&tpg->se_tpg, 0, 0,
Nicholas Bellinger65ea7892016-01-09 05:47:55 -08002133 TARGET_PROT_DIN_PASS | TARGET_PROT_DOUT_PASS,
Mike Christie25b98b62020-11-09 23:33:20 -06002134 (unsigned char *)name, tv_nexus, NULL);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002135 if (IS_ERR(tv_nexus->tvn_se_sess)) {
Asias He98718312013-05-06 16:38:28 +08002136 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002137 kfree(tv_nexus);
2138 return -ENOMEM;
2139 }
Asias He98718312013-05-06 16:38:28 +08002140 tpg->tpg_nexus = tv_nexus;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002141
Asias He98718312013-05-06 16:38:28 +08002142 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002143 return 0;
2144}
2145
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002146static int vhost_scsi_drop_nexus(struct vhost_scsi_tpg *tpg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002147{
2148 struct se_session *se_sess;
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002149 struct vhost_scsi_nexus *tv_nexus;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002150
2151 mutex_lock(&tpg->tv_tpg_mutex);
2152 tv_nexus = tpg->tpg_nexus;
2153 if (!tv_nexus) {
2154 mutex_unlock(&tpg->tv_tpg_mutex);
2155 return -ENODEV;
2156 }
2157
2158 se_sess = tv_nexus->tvn_se_sess;
2159 if (!se_sess) {
2160 mutex_unlock(&tpg->tv_tpg_mutex);
2161 return -ENODEV;
2162 }
2163
Nicholas Bellinger101998f2012-07-30 13:30:00 -07002164 if (tpg->tv_tpg_port_count != 0) {
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002165 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger101998f2012-07-30 13:30:00 -07002166 pr_err("Unable to remove TCM_vhost I_T Nexus with"
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002167 " active TPG port count: %d\n",
Nicholas Bellinger101998f2012-07-30 13:30:00 -07002168 tpg->tv_tpg_port_count);
2169 return -EBUSY;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002170 }
2171
Nicholas Bellinger101998f2012-07-30 13:30:00 -07002172 if (tpg->tv_tpg_vhost_count != 0) {
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002173 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger101998f2012-07-30 13:30:00 -07002174 pr_err("Unable to remove TCM_vhost I_T Nexus with"
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002175 " active TPG vhost count: %d\n",
Nicholas Bellinger101998f2012-07-30 13:30:00 -07002176 tpg->tv_tpg_vhost_count);
2177 return -EBUSY;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002178 }
2179
Nicholas Bellinger101998f2012-07-30 13:30:00 -07002180 pr_debug("TCM_vhost_ConfigFS: Removing I_T Nexus to emulated"
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002181 " %s Initiator Port: %s\n", vhost_scsi_dump_proto_id(tpg->tport),
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002182 tv_nexus->tvn_se_sess->se_node_acl->initiatorname);
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07002183
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002184 /*
Nicholas Bellinger101998f2012-07-30 13:30:00 -07002185 * Release the SCSI I_T Nexus to the emulated vhost Target Port
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002186 */
Mike Christie25b88552018-08-02 12:12:27 -05002187 target_remove_session(se_sess);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002188 tpg->tpg_nexus = NULL;
2189 mutex_unlock(&tpg->tv_tpg_mutex);
2190
2191 kfree(tv_nexus);
2192 return 0;
2193}
2194
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002195static ssize_t vhost_scsi_tpg_nexus_show(struct config_item *item, char *page)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002196{
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002197 struct se_portal_group *se_tpg = to_tpg(item);
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002198 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
2199 struct vhost_scsi_tpg, se_tpg);
2200 struct vhost_scsi_nexus *tv_nexus;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002201 ssize_t ret;
2202
Asias He98718312013-05-06 16:38:28 +08002203 mutex_lock(&tpg->tv_tpg_mutex);
2204 tv_nexus = tpg->tpg_nexus;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002205 if (!tv_nexus) {
Asias He98718312013-05-06 16:38:28 +08002206 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002207 return -ENODEV;
2208 }
2209 ret = snprintf(page, PAGE_SIZE, "%s\n",
2210 tv_nexus->tvn_se_sess->se_node_acl->initiatorname);
Asias He98718312013-05-06 16:38:28 +08002211 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002212
2213 return ret;
2214}
2215
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002216static ssize_t vhost_scsi_tpg_nexus_store(struct config_item *item,
2217 const char *page, size_t count)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002218{
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002219 struct se_portal_group *se_tpg = to_tpg(item);
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002220 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
2221 struct vhost_scsi_tpg, se_tpg);
2222 struct vhost_scsi_tport *tport_wwn = tpg->tport;
2223 unsigned char i_port[VHOST_SCSI_NAMELEN], *ptr, *port_ptr;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002224 int ret;
2225 /*
2226 * Shutdown the active I_T nexus if 'NULL' is passed..
2227 */
2228 if (!strncmp(page, "NULL", 4)) {
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002229 ret = vhost_scsi_drop_nexus(tpg);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002230 return (!ret) ? count : ret;
2231 }
2232 /*
2233 * Otherwise make sure the passed virtual Initiator port WWN matches
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002234 * the fabric protocol_id set in vhost_scsi_make_tport(), and call
2235 * vhost_scsi_make_nexus().
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002236 */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002237 if (strlen(page) >= VHOST_SCSI_NAMELEN) {
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002238 pr_err("Emulated NAA Sas Address: %s, exceeds"
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002239 " max: %d\n", page, VHOST_SCSI_NAMELEN);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002240 return -EINVAL;
2241 }
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002242 snprintf(&i_port[0], VHOST_SCSI_NAMELEN, "%s", page);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002243
2244 ptr = strstr(i_port, "naa.");
2245 if (ptr) {
2246 if (tport_wwn->tport_proto_id != SCSI_PROTOCOL_SAS) {
2247 pr_err("Passed SAS Initiator Port %s does not"
2248 " match target port protoid: %s\n", i_port,
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002249 vhost_scsi_dump_proto_id(tport_wwn));
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002250 return -EINVAL;
2251 }
2252 port_ptr = &i_port[0];
2253 goto check_newline;
2254 }
2255 ptr = strstr(i_port, "fc.");
2256 if (ptr) {
2257 if (tport_wwn->tport_proto_id != SCSI_PROTOCOL_FCP) {
2258 pr_err("Passed FCP Initiator Port %s does not"
2259 " match target port protoid: %s\n", i_port,
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002260 vhost_scsi_dump_proto_id(tport_wwn));
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002261 return -EINVAL;
2262 }
2263 port_ptr = &i_port[3]; /* Skip over "fc." */
2264 goto check_newline;
2265 }
2266 ptr = strstr(i_port, "iqn.");
2267 if (ptr) {
2268 if (tport_wwn->tport_proto_id != SCSI_PROTOCOL_ISCSI) {
2269 pr_err("Passed iSCSI Initiator Port %s does not"
2270 " match target port protoid: %s\n", i_port,
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002271 vhost_scsi_dump_proto_id(tport_wwn));
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002272 return -EINVAL;
2273 }
2274 port_ptr = &i_port[0];
2275 goto check_newline;
2276 }
2277 pr_err("Unable to locate prefix for emulated Initiator Port:"
2278 " %s\n", i_port);
2279 return -EINVAL;
2280 /*
2281 * Clear any trailing newline for the NAA WWN
2282 */
2283check_newline:
2284 if (i_port[strlen(i_port)-1] == '\n')
2285 i_port[strlen(i_port)-1] = '\0';
2286
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002287 ret = vhost_scsi_make_nexus(tpg, port_ptr);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002288 if (ret < 0)
2289 return ret;
2290
2291 return count;
2292}
2293
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002294CONFIGFS_ATTR(vhost_scsi_tpg_, nexus);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002295
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002296static struct configfs_attribute *vhost_scsi_tpg_attrs[] = {
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002297 &vhost_scsi_tpg_attr_nexus,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002298 NULL,
2299};
2300
Asias He683bd962013-05-06 16:38:27 +08002301static struct se_portal_group *
Bart Van Asscheaa090ea2018-06-22 14:53:02 -07002302vhost_scsi_make_tpg(struct se_wwn *wwn, const char *name)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002303{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002304 struct vhost_scsi_tport *tport = container_of(wwn,
2305 struct vhost_scsi_tport, tport_wwn);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002306
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002307 struct vhost_scsi_tpg *tpg;
Dan Carpenter59c816c2015-02-05 10:37:33 +03002308 u16 tpgt;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002309 int ret;
2310
2311 if (strstr(name, "tpgt_") != name)
2312 return ERR_PTR(-EINVAL);
Dan Carpenter59c816c2015-02-05 10:37:33 +03002313 if (kstrtou16(name + 5, 10, &tpgt) || tpgt >= VHOST_SCSI_MAX_TARGET)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002314 return ERR_PTR(-EINVAL);
2315
Markus Elfring473f0b12017-05-20 13:48:44 +02002316 tpg = kzalloc(sizeof(*tpg), GFP_KERNEL);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002317 if (!tpg) {
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002318 pr_err("Unable to allocate struct vhost_scsi_tpg");
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002319 return ERR_PTR(-ENOMEM);
2320 }
2321 mutex_init(&tpg->tv_tpg_mutex);
2322 INIT_LIST_HEAD(&tpg->tv_tpg_list);
Mike Christieefd838f2020-11-09 23:33:23 -06002323 INIT_LIST_HEAD(&tpg->tmf_queue);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002324 tpg->tport = tport;
2325 tpg->tport_tpgt = tpgt;
2326
Nicholas Bellingerbc0c94b2015-05-20 21:48:03 -07002327 ret = core_tpg_register(wwn, &tpg->se_tpg, tport->tport_proto_id);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002328 if (ret < 0) {
2329 kfree(tpg);
2330 return NULL;
2331 }
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002332 mutex_lock(&vhost_scsi_mutex);
2333 list_add_tail(&tpg->tv_tpg_list, &vhost_scsi_list);
2334 mutex_unlock(&vhost_scsi_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002335
2336 return &tpg->se_tpg;
2337}
2338
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002339static void vhost_scsi_drop_tpg(struct se_portal_group *se_tpg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002340{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002341 struct vhost_scsi_tpg *tpg = container_of(se_tpg,
2342 struct vhost_scsi_tpg, se_tpg);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002343
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002344 mutex_lock(&vhost_scsi_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002345 list_del(&tpg->tv_tpg_list);
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002346 mutex_unlock(&vhost_scsi_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002347 /*
Nicholas Bellinger101998f2012-07-30 13:30:00 -07002348 * Release the virtual I_T Nexus for this vhost TPG
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002349 */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002350 vhost_scsi_drop_nexus(tpg);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002351 /*
2352 * Deregister the se_tpg from TCM..
2353 */
2354 core_tpg_deregister(se_tpg);
2355 kfree(tpg);
2356}
2357
Asias He683bd962013-05-06 16:38:27 +08002358static struct se_wwn *
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002359vhost_scsi_make_tport(struct target_fabric_configfs *tf,
Asias He683bd962013-05-06 16:38:27 +08002360 struct config_group *group,
2361 const char *name)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002362{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002363 struct vhost_scsi_tport *tport;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002364 char *ptr;
2365 u64 wwpn = 0;
2366 int off = 0;
2367
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002368 /* if (vhost_scsi_parse_wwn(name, &wwpn, 1) < 0)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002369 return ERR_PTR(-EINVAL); */
2370
Markus Elfring473f0b12017-05-20 13:48:44 +02002371 tport = kzalloc(sizeof(*tport), GFP_KERNEL);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002372 if (!tport) {
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002373 pr_err("Unable to allocate struct vhost_scsi_tport");
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002374 return ERR_PTR(-ENOMEM);
2375 }
2376 tport->tport_wwpn = wwpn;
2377 /*
2378 * Determine the emulated Protocol Identifier and Target Port Name
2379 * based on the incoming configfs directory name.
2380 */
2381 ptr = strstr(name, "naa.");
2382 if (ptr) {
2383 tport->tport_proto_id = SCSI_PROTOCOL_SAS;
2384 goto check_len;
2385 }
2386 ptr = strstr(name, "fc.");
2387 if (ptr) {
2388 tport->tport_proto_id = SCSI_PROTOCOL_FCP;
2389 off = 3; /* Skip over "fc." */
2390 goto check_len;
2391 }
2392 ptr = strstr(name, "iqn.");
2393 if (ptr) {
2394 tport->tport_proto_id = SCSI_PROTOCOL_ISCSI;
2395 goto check_len;
2396 }
2397
2398 pr_err("Unable to locate prefix for emulated Target Port:"
2399 " %s\n", name);
2400 kfree(tport);
2401 return ERR_PTR(-EINVAL);
2402
2403check_len:
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002404 if (strlen(name) >= VHOST_SCSI_NAMELEN) {
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002405 pr_err("Emulated %s Address: %s, exceeds"
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002406 " max: %d\n", name, vhost_scsi_dump_proto_id(tport),
2407 VHOST_SCSI_NAMELEN);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002408 kfree(tport);
2409 return ERR_PTR(-EINVAL);
2410 }
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002411 snprintf(&tport->tport_name[0], VHOST_SCSI_NAMELEN, "%s", &name[off]);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002412
2413 pr_debug("TCM_VHost_ConfigFS: Allocated emulated Target"
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002414 " %s Address: %s\n", vhost_scsi_dump_proto_id(tport), name);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002415
2416 return &tport->tport_wwn;
2417}
2418
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002419static void vhost_scsi_drop_tport(struct se_wwn *wwn)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002420{
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002421 struct vhost_scsi_tport *tport = container_of(wwn,
2422 struct vhost_scsi_tport, tport_wwn);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002423
2424 pr_debug("TCM_VHost_ConfigFS: Deallocating emulated Target"
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002425 " %s Address: %s\n", vhost_scsi_dump_proto_id(tport),
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002426 tport->tport_name);
2427
2428 kfree(tport);
2429}
2430
Asias He683bd962013-05-06 16:38:27 +08002431static ssize_t
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002432vhost_scsi_wwn_version_show(struct config_item *item, char *page)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002433{
2434 return sprintf(page, "TCM_VHOST fabric module %s on %s/%s"
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002435 "on "UTS_RELEASE"\n", VHOST_SCSI_VERSION, utsname()->sysname,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002436 utsname()->machine);
2437}
2438
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002439CONFIGFS_ATTR_RO(vhost_scsi_wwn_, version);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002440
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002441static struct configfs_attribute *vhost_scsi_wwn_attrs[] = {
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002442 &vhost_scsi_wwn_attr_version,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002443 NULL,
2444};
2445
Bhumika Goyal1d822a42017-01-09 20:51:02 +05302446static const struct target_core_fabric_ops vhost_scsi_ops = {
Christoph Hellwig9ac89282015-04-08 20:01:35 +02002447 .module = THIS_MODULE,
David Disseldorp30c7ca92018-11-23 18:36:12 +01002448 .fabric_name = "vhost",
Sudhakar Panneerselvam5ae6a6a2020-05-22 16:51:57 +00002449 .max_data_sg_nents = VHOST_SCSI_PREALLOC_SGLS,
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002450 .tpg_get_wwn = vhost_scsi_get_fabric_wwn,
2451 .tpg_get_tag = vhost_scsi_get_tpgt,
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002452 .tpg_check_demo_mode = vhost_scsi_check_true,
2453 .tpg_check_demo_mode_cache = vhost_scsi_check_true,
2454 .tpg_check_demo_mode_write_protect = vhost_scsi_check_false,
2455 .tpg_check_prod_mode_write_protect = vhost_scsi_check_false,
Nicholas Bellingerb1d75fe2015-03-28 00:03:51 -07002456 .tpg_check_prot_fabric_only = vhost_scsi_check_prot_fabric_only,
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002457 .tpg_get_inst_index = vhost_scsi_tpg_get_inst_index,
2458 .release_cmd = vhost_scsi_release_cmd,
Nicholas Bellinger084ed452013-06-06 02:20:41 -07002459 .check_stop_free = vhost_scsi_check_stop_free,
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002460 .sess_get_index = vhost_scsi_sess_get_index,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002461 .sess_get_initiator_sid = NULL,
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002462 .write_pending = vhost_scsi_write_pending,
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002463 .set_default_node_attributes = vhost_scsi_set_default_node_attrs,
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002464 .get_cmd_state = vhost_scsi_get_cmd_state,
2465 .queue_data_in = vhost_scsi_queue_data_in,
2466 .queue_status = vhost_scsi_queue_status,
2467 .queue_tm_rsp = vhost_scsi_queue_tm_rsp,
2468 .aborted_task = vhost_scsi_aborted_task,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002469 /*
2470 * Setup callers for generic logic in target_core_fabric_configfs.c
2471 */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002472 .fabric_make_wwn = vhost_scsi_make_tport,
2473 .fabric_drop_wwn = vhost_scsi_drop_tport,
2474 .fabric_make_tpg = vhost_scsi_make_tpg,
2475 .fabric_drop_tpg = vhost_scsi_drop_tpg,
2476 .fabric_post_link = vhost_scsi_port_link,
2477 .fabric_pre_unlink = vhost_scsi_port_unlink,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002478
Christoph Hellwig9ac89282015-04-08 20:01:35 +02002479 .tfc_wwn_attrs = vhost_scsi_wwn_attrs,
2480 .tfc_tpg_base_attrs = vhost_scsi_tpg_attrs,
2481 .tfc_tpg_attrib_attrs = vhost_scsi_tpg_attrib_attrs,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002482};
2483
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002484static int __init vhost_scsi_init(void)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002485{
2486 int ret = -ENOMEM;
Christoph Hellwig9ac89282015-04-08 20:01:35 +02002487
2488 pr_debug("TCM_VHOST fabric module %s on %s/%s"
2489 " on "UTS_RELEASE"\n", VHOST_SCSI_VERSION, utsname()->sysname,
2490 utsname()->machine);
2491
Nicholas Bellinger101998f2012-07-30 13:30:00 -07002492 /*
2493 * Use our own dedicated workqueue for submitting I/O into
2494 * target core to avoid contention within system_wq.
2495 */
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002496 vhost_scsi_workqueue = alloc_workqueue("vhost_scsi", 0, 0);
2497 if (!vhost_scsi_workqueue)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002498 goto out;
2499
2500 ret = vhost_scsi_register();
2501 if (ret < 0)
2502 goto out_destroy_workqueue;
2503
Christoph Hellwig9ac89282015-04-08 20:01:35 +02002504 ret = target_register_template(&vhost_scsi_ops);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002505 if (ret < 0)
2506 goto out_vhost_scsi_deregister;
2507
2508 return 0;
2509
2510out_vhost_scsi_deregister:
2511 vhost_scsi_deregister();
2512out_destroy_workqueue:
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002513 destroy_workqueue(vhost_scsi_workqueue);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002514out:
2515 return ret;
2516};
2517
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002518static void vhost_scsi_exit(void)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002519{
Christoph Hellwig9ac89282015-04-08 20:01:35 +02002520 target_unregister_template(&vhost_scsi_ops);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002521 vhost_scsi_deregister();
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002522 destroy_workqueue(vhost_scsi_workqueue);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002523};
2524
Michael S. Tsirkin181c04a2013-05-02 03:52:59 +03002525MODULE_DESCRIPTION("VHOST_SCSI series fabric driver");
2526MODULE_ALIAS("tcm_vhost");
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002527MODULE_LICENSE("GPL");
Nicholas Bellinger1a1ff822015-01-31 23:56:53 -08002528module_init(vhost_scsi_init);
2529module_exit(vhost_scsi_exit);