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