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